[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Remove trailing space throughout.
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv28551
Modified Files:
HISTORY Makefile README TODO setup.py
Log Message:
Remove trailing space throughout.
Index: HISTORY
===================================================================
RCS file: /home/minion/cvsroot/src/minion/HISTORY,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- HISTORY 12 Sep 2003 15:52:46 -0000 1.5
+++ HISTORY 28 Nov 2003 04:14:03 -0000 1.6
@@ -52,7 +52,7 @@
- Improved testability
- Server descriptors now describe the server's platform and
- configuration.
+ configuration.
- Bugfixes too numerous to mention. Server pools in general should be
significantly more robust.
Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- Makefile 25 Nov 2003 03:41:57 -0000 1.56
+++ Makefile 28 Nov 2003 04:14:03 -0000 1.57
@@ -255,7 +255,8 @@
| xargs -0 grep 'XXXX00[1-6]\|FFFF00[1-6]\|DOCDOC\|????00[1-6]'
eolspace:
- perl -i.bak -pe 's/(\S)\s*\n$$/\1\n/;' ACKS HACKING LICENSE MANIFEST.in \
+ perl -i.bak -pe 's/\s+\n$$/\1\n/;' ACKS HACKING LICENSE HISTORY \
+ MANIFEST.in \
Makefile README HISTORY TODO pycheckrc setup.py src/*.[ch] \
lib/mixminion/*.py lib/mixminion/*/*.py
Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- README 5 Sep 2003 21:59:49 -0000 1.60
+++ README 28 Nov 2003 04:14:03 -0000 1.61
@@ -43,7 +43,7 @@
STILL NOT IN THIS VERSION:
- There's a man page, but it's not included yet because I want it to
- work cross-platform.
+ work cross-platform.
- IP-based restrictions don't work.
- No support for distributed directories.
- Other stuff too numerous to mention; see TODO.
@@ -192,7 +192,7 @@
OR mixminion update-servers
To see whether a server is running, type:
-
+
mixminion ping <servername>
(WARNING: This command is potentially dangerous, for a number of subtle
@@ -262,7 +262,7 @@
mixminion queue -t <address> -i <file> -P <path>
To see all the packets waiting in the queue:
-
+
mixminion inspect-queue
To attempt to deliver all messages waiting in the queue:
@@ -319,7 +319,7 @@
mixminion generate-surb -P 'Bar,*' (start with server bar)
You can use the '-n' option to generate many reply blocks at once:
-
+
mixminion generate-surb -n 100 (generate 100 reply blocks)
To save space, you can specify binary (as opposed to text) encoding
@@ -365,7 +365,7 @@
To inspect the reply blocks in a file, you can run:
mixminion inspect-surbs <filename>
-
+
If you need to use a proxy server to use the web you can specify it using the
http_proxy environment variable:
@@ -446,7 +446,7 @@
mixminion server-stats [-f configfile]
-
+
VII. HOW TO REPORT BUGS AND SUGGEST NEW FEATURES
================================================
Index: TODO
===================================================================
RCS file: /home/minion/cvsroot/src/minion/TODO,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -d -r1.167 -r1.168
--- TODO 25 Nov 2003 03:42:31 -0000 1.167
+++ TODO 28 Nov 2003 04:14:03 -0000 1.168
@@ -70,7 +70,7 @@
X Generic, cross-module notion of "address".
X Better capability infrastructure.
o Better ExitAddress notion.
- o Separate parsing path str into specifier list,
+ o Separate parsing path str into specifier list,
checking specifier list for sanity, and generating
path from specifier list.
o Switch unit tests to test new interface to ClientDir
@@ -86,7 +86,7 @@
o Add some convenient way to list arbitrary server features.
o Refactor Config to have a richer idea of types
o Add 'features' to Config.
- o Add featureMap manipulation functionality to
+ o Add featureMap manipulation functionality to
ClientDirectory.
o Formatting for featuremap
o CLI for new listservers
@@ -95,7 +95,7 @@
the current impenetrable --cascade={0|1|2}.
o Unit tests for features
o Unit tests for featureMaps
- o Handle the exit address '0xFFFE' as before.
+ o Handle the exit address '0xFFFE' as before.
o Only warn about unknown types once.
o Timeouts should say 'timeout', not EINTR.
o Timeouts should be user-configurable.
Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- setup.py 10 Nov 2003 04:12:19 -0000 1.80
+++ setup.py 28 Nov 2003 04:14:03 -0000 1.81
@@ -26,7 +26,7 @@
print "Python 2.1.1 has known bugs that keep Mixminion from working."
print "Maybe you should upgrade to 2.1.3 or some more recent version."
sys.exit(1)
-
+
try:
import zlib
except ImportError:
@@ -130,7 +130,7 @@
INCLUDE_DIRS = []
STATIC_LIBS = []
LIBRARY_DIRS = []
-
+
# WWWW Right now, this is hardwired to my openssl installation.
INCLUDE_DIRS.append("d:\\openssl\\include")
LIBRARY_DIRS.append("D:\\openssl\\lib\\vc")
@@ -213,7 +213,7 @@
if not found:
print NO_OPENSSL_FOUND
sys.exit(1)
-
+
STATIC_LIBS=[]
LIBRARIES=['ssl','crypto']
@@ -396,7 +396,7 @@
print "Makefile it needs to build additional Python components.\n"
requirePythonDev()
-
+
class runMMCommand(Command):
# Based on setup.py from Zooko's pyutil package, which is in turn based on