]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/log
tahoe-lafs/tahoe-lafs.git
18 years agocommand-line: add "rm", and tidy-up variable names, and make it so "allmydata-tahoe...
Zooko O'Whielacronx [Fri, 17 Aug 2007 20:23:16 +0000 (13:23 -0700)]
command-line: add "rm", and tidy-up variable names, and make it so "allmydata-tahoe spam" prints a usage message instead of returning silently

18 years agocommand-line: remove some redundant options checking
Zooko O'Whielacronx [Fri, 17 Aug 2007 20:06:43 +0000 (13:06 -0700)]
command-line: remove some redundant options checking

18 years agocommand-line: fix all three commands and all two ways to invoke them to require node...
Zooko O'Whielacronx [Fri, 17 Aug 2007 19:54:47 +0000 (12:54 -0700)]
command-line: fix all three commands and all two ways to invoke them to require node-url and give a useful usage string if node-url is absent or of the wrong form

18 years agorelnotes.txt: edit and update relnotes and clarify licence
Zooko O'Whielacronx [Fri, 17 Aug 2007 19:25:09 +0000 (12:25 -0700)]
relnotes.txt: edit and update relnotes and clarify licence

18 years agotahoe_put.py: don't treat "^HTTP 200 OK" appearing somewhere in the body as if it...
Zooko O'Whielacronx [Fri, 17 Aug 2007 19:06:41 +0000 (12:06 -0700)]
tahoe_put.py: don't treat "^HTTP 200 OK" appearing somewhere in the body as if it appeared in the header

18 years agotahoe_put.py: require node-url to be provided
Zooko O'Whielacronx [Fri, 17 Aug 2007 19:06:11 +0000 (12:06 -0700)]
tahoe_put.py: require node-url to be provided

18 years agoCREDITS: update Arno's entry
Zooko O'Whielacronx [Fri, 17 Aug 2007 19:06:00 +0000 (12:06 -0700)]
CREDITS: update Arno's entry

18 years agocmdline: change "--server" to "--node-url" and make it have no default value
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:53:27 +0000 (16:53 -0700)]
cmdline: change "--server" to "--node-url" and make it have no default value

18 years agorelnotes.txt: a few more updates to relnotes.txt
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:52:22 +0000 (16:52 -0700)]
relnotes.txt: a few more updates to relnotes.txt

18 years agoput now exits after doing its work, and it prints a terse message if 200 or 201,...
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:30:39 +0000 (16:30 -0700)]
put now exits after doing its work, and it prints a terse message if 200 or 201, and a full dump of response elsewise

18 years agorelnotes.txt: incomplete update to describe v0.5
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:03:02 +0000 (16:03 -0700)]
relnotes.txt: incomplete update to describe v0.5
more to come...

18 years agoincomplete version of tahoe-put.py
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:01:01 +0000 (16:01 -0700)]
incomplete version of tahoe-put.py
It doesn't exit properly afterward, and it might not do the best things with non-success responses from the server.
(See tahoe-put-web2ish.py for an example of better response handling.)

18 years agowebapi.txt: s/dirnodes/directories/
Zooko O'Whielacronx [Thu, 16 Aug 2007 22:53:53 +0000 (15:53 -0700)]
webapi.txt: s/dirnodes/directories/

18 years agofix version class to preferred format and correct parsing
Zooko O'Whielacronx [Thu, 16 Aug 2007 22:38:01 +0000 (15:38 -0700)]
fix version class to preferred format and correct parsing

18 years agoversion_class.py: if you don't have pkg_resources for comparing version numbers,...
Zooko O'Whielacronx [Thu, 16 Aug 2007 23:16:41 +0000 (16:16 -0700)]
version_class.py: if you don't have pkg_resources for comparing version numbers, use distutils.version.LooseVersion

18 years agoREADME: update/clarify the build-depends packages need to create .debs
Brian Warner [Fri, 17 Aug 2007 03:30:07 +0000 (20:30 -0700)]
README: update/clarify the build-depends packages need to create .debs

18 years agoscripts: rearrange Options, make --version behave the same for all commands
Brian Warner [Thu, 16 Aug 2007 19:50:19 +0000 (12:50 -0700)]
scripts: rearrange Options, make --version behave the same for all commands

18 years agofix small bug in unit tests which caused spurious failures on Windows
Zooko O'Whielacronx [Thu, 16 Aug 2007 21:14:41 +0000 (14:14 -0700)]
fix small bug in unit tests which caused spurious failures on Windows

18 years agoin-line doc edit: s/pyutil/allmydata.util/
Zooko O'Whielacronx [Thu, 16 Aug 2007 21:10:48 +0000 (14:10 -0700)]
in-line doc edit: s/pyutil/allmydata.util/

18 years agoimport version class and make-version script from pyutil -- fixes win32 build, improv...
Zooko O'Whielacronx [Thu, 16 Aug 2007 21:09:30 +0000 (14:09 -0700)]
import version class and make-version script from pyutil -- fixes win32 build, improves error handling, and eliminates unused features

18 years agoa first crack at the "put" command-line
Zooko O'Whielacronx [Thu, 16 Aug 2007 19:15:38 +0000 (12:15 -0700)]
a first crack at the "put" command-line
There are actually two versions in this patch, one of which requires twisted.web2 and the other of which uses the Python standard library's socket module.  The socketish one doesn't know when the web server is done so it hangs after doing its thing.  (Oh -- maybe I should add an HTTP header asking the web server to close the connection when finished.)  The web2ish one works better in that respect.  Neither of them handle error responses from the server very well yet.

After lunch I intend to finish the socketish one.

To try one, mv src/allmydata/scripts/tahoe_put-{socketish,web2ish}.py src/allmydata/scripts/tahoe_put.py .

If you want to try the web2ish one, and you can't find a web2 package to install, you can get one from:

http://allmydata.org/~zooko/repos/twistedweb2snarf/

18 years agoMakefile: add build_ext target, for convenience
Brian Warner [Thu, 16 Aug 2007 00:47:10 +0000 (17:47 -0700)]
Makefile: add build_ext target, for convenience

18 years agowebish.py: allow users to delete (but not create) empty-named files. Closes #94.
Brian Warner [Thu, 16 Aug 2007 06:14:05 +0000 (23:14 -0700)]
webish.py: allow users to delete (but not create) empty-named files. Closes #94.

18 years agowebish: implement replace= for POST commands
Brian Warner [Wed, 15 Aug 2007 22:21:38 +0000 (15:21 -0700)]
webish: implement replace= for POST commands

18 years agowebish: implement replace= for PUT commands
Brian Warner [Wed, 15 Aug 2007 20:22:23 +0000 (13:22 -0700)]
webish: implement replace= for PUT commands

18 years agoIDirectoryNode: add has_child() method
Brian Warner [Wed, 15 Aug 2007 20:22:01 +0000 (13:22 -0700)]
IDirectoryNode: add has_child() method

18 years agocheck_memory.py: Disable the 100MB test for now: our buildslave can't currently handl...
Brian Warner [Wed, 15 Aug 2007 19:55:11 +0000 (12:55 -0700)]
check_memory.py: Disable the 100MB test for now: our buildslave can't currently handle it because the testnet/framework processes uses something like 600M of RSS.

18 years agowebapi.txt: specify replace= behavior on all PUT and POST commands
Brian Warner [Thu, 16 Aug 2007 02:31:49 +0000 (19:31 -0700)]
webapi.txt: specify replace= behavior on all PUT and POST commands

18 years agowebapi.txt: clear up underspecified items, replace 'webpassword' paragraph
Brian Warner [Thu, 16 Aug 2007 02:04:47 +0000 (19:04 -0700)]
webapi.txt: clear up underspecified items, replace 'webpassword' paragraph
with a section about our expected plans for #98, add more introductory text
to the sections on manipulate-file vs manipulate-directory.

18 years agowebapi.txt: shorter and hopefully clearer description of names vs. identifiers
Zooko O'Whielacronx [Wed, 15 Aug 2007 19:28:04 +0000 (12:28 -0700)]
webapi.txt: shorter and hopefully clearer description of names vs. identifiers
Brian (and anyone who has an interest in the API and documentation): please review.

18 years agoclient.py: make a note in the logs when the auto-shutdown feature is in use
Brian Warner [Tue, 14 Aug 2007 09:12:30 +0000 (02:12 -0700)]
client.py: make a note in the logs when the auto-shutdown feature is in use

18 years agowebish: look for when_done= in POST fields as well as queryargs. Closes #101.
Brian Warner [Tue, 14 Aug 2007 00:45:02 +0000 (17:45 -0700)]
webish: look for when_done= in POST fields as well as queryargs. Closes #101.

We need to look in the fields because that's how we build the mkdir/upload
forms. Without this, uploading or creating directories would leave us on a
page that had just a URI, instead of something actually useful to a human.

18 years agodocs/configuration.txt: explain the files in the node's basedir, which ones are usefu...
Brian Warner [Mon, 13 Aug 2007 20:28:40 +0000 (13:28 -0700)]
docs/configuration.txt: explain the files in the node's basedir, which ones are useful to modify, etc

18 years agofix pyflakes warnings from recent b32decode change
Brian Warner [Sun, 12 Aug 2007 23:33:51 +0000 (16:33 -0700)]
fix pyflakes warnings from recent b32decode change

18 years agotest_system.py: add coverage for get_permuted_peers()
Brian Warner [Sun, 12 Aug 2007 23:29:34 +0000 (16:29 -0700)]
test_system.py: add coverage for get_permuted_peers()

18 years agoClient.get_permuted_peers: use self.nodeid now that it's fixed
Brian Warner [Sun, 12 Aug 2007 23:24:51 +0000 (16:24 -0700)]
Client.get_permuted_peers: use self.nodeid now that it's fixed

18 years agoshorten ids
tahoe [Sun, 12 Aug 2007 18:53:18 +0000 (11:53 -0700)]
shorten ids

18 years agodon't over-encode the nodeid many times with ascii-encoding
Zooko O'Whielacronx [Sun, 12 Aug 2007 17:29:38 +0000 (10:29 -0700)]
don't over-encode the nodeid many times with ascii-encoding

18 years agoymy name...
tahoe [Fri, 10 Aug 2007 21:51:47 +0000 (14:51 -0700)]
ymy name...

18 years agofoolscap: change using-foolscap.xhtml to say "public key" instead of "private key"
Zooko O'Whielacronx [Sat, 11 Aug 2007 16:45:03 +0000 (09:45 -0700)]
foolscap: change using-foolscap.xhtml to say "public key" instead of "private key"
In the first instance, I hope that the tubid is generated from the hash of the public key and not the hash of the private key!
In the latter instances, the phrase "public key" as in "public key certificate" is more common.

18 years agowebish: localfile=/localdir= are now disabled by default, a special switch is require...
Brian Warner [Sat, 11 Aug 2007 01:21:22 +0000 (18:21 -0700)]
webish: localfile=/localdir= are now disabled by default, a special switch is required to enable them

18 years agowebapi.txt: separate out debug/test commands, indicate that localfile=/localdir=...
Brian Warner [Sat, 11 Aug 2007 01:20:22 +0000 (18:20 -0700)]
webapi.txt: separate out debug/test commands, indicate that localfile=/localdir= requires special activation

18 years agowebish: reduce POST memory footprint by overriding http.Request
Brian Warner [Sat, 11 Aug 2007 00:25:33 +0000 (17:25 -0700)]
webish: reduce POST memory footprint by overriding http.Request

The original twisted.web.http.Request class has a requestReceived method
that parses the form body (in the request's .content filehandle) using
the stdlib cgi.parse_multipart() function. parse_multipart() consumes a
lot of memory when handling large file uploads, because it holds the
arguments entirely in RAM. Nevow's subclass of Request uses cgi.FieldStorage
instead, which is much more memory-efficient.

This patch uses a local subclass of Request and a modified copy of the
requestReceived method. It disables the cgi.parse_multipart parsing and
instead relies upon Nevow's use of FieldStorage. Our code must look for
form elements (which come from the body of the POST request) in req.fields,
rather than assuming that they will be copied into req.args (which now
only contains the query arguments that appear in the URL).

As a result, memory usage is no longer inflated by the size of the file
being uploaded in a POST upload request. Note that cgi.FieldStorage uses
temporary files (tempfile.TemporaryFile) to hold the data.

This closes #29.

18 years agowebish.POSTHandler: fix typo that meant we didn't look for 'name' in req.fields
Brian Warner [Sat, 11 Aug 2007 00:25:28 +0000 (17:25 -0700)]
webish.POSTHandler: fix typo that meant we didn't look for 'name' in req.fields

18 years agowebapi.txt: minor clarifications and examples
Brian Warner [Fri, 10 Aug 2007 22:52:27 +0000 (15:52 -0700)]
webapi.txt: minor clarifications and examples

18 years agoboringfile: ignore the setuptools .egg that ez_setup.py likes to download/build/insta...
Brian Warner [Fri, 10 Aug 2007 02:45:18 +0000 (19:45 -0700)]
boringfile: ignore the setuptools .egg that ez_setup.py likes to download/build/install during compilation

18 years agoMakefile: add 'upload-self' pass to check-memory
Brian Warner [Fri, 10 Aug 2007 08:41:34 +0000 (01:41 -0700)]
Makefile: add 'upload-self' pass to check-memory

18 years ago#96: add flag to enable pushing data to ourselves, defaulting to False
Brian Warner [Fri, 10 Aug 2007 01:30:24 +0000 (18:30 -0700)]
#96: add flag to enable pushing data to ourselves, defaulting to False

18 years agoencode.py: log a percentage complete as well as the raw byte counts
Brian Warner [Fri, 10 Aug 2007 01:28:45 +0000 (18:28 -0700)]
encode.py: log a percentage complete as well as the raw byte counts

18 years agoEncoder.__repr__: mention the file being encoded
Brian Warner [Fri, 10 Aug 2007 01:26:56 +0000 (18:26 -0700)]
Encoder.__repr__: mention the file being encoded

18 years agoencode.py: add a reactor turn barrier between segments, to allow Deferreds to retire...
Brian Warner [Fri, 10 Aug 2007 01:26:17 +0000 (18:26 -0700)]
encode.py: add a reactor turn barrier between segments, to allow Deferreds to retire and free their arguments, all in the name of reducing memory footprint

18 years agowebapi.txt: put back the manifest feature
Zooko O'Whielacronx [Fri, 10 Aug 2007 19:58:33 +0000 (12:58 -0700)]
webapi.txt: put back the manifest feature
So that we can compare versions of webapi.txt with and without this documentation, side by side.

18 years agowebapi.txt: put back the localfile feature
Zooko O'Whielacronx [Fri, 10 Aug 2007 19:52:37 +0000 (12:52 -0700)]
webapi.txt: put back the localfile feature
So that we can compare versions webapi.txt with and without this documentation side by side.

18 years agowebapi.txt: add URI-based GET variants
Zooko O'Whielacronx [Fri, 10 Aug 2007 19:33:29 +0000 (12:33 -0700)]
webapi.txt: add URI-based GET variants

18 years agowebapi.txt: some editing, and remove the localfile feature and the manifest feature
Zooko O'Whielacronx [Fri, 10 Aug 2007 19:24:13 +0000 (12:24 -0700)]
webapi.txt: some editing, and remove the localfile feature and the manifest feature
My motivation to remove these features is as per:

http://allmydata.org/pipermail/tahoe-dev/2007-August/000067.html

However, I haven't heard back from Brian yet, so I'm actually going to put them back in the next patch so that I can compare the two versions of webapi.txt side by side.

18 years agowebapi.txt: further refactoring and add a section explaining TOCTTOU bugs and how...
Zooko O'Whielacronx [Fri, 10 Aug 2007 19:04:30 +0000 (12:04 -0700)]
webapi.txt: further refactoring and add a section explaining TOCTTOU bugs and how to avoid them by using URIs

18 years agowebapi.txt: further refactoring and editing to clarify the fact that you don't know...
Zooko O'Whielacronx [Fri, 10 Aug 2007 17:19:27 +0000 (10:19 -0700)]
webapi.txt: further refactoring and editing to clarify the fact that you don't know whether a thing is a file or a directory before you fetch it

18 years agowebapi.txt: add "?t=file" flag and reorganize doc to discourage people from thinking...
Zooko O'Whielacronx [Fri, 10 Aug 2007 16:43:52 +0000 (09:43 -0700)]
webapi.txt: add "?t=file" flag and reorganize doc to discourage people from thinking that they know before hand the file-or-dir type of the thing that they are naming

18 years agofix test_web refactoring so that the WebMixin class isn't a TestCase
Zooko O'Whielacronx [Fri, 10 Aug 2007 15:40:02 +0000 (08:40 -0700)]
fix test_web refactoring so that the WebMixin class isn't a TestCase
Thanks, Brian.

18 years agoIf do_stop attempts to stop a nonexistent process the OSError exception is caught...
wilcoxjg [Thu, 9 Aug 2007 15:57:45 +0000 (08:57 -0700)]
If do_stop attempts to stop a nonexistent process the OSError exception is caught (by errno) and handled tersely.

18 years agorefactor test_web so that other tests can use the part of test_web that sets up a...
Zooko O'Whielacronx [Thu, 9 Aug 2007 20:08:42 +0000 (13:08 -0700)]
refactor test_web so that other tests can use the part of test_web that sets up a simple filesystem

18 years agointroducer: don't log.err() an initial connection failure, since that flunks tests...
Brian Warner [Thu, 9 Aug 2007 19:53:44 +0000 (12:53 -0700)]
introducer: don't log.err() an initial connection failure, since that flunks tests. Use self.log() instead. Also improve test_client.py to always trigger this case, before it was finishing to quickly to always hit the problem.

18 years agocheck_memory.py: include a single 100MB test
Brian Warner [Thu, 9 Aug 2007 18:30:33 +0000 (11:30 -0700)]
check_memory.py: include a single 100MB test

18 years agomunin/tahoe-storagespace.py: use /bin/du instead of our python version, since
Brian Warner [Fri, 10 Aug 2007 01:26:57 +0000 (18:26 -0700)]
munin/tahoe-storagespace.py: use /bin/du instead of our python version, since
it a) is faster and b) will include filesystem overhead that is a real cost.

18 years agowebapi.txt: update rfc reference
Brian Warner [Thu, 9 Aug 2007 18:24:35 +0000 (11:24 -0700)]
webapi.txt: update rfc reference

18 years agozfec: required version of setuptools is 0.6c6 on cygwin, 0.6a9 on other platforms
Zooko O'Whielacronx [Thu, 9 Aug 2007 17:29:03 +0000 (10:29 -0700)]
zfec: required version of setuptools is 0.6c6 on cygwin, 0.6a9 on other platforms

18 years agozfec: default setuptools version is now 0.6c6
Zooko O'Whielacronx [Thu, 9 Aug 2007 17:28:38 +0000 (10:28 -0700)]
zfec: default setuptools version is now 0.6c6

18 years agozfec: add benchmark utility
Zooko O'Whielacronx [Thu, 9 Aug 2007 17:19:13 +0000 (10:19 -0700)]
zfec: add benchmark utility

19 years agozfec: add to README.txt how to run the unit tests
Zooko O'Whielacronx [Fri, 20 Jul 2007 22:51:24 +0000 (15:51 -0700)]
zfec: add to README.txt how to run the unit tests

19 years agozfec: fix link to zfec-dev mailing list
Zooko O'Whielacronx [Fri, 20 Jul 2007 20:57:47 +0000 (13:57 -0700)]
zfec: fix link to zfec-dev mailing list

19 years agozfec: fix README.txt to explain how to use setuptools with GNU stow better
Zooko O'Whielacronx [Fri, 20 Jul 2007 20:57:01 +0000 (13:57 -0700)]
zfec: fix README.txt to explain how to use setuptools with GNU stow better
Also remove requirement of setuptools >= v0.6c3.  I *think* that using setuptools in the modern way relieves this requirement, but I haven't tested it on dapper yet.

19 years agozfec: clarify licensing requirements (transitive grace period)
Zooko O'Whielacronx [Fri, 20 Jul 2007 20:55:46 +0000 (13:55 -0700)]
zfec: clarify licensing requirements (transitive grace period)

19 years agozfec: shebang usr bin env python in ez_setup.py
Zooko O'Whielacronx [Mon, 4 Jun 2007 11:45:17 +0000 (04:45 -0700)]
zfec: shebang usr bin env python in ez_setup.py

19 years agozfec: update doc strings in fileutil
Zooko O'Whielacronx [Mon, 4 Jun 2007 11:44:44 +0000 (04:44 -0700)]
zfec: update doc strings in fileutil

18 years agofix iputil so that it doesn't launch dozens of processes when you give it a full...
Zooko O'Whielacronx [Thu, 9 Aug 2007 17:56:47 +0000 (10:56 -0700)]
fix iputil so that it doesn't launch dozens of processes when you give it a full path and so that it tries executables in preference order and stops as soon as one gives out a dotted-quad string

18 years agoin --> across
wilcoxjg [Thu, 9 Aug 2007 04:17:54 +0000 (21:17 -0700)]
in --> across

18 years agocleaning grammar
wilcoxjg [Thu, 9 Aug 2007 04:11:54 +0000 (21:11 -0700)]
cleaning grammar

18 years ago/twistd.log -> /logs/twistd.log
wilcoxjg [Thu, 9 Aug 2007 03:53:28 +0000 (20:53 -0700)]
/twistd.log -> /logs/twistd.log

18 years agomisc/sizes.py: rename "block" to "share" and "subblock" to "block"
Zooko O'Whielacronx [Thu, 9 Aug 2007 05:31:12 +0000 (22:31 -0700)]
misc/sizes.py: rename "block" to "share" and "subblock" to "block"
This renaming is already in place in all of our other documentation and code, but misc/sizes.py got overlooked.

18 years agoarchitecture.txt: small edits
Zooko O'Whielacronx [Thu, 9 Aug 2007 05:31:05 +0000 (22:31 -0700)]
architecture.txt: small edits

18 years agostartstop_node now works if the logs directory already exists
Zooko O'Whielacronx [Thu, 9 Aug 2007 04:43:48 +0000 (21:43 -0700)]
startstop_node now works if the logs directory already exists
Thanks to Arno and Arch for pointing this out.

18 years agoREADME: formatting (line-wrapping) of arch_o_median's edits to README
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:47:42 +0000 (20:47 -0700)]
README: formatting (line-wrapping) of arch_o_median's edits to README

18 years agochanged README to inslude simplejson in "The Python Way" install
wilcoxjg [Thu, 9 Aug 2007 03:43:40 +0000 (20:43 -0700)]
changed README to inslude simplejson in "The Python Way" install

18 years agochanged MakeFile to install simplejson
wilcoxjg [Thu, 9 Aug 2007 03:41:26 +0000 (20:41 -0700)]
changed MakeFile to install simplejson

18 years agoedited README "The Python Way" installs to /usr/bin
wilcoxjg [Thu, 9 Aug 2007 03:32:09 +0000 (20:32 -0700)]
edited README "The Python Way" installs to /usr/bin

18 years agoREADME: clarify/edit build, install, and test instructions
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:44:58 +0000 (20:44 -0700)]
README: clarify/edit build, install, and test instructions

18 years agoclarify licence
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:44:42 +0000 (20:44 -0700)]
clarify licence

18 years agoREADME: point people to allmydata.org if they are looking for precompiled packages
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:44:03 +0000 (20:44 -0700)]
README: point people to allmydata.org if they are looking for precompiled packages

18 years agoREADME: edit to arch_o_median's contribution re: installing the Python way
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:32:45 +0000 (20:32 -0700)]
README: edit to arch_o_median's contribution re: installing the Python way

18 years agoREADME: add note about what "darcs get" will do and how to run "darcs pull"
Zooko O'Whielacronx [Thu, 9 Aug 2007 03:28:32 +0000 (20:28 -0700)]
README: add note about what "darcs get" will do and how to run "darcs pull"

18 years agochanged README install "Python Way" section
wilcoxjg [Thu, 9 Aug 2007 03:00:35 +0000 (20:00 -0700)]
changed README install "Python Way" section

18 years agonow that the buildslave is moved to a new machine, enable the 50MB test
Brian Warner [Thu, 9 Aug 2007 08:32:52 +0000 (01:32 -0700)]
now that the buildslave is moved to a new machine, enable the 50MB test

18 years agofoolscap: fix .deb-breaking bug (foolscap.lothar.com: #8)
warner-tahoe [Wed, 8 Aug 2007 02:00:08 +0000 (19:00 -0700)]
foolscap: fix .deb-breaking bug (foolscap.lothar.com: #8)

18 years agoupdate foolscap to foolscap-0.1.5, the latest release
warner-tahoe [Wed, 8 Aug 2007 01:55:47 +0000 (18:55 -0700)]
update foolscap to foolscap-0.1.5, the latest release

18 years agoshebang /usr/bin/env python in ez_setup.py
Zooko O'Whielacronx [Wed, 8 Aug 2007 21:37:40 +0000 (14:37 -0700)]
shebang /usr/bin/env python in ez_setup.py
This makes it so that "./ez_setup.py" works on more platforms.

18 years agofix missing import -- this bug was introduced by the recent patch to relax setuptools...
Zooko O'Whielacronx [Tue, 7 Aug 2007 21:25:44 +0000 (14:25 -0700)]
fix missing import -- this bug was introduced by the recent patch to relax setuptools version requirements

18 years agoin relnotes.txt, make the safety warnings slightly less scary
Zooko O'Whielacronx [Tue, 7 Aug 2007 21:23:23 +0000 (14:23 -0700)]
in relnotes.txt, make the safety warnings slightly less scary

and update the reference to the wiki's UseCases page

18 years agorequire setuptools >= 0.6c6 on cygwin, and >= 0.6a9 on other platforms
Zooko O'Whielacronx [Tue, 7 Aug 2007 21:15:54 +0000 (14:15 -0700)]
require setuptools >= 0.6c6 on cygwin, and >= 0.6a9 on other platforms

Earlier I tried 0.6a9 (which comes in .deb format on Dapper) and something
didn't work, so I raised it to 0.6c3.  However, I didn't make a note of what
failed, and so now I'm hoping that what failed was cygwin-specific.  Anyway,
everyone look out for setuptools compatibility problems on the your favorite
platform (and I'll check the buildslaves), and we'll raise the required version
as little as possible and only on the problematic platform.

18 years agoupdate Arno's entry in CREDITS
Zooko O'Whielacronx [Tue, 7 Aug 2007 19:18:44 +0000 (12:18 -0700)]
update Arno's entry in CREDITS

18 years agoupdate README to reflect existence of "make install" target
Zooko O'Whielacronx [Tue, 7 Aug 2007 19:13:24 +0000 (12:13 -0700)]
update README to reflect existence of "make install" target