[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[minion-cvs] Move all the pure-server modules into a new package, "m...
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv11907
Modified Files:
TODO setup.py
Log Message:
Move all the pure-server modules into a new package, 'mixminion.server.'
We still need to split 'Config' and 'ServerInfo' into their client and server
components.
Index: TODO
===================================================================
RCS file: /home/minion/cvsroot/src/minion/TODO,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- TODO 11 Dec 2002 05:57:04 -0000 1.36
+++ TODO 11 Dec 2002 06:58:54 -0000 1.37
@@ -30,7 +30,11 @@
(non-state-carrying) and 'stateless' (state-carrying) to
something less contradictory
o Fix all {XXXX/FFFF/????}001
- - Separate package for server code.
+ . Separate package for server code.
+ o Create new package.
+ o Move hashlog, mmtpserver, queue, modules,
+ packetHandler, and servermain into new package.
+ - Split Config, ServerInfo.
. Final license
o Apply LGPL
- Mark all files with note?
Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- setup.py 11 Dec 2002 05:57:04 -0000 1.11
+++ setup.py 11 Dec 2002 06:58:55 -0000 1.12
@@ -84,5 +84,5 @@
description="Mixminion: Python implementation of the Type III MIX protocol (ALPHA)",
author="Nick Mathewson",
package_dir={ '' : 'lib' },
- packages=['mixminion'],
+ packages=['mixminion', 'mixminion.server'],
ext_modules=[extmodule])