Changeset 292

Show
Ignore:
Timestamp:
08/12/06 16:36:19 (2 years ago)
Author:
mj
Message:

Add copyright and licensing information

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • z3wingdbg/trunk/TODO.txt

    r289 r292  
    33==== 
    44 
    5 - Add license and copyright info (ZPL 2.1 and (c) 2006 Martijn Pieters) 
    65- Add packaging info 
    76 
  • z3wingdbg/trunk/__init__.py

    r155 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/bootstrap.py

    r240 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import transaction 
    25 
  • z3wingdbg/trunk/browser/__init__.py

    r175 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/browser/debuggercontrol.py

    r287 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from zope import component 
    25from zope.publisher.browser import BrowserView 
  • z3wingdbg/trunk/configuration.py

    r289 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from zope import interface, component 
    25 
  • z3wingdbg/trunk/debugger/__init__.py

    r193 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/debugger/netservermodule.py

    r269 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import imp 
    25import os 
  • z3wingdbg/trunk/debugger/networkdebugger.py

    r279 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import logging 
    25 
  • z3wingdbg/trunk/debugger/tests/__init__.py

    r208 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/debugger/tests/test_netservermodule.py

    r219 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import os 
    25import sys 
  • z3wingdbg/trunk/debugger/tests/test_wingpathinformation.py

    r212 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import os 
    25import sys 
  • z3wingdbg/trunk/debugger/twistedmainloop.py

    r267 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import logging 
    25 
  • z3wingdbg/trunk/debugger/wingpathinformation.py

    r269 r292  
    11import os 
     2# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     3# This program is open source.  For license terms, see the LICENSE.txt file. 
     4 
    25import sys 
    36 
  • z3wingdbg/trunk/debuggercontrol.py

    r183 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from zope import interface 
    25import zope.traversing.interfaces 
  • z3wingdbg/trunk/interfaces.py

    r289 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from zope import interface, schema, component 
    25from zope.component.interfaces import IFactory 
  • z3wingdbg/trunk/namespace.py

    r183 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from zope import interface 
    25from zope.traversing.interfaces import ITraversable, TraversalError 
  • z3wingdbg/trunk/server/__init__.py

    r193 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/server/configuration.py

    r236 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from persistent import Persistent 
    25from zope import interface, component 
  • z3wingdbg/trunk/server/debugthread.py

    r228 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from twisted.python.threadpool import ThreadPool 
    25 
  • z3wingdbg/trunk/server/http.py

    r258 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from twisted.web2 import log, server, wsgi 
    25from twisted.web2.channel.http import HTTPChannel, HTTPFactory 
  • z3wingdbg/trunk/server/server.py

    r290 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14from ZODB.interfaces import IDatabase 
    25 
  • z3wingdbg/trunk/server/tests/__init__.py

    r229 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
  • z3wingdbg/trunk/server/tests/test_debugthread.py

    r230 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import thread 
    25import unittest 
  • z3wingdbg/trunk/wingdebuggerversion.py

    r186 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import os.path 
    25 
  • z3wingdbg/trunk/wingdebugservice.py

    r291 r292  
     1# Copyright (C) 2006, Martijn Pieters <mj@zopatista.com> 
     2# This program is open source.  For license terms, see the LICENSE.txt file. 
     3 
    14import time 
    25