Changeset 292
- Timestamp:
- 08/12/06 16:36:19 (2 years ago)
- Files:
-
- z3wingdbg/trunk/LICENCE.txt (added)
- z3wingdbg/trunk/TODO.txt (modified) (1 diff)
- z3wingdbg/trunk/ZopePublicLicense.txt (added)
- z3wingdbg/trunk/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/bootstrap.py (modified) (1 diff)
- z3wingdbg/trunk/browser/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/browser/debuggercontrol.py (modified) (1 diff)
- z3wingdbg/trunk/configuration.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/netservermodule.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/networkdebugger.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/tests/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/tests/test_netservermodule.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/tests/test_wingpathinformation.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/twistedmainloop.py (modified) (1 diff)
- z3wingdbg/trunk/debugger/wingpathinformation.py (modified) (1 diff)
- z3wingdbg/trunk/debuggercontrol.py (modified) (1 diff)
- z3wingdbg/trunk/interfaces.py (modified) (1 diff)
- z3wingdbg/trunk/namespace.py (modified) (1 diff)
- z3wingdbg/trunk/server/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/server/configuration.py (modified) (1 diff)
- z3wingdbg/trunk/server/debugthread.py (modified) (1 diff)
- z3wingdbg/trunk/server/http.py (modified) (1 diff)
- z3wingdbg/trunk/server/server.py (modified) (1 diff)
- z3wingdbg/trunk/server/tests/__init__.py (modified) (1 diff)
- z3wingdbg/trunk/server/tests/test_debugthread.py (modified) (1 diff)
- z3wingdbg/trunk/wingdebuggerversion.py (modified) (1 diff)
- z3wingdbg/trunk/wingdebugservice.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/TODO.txt
r289 r292 3 3 ==== 4 4 5 - Add license and copyright info (ZPL 2.1 and (c) 2006 Martijn Pieters)6 5 - Add packaging info 7 6 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 1 4 import transaction 2 5 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 1 4 from zope import component 2 5 from 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 1 4 from zope import interface, component 2 5 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 1 4 import imp 2 5 import 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 1 4 import logging 2 5 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 1 4 import os 2 5 import 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 1 4 import os 2 5 import 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 1 4 import logging 2 5 z3wingdbg/trunk/debugger/wingpathinformation.py
r269 r292 1 1 import 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 2 5 import sys 3 6 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 1 4 from zope import interface 2 5 import 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 1 4 from zope import interface, schema, component 2 5 from 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 1 4 from zope import interface 2 5 from 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 1 4 from persistent import Persistent 2 5 from 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 1 4 from twisted.python.threadpool import ThreadPool 2 5 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 1 4 from twisted.web2 import log, server, wsgi 2 5 from 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 1 4 from ZODB.interfaces import IDatabase 2 5 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 1 4 import thread 2 5 import 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 1 4 import os.path 2 5 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 1 4 import time 2 5
