Ticket #1066: raise-python-version-requirement.dpatch.txt

File raise-python-version-requirement.dpatch.txt, 42.8 KB (added by davidsarah, at 2010-06-05T03:33:53Z)

Raise Python version requirement to 2.4.4 for non-UCS-2 builds, to avoid a critical Python security bug.

Line 
1Sat Jun  5 04:17:13 GMT Daylight Time 2010  david-sarah@jacaranda.org
2  * Raise Python version requirement to 2.4.4 for non-UCS-2 builds, to avoid a critical Python security bug.
3
4New patches:
5
6[Raise Python version requirement to 2.4.4 for non-UCS-2 builds, to avoid a critical Python security bug.
7david-sarah@jacaranda.org**20100605031713
8 Ignore-this: 2df2b6d620c5d8191c79eefe655059e2
9] {
10hunk ./NEWS 21
11 as 'convmv' before using Tahoe CLI.
12 
13 All CLI commands have been improved to support non-ASCII parameters such as
14-filenames and aliases on all supported Operating Systems except Windows as of
15-now.
16+filenames and aliases on all supported Operating Systems.
17+
18+** dependency updates
19+
20+ no python-2.4.2 or 2.4.3 (2.4.4 is ok)
21+ pycrypto-2.0.1
22+ pyasn1-0.0.8a
23+ mock
24+
25 
26 * Release 1.6.1 (2010-02-27)
27 
28hunk ./_auto_deps.py 68
29 if hasattr(sys, 'frozen'): # for py2exe
30     install_requires=[]
31 
32-def require_python_2_with_working_base64():
33+def require_python_version():
34     import sys
35hunk ./_auto_deps.py 70
36-    if sys.version_info[0] != 2:
37-        raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.2 or greater (but less than v3), not %r" % (sys.version_info,))
38 
39hunk ./_auto_deps.py 71
40-    # make sure we have a working base64.b32decode. The one in
41-    # python2.4.[01] was broken.
42-    nodeid_b32 = 't5g7egomnnktbpydbuijt6zgtmw4oqi5'
43-    import base64
44-    nodeid = base64.b32decode(nodeid_b32.upper())
45-    if nodeid != "\x9fM\xf2\x19\xcckU0\xbf\x03\r\x10\x99\xfb&\x9b-\xc7A\x1d":
46-        raise NotImplementedError("There is a bug in this base64 module: %r.  This was a known issue in Python v2.4.0 and v2.4.1 (http://bugs.python.org/issue1171487 ).  Tahoe-LAFS current requires Python v2.4.2 or greater (but less than v3).  The current Python version is %r" % (base64, sys.version_info,))
47+    # we require 2.4.4 on non-UCS-2 builds to avoid <http://www.python.org/news/security/PSF-2006-001/>
48+    # we require at least 2.4.2 in any case to avoid a bug in the base64 module: <http://bugs.python.org/issue1171487>
49+    if sys.maxunicode == 65535:
50+        if sys.version_info < (2, 4, 2) or sys.version_info[0] > 2:
51+            raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.2 or greater for a UCS-2 build (but less than v3), not %r" %
52+                                      (sys.version_info,))
53+    else:
54+        if sys.version_info < (2, 4, 4) or sys.version_info[0] > 2:
55+            raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.4 or greater for a non-UCS-2 build (but less than v3), not %r" %
56+                                      (sys.version_info,))
57 
58 def require_auto_deps():
59     """
60hunk ./_auto_deps.py 90
61     of these packages and gets an ImportError.  This function gets called from
62     src/allmydata/__init__.py .
63     """
64-    require_python_2_with_working_base64()
65+    require_python_version()
66 
67     import pkg_resources
68     for requirement in install_requires:
69hunk ./docs/quickstart.html 21
70 
71     <h2>Install Python</h2>
72 
73-    <p>Check if you already have an adequate version of Python installed by running <cite>python -V</cite>.  Python v2.4 (v2.4.2 or greater), Python v2.5 or Python v2.6 will work. Python v3 does not work. If you don't have one of these versions of Python installed, then follow the instructions on <a href="http://www.python.org/download/releases/2.5.5/">the Python download page</a> to download and install Python v2.5. Make sure that the path to the installation directory has no spaces in it (e.g. on Windows, do not install Python in the "<tt>Program Files</tt>" directory).</p>
74+    <p>Check if you already have an adequate version of Python installed by running <cite>python -V</cite>.  Python v2.4 (v2.4.4 or greater), Python v2.5 or Python v2.6 will work. Python v3 does not work. If you don't have one of these versions of Python installed, then follow the instructions on <a href="http://www.python.org/download/releases/2.5.5/">the Python download page</a> to download and install Python v2.5. Make sure that the path to the installation directory has no spaces in it (e.g. on Windows, do not install Python in the "<tt>Program Files</tt>" directory).</p>
75     <p>If you are on Windows, you now must manually install the pywin32 package from <a href="http://sourceforge.net/projects/pywin32/files/">the pywin32 site</a> before getting Tahoe-LAFS. Make sure to get the correct file for the version of Python you are using &mdash; e.g. ending in "py2.5.exe" for Python 2.5. If using 64-bit Windows, the file should have "win-amd64" in its name.</p>
76 
77     <h2>Get Tahoe-LAFS</h2>
78}
79
80Context:
81
82[unicode tests: fix missing import
83zooko@zooko.com**20100604142630
84 Ignore-this: db437fe8009971882aaea9de05e2bc3
85]
86[unicode: make test_cli test a non-ascii argument, and make the fallback term encoding be locale.getpreferredencoding()
87zooko@zooko.com**20100604141251
88 Ignore-this: b2bfc07942f69141811e59891842bd8c
89]
90[unicode: always decode json manifest as utf-8 then encode for stdout
91zooko@zooko.com**20100604084840
92 Ignore-this: ac481692315fae870a0f3562bd7db48e
93 pyflakes pointed out that the exception handler fallback called an un-imported function, showing that the fallback wasn't being exercised.
94 I'm not 100% sure that this patch is right and would appreciate François or someone reviewing it.
95]
96[fix flakes
97zooko@zooko.com**20100604075845
98 Ignore-this: 3e6a84b78771b0ad519e771a13605f0
99]
100[fix syntax of assertion handling that isn't portable to older versions of Python
101zooko@zooko.com**20100604075805
102 Ignore-this: 3a12b293aad25883fb17230266eb04ec
103]
104[test_stringutils.py: Skip test test_listdir_unicode_good if filesystem supports only ASCII filenames
105Francois Deppierraz <francois@ctrlaltdel.ch>**20100521160839
106 Ignore-this: f2ccdbd04c8d9f42f1efb0eb80018257
107]
108[test_stringutils.py: Skip test_listdir_unicode on mocked platform which cannot store non-ASCII filenames
109Francois Deppierraz <francois@ctrlaltdel.ch>**20100521160559
110 Ignore-this: b93fde736a8904712b506e799250a600
111]
112[test_stringutils.py: Add a test class for OpenBSD 4.1 with LANG=C
113Francois Deppierraz <francois@ctrlaltdel.ch>**20100521140053
114 Ignore-this: 63f568aec259cef0e807752fc8150b73
115]
116[test_stringutils.py: Mock the open() call in test_open_unicode
117Francois Deppierraz <francois@ctrlaltdel.ch>**20100521135817
118 Ignore-this: d8be4e56a6eefe7d60f97f01ea20ac67
119 
120 This test ensure that open(a_unicode_string) is used on Unicode platforms
121 (Windows or MacOS X) and that open(a_correctly_encoded_bytestring) on other
122 platforms such as Unix.
123 
124]
125[test_stringutils.py: Fix a trivial Python 2.4 syntax incompatibility
126Francois Deppierraz <francois@ctrlaltdel.ch>**20100521093345
127 Ignore-this: 9297e3d14a0dd37d0c1a4c6954fd59d3
128]
129[test_cli.py: Fix tests when sys.stdout.encoding=None and refactor this code into functions
130Francois Deppierraz <francois@ctrlaltdel.ch>**20100520084447
131 Ignore-this: cf2286e225aaa4d7b1927c78c901477f
132]
133[Fix handling of correctly encoded unicode filenames (#534)
134Francois Deppierraz <francois@ctrlaltdel.ch>**20100520004356
135 Ignore-this: 8a3a7df214a855f5a12dc0eeab6f2e39
136 
137 Tahoe CLI commands working on local files, for instance 'tahoe cp' or 'tahoe
138 backup', have been improved to correctly handle filenames containing non-ASCII
139 characters.
140   
141 In the case where Tahoe encounters a filename which cannot be decoded using the
142 system encoding, an error will be returned and the operation will fail.  Under
143 Linux, this typically happens when the filesystem contains filenames encoded
144 with another encoding, for instance latin1, than the system locale, for
145 instance UTF-8.  In such case, you'll need to fix your system with tools such
146 as 'convmv' before using Tahoe CLI.
147   
148 All CLI commands have been improved to support non-ASCII parameters such as
149 filenames and aliases on all supported Operating Systems except Windows as of
150 now.
151]
152[stringutils.py: Unicode helper functions + associated tests
153Francois Deppierraz <francois@ctrlaltdel.ch>**20100520004105
154 Ignore-this: 7a73fc31de2fd39d437d6abd278bfa9a
155 
156 This file contains a bunch of helper functions which converts
157 unicode string from and to argv, filenames and stdout.
158]
159[Add dependency on Michael Foord's mock library
160Francois Deppierraz <francois@ctrlaltdel.ch>**20100519233325
161 Ignore-this: 9bb01bf1e4780f6b98ed394c3b772a80
162]
163[setup: adjust make clean target to ignore our bundled build tools
164zooko@zooko.com**20100604051250
165 Ignore-this: d24d2a3b849000790cfbfab69237454e
166]
167[setup: bundle a copy of setuptools_trial as an unzipped egg in the base dir of the Tahoe-LAFS source tree
168zooko@zooko.com**20100604044648
169 Ignore-this: a4736e9812b4dab2d5a2bc4bfc5c3b28
170 This is to work-around this Distribute issue:
171 http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being
172]
173[setup: bundle a copy of darcsver in unzipped egg form in the root of the Tahoe-LAFS source tree
174zooko@zooko.com**20100604044146
175 Ignore-this: a51a52e82dd3a39225657ffa27decae2
176 This is to work-around this Distribute issue:
177 http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being
178]
179[setup: undo the previous patch to quote the executable in scripts
180zooko@zooko.com**20100604025204
181 Ignore-this: beda3b951c49d1111478618b8cabe005
182 The problem isn't in the script, it is in the cli.exe script that is built by setuptools. This might be related to
183 http://bugs.python.org/issue6792
184 and
185 http://bugs.python.org/setuptools/issue2
186 Or it might be a separate issue involving the launcher.c code e.g. http://tahoe-lafs.org/trac/zetuptoolz/browser/launcher.c?rev=576#L210 and its handling of the interpreter name.
187]
188[quickstart.html: warn against installing Python at a path containing spaces.
189david-sarah@jacaranda.org**20100604032413
190 Ignore-this: c7118332573abd7762d9a897e650bc6a
191]
192[setup: put quotes around the path to executable in case it has spaces in it, when building a tahoe.exe for win32
193zooko@zooko.com**20100604020836
194 Ignore-this: 478684843169c94a9c14726fedeeed7d
195]
196[misc/show-tool-versions.py: Display additional Python interpreter encoding informations (stdout, stdin and filesystem)
197Francois Deppierraz <francois@ctrlaltdel.ch>**20100521094313
198 Ignore-this: 3ae9b0b07fd1d53fb632ef169f7c5d26
199]
200[Fix test failures in test_web caused by changes to web page titles in #1062. Also, change a 'target' field to '_blank' instead of 'blank' in welcome.xhtml.
201david-sarah@jacaranda.org**20100603232105
202 Ignore-this: 6e2cc63f42b07e2a3b2d1a857abc50a6
203]
204[Resolve merge conflict for sftpd.py
205david-sarah@jacaranda.org**20100603182537
206 Ignore-this: ba8b543e51312ac949798eb8f5bd9d9c
207]
208[SFTP: possible fix for metadata times being shown as the epoch.
209david-sarah@jacaranda.org**20100602234514
210 Ignore-this: bdd7dfccf34eff818ff88aa4f3d28790
211]
212[SFTP: further improvements to test coverage.
213david-sarah@jacaranda.org**20100602234422
214 Ignore-this: 87eeee567e8d7562659442ea491e187c
215]
216[SFTP: improve test coverage. Also make creating a directory fail when permissions are read-only (rather than ignoring the permissions).
217david-sarah@jacaranda.org**20100602041934
218 Ignore-this: a5e9d9081677bc7f3ddb18ca7a1f531f
219]
220[dirnode.py: fix a bug in the no-write change for Adder, and improve test coverage. Add a 'metadata' argument to create_subdirectory, with documentation. Also update some comments in test_dirnode.py made stale by the ctime/mtime change.
221david-sarah@jacaranda.org**20100602032641
222 Ignore-this: 48817b54cd63f5422cb88214c053b03b
223]
224[dirnode.py: Fix bug that caused 'tahoe' fields, 'ctime' and 'mtime' not to be updated when new metadata is present.
225david-sarah@jacaranda.org**20100602014644
226 Ignore-this: 5bac95aa897b68f2785d481e49b6a66
227]
228[SFTP: fix a bug that caused the temporary files underlying EncryptedTemporaryFiles not to be closed.
229david-sarah@jacaranda.org**20100601055310
230 Ignore-this: 44fee4cfe222b2b1690f4c5e75083a52
231]
232[SFTP: changes for #1063 ('no-write' field) including comment:1 (clearing owner write permission diminishes to a read cap). Includes documentation changes, but not tests for the new behaviour.
233david-sarah@jacaranda.org**20100601051139
234 Ignore-this: eff7c08bd47fd52bfe2b844dabf02558
235]
236[dirnode.py: Fix #1034 (MetadataSetter does not enforce restriction on setting 'tahoe' subkeys), and expose the metadata updater for use by SFTP. Also, support diminishing a child cap to read-only if 'no-write' is set in the metadata.
237david-sarah@jacaranda.org**20100601045428
238 Ignore-this: 14f26e17e58db97fad0dcfd350b38e95
239]
240[SFTP: the same bug as in _sync_heisenfiles also occurred in two other places.
241david-sarah@jacaranda.org**20100530060127
242 Ignore-this: 8d137658fc6e4596fa42697476c39aa3
243]
244[SFTP: another try at fixing the _sync_heisenfiles bug.
245david-sarah@jacaranda.org**20100530055254
246 Ignore-this: c15f76f32a60083a6b7de6ca0e917934
247]
248[SFTP: fix silly bug in _sync_heisenfiles ('f is not ignore' vs 'not (f is ignore)').
249david-sarah@jacaranda.org**20100530053807
250 Ignore-this: 71c4bc62613bf8fef835886d8eb61c27
251]
252[SFTP: log when a sync completes.
253david-sarah@jacaranda.org**20100530051840
254 Ignore-this: d99765663ceb673c8a693dfcf88c25ea
255]
256[SFTP: fix bug in previous logging patch.
257david-sarah@jacaranda.org**20100530050000
258 Ignore-this: 613e4c115f03fe2d04c621b510340817
259]
260[SFTP: more logging to track down OpenOffice hang.
261david-sarah@jacaranda.org**20100530040809
262 Ignore-this: 6c11f2d1eac9f62e2d0f04f006476a03
263]
264[SFTP: avoid blocking close on a heisenfile that has been abandoned or never changed. Also, improve the logging to help track down a case where OpenOffice hangs on opening a file with FXF_READ|FXF_WRITE.
265david-sarah@jacaranda.org**20100530025544
266 Ignore-this: 9919dddd446fff64de4031ad51490d1c
267]
268[Move suppression of DeprecationWarning about BaseException.message from sftpd.py to main __init__.py. Also, remove the global suppression of the 'integer argument expected, got float' warning, which turned out to be a bug.
269david-sarah@jacaranda.org**20100529050537
270 Ignore-this: 87648afa0dec0d2e73614007de102a16
271]
272[SFTP: cater to clients that assume a file is created as soon as they have made an open request; also, fix some race conditions associated with closing a file at about the same time as renaming or removing it.
273david-sarah@jacaranda.org**20100529045253
274 Ignore-this: 2404076b2154ff2659e2b10e0b9e813c
275]
276[Change doc comments in interfaces.py to take into account unknown nodes.
277david-sarah@jacaranda.org**20100528171922
278 Ignore-this: d2fde6890b3bca9c7275775f64fbff56
279]
280[Add must_exist, must_be_directory, and must_be_file arguments to DirectoryNode.delete. This will be used to fixes a minor condition in the SFTP frontend.
281david-sarah@jacaranda.org**20100527194529
282 Ignore-this: 6d8114cef4450c52c57639f82852716f
283]
284[Trivial whitespace changes.
285david-sarah@jacaranda.org**20100527194114
286 Ignore-this: 98d611bc54ee20b01a5f6b334ff61b2d
287]
288[SFTP: 'sync' any open files at a direntry before opening any new file at that direntry. This works around the sshfs misbehaviour of returning success to clients immediately on close.
289david-sarah@jacaranda.org**20100525230257
290 Ignore-this: 63245d6d864f8f591c86170864d7c57f
291]
292[SFTP: handle removing a file while it is open. Also some simplifications of the logout handling.
293david-sarah@jacaranda.org**20100525184210
294 Ignore-this: 660ee80be6ecab783c60452a9da896de
295]
296[SFTP: a posix-rename response should actually return an FXP_STATUS reply, not an FXP_EXTENDED_REPLY as Twisted Conch assumes. Work around this by raising an SFTPError with code FX_OK.
297david-sarah@jacaranda.org**20100525033323
298 Ignore-this: fe2914d3ef7f5194bbeaf3f2dda2ad7d
299]
300[SFTP: fix problem with posix-rename code returning a Deferred for the renamed filenode, not for the result of the request (an empty string).
301david-sarah@jacaranda.org**20100525020209
302 Ignore-this: 69f7491df2a8f7ea92d999a6d9f0581d
303]
304[SFTP: fix time handling to make sure floats are not passed into twisted.conch, and to print times in the future less ambiguously in directory listings.
305david-sarah@jacaranda.org**20100524230412
306 Ignore-this: eb1a3fb72492fa2fb19667b6e4300440
307]
308[SFTP: name of the POSIX rename extension should be 'posix-rename@openssh.com', not 'extposix-rename@openssh.com'.
309david-sarah@jacaranda.org**20100524021156
310 Ignore-this: f90eb1ff9560176635386ee797a3fdc7
311]
312[SFTP: avoid race condition where .write could be called on an OverwriteableFileConsumer after it had been closed.
313david-sarah@jacaranda.org**20100523233830
314 Ignore-this: 55d381064a15bd64381163341df4d09f
315]
316[SFTP: log tracebacks for RAISEd exceptions.
317david-sarah@jacaranda.org**20100523221535
318 Ignore-this: c76a7852df099b358642f0631237cc89
319]
320[Suppress 'integer argument expected, got float' DeprecationWarning everywhere
321david-sarah@jacaranda.org**20100523221157
322 Ignore-this: 80efd7e27798f5d2ad66c7a53e7048e5
323]
324[SFTP: more logging to investigate behaviour of getAttrs(path).
325david-sarah@jacaranda.org**20100523204236
326 Ignore-this: e58fd35dc9015316e16a9f49f19bb469
327]
328[SFTP: fix pyflakes warnings; drop 'noisy' versions of eventually_callback and eventually_errback; robustify conversion of exception messages to UTF-8.
329david-sarah@jacaranda.org**20100523140905
330 Ignore-this: 420196fc58646b05bbc9c3732b6eb314
331]
332[SFTP: fixes and test cases for renaming of open files.
333david-sarah@jacaranda.org**20100523032549
334 Ignore-this: 32e0726be0fc89335f3035157e202c68
335]
336[SFTP: Increase test_sftp timeout to cater for francois' ARM buildslave.
337david-sarah@jacaranda.org**20100522191639
338 Ignore-this: a5acf9660d304677048ab4dd72908ad8
339]
340[SFTP: Fix error in support for getAttrs on an open file, to index open files by directory entry rather than path. Extend that support to renaming open files. Also, implement the extposix-rename@openssh.org extension, and some other minor refactoring.
341david-sarah@jacaranda.org**20100522035836
342 Ignore-this: 8ef93a828e927cce2c23b805250b81a4
343]
344[SFTP: relax pyasn1 version dependency to >= 0.0.8a.
345david-sarah@jacaranda.org**20100520181437
346 Ignore-this: 2c7b3dee7b7e14ba121d3118193a386a
347]
348[SFTP tests: fix test_openDirectory_and_attrs that was failing in timezones west of UTC.
349david-sarah@jacaranda.org**20100520181027
350 Ignore-this: 9beaf602beef437c11c7e97f54ce2599
351]
352[SFTP: allow getAttrs to succeed on a file that has been opened for creation but not yet uploaded or linked (part of #1050).
353david-sarah@jacaranda.org**20100520035613
354 Ignore-this: 2f59107d60d5476edac19361ccf6cf94
355]
356[SFTP: improve logging so that results of requests are (usually) logged.
357david-sarah@jacaranda.org**20100520003652
358 Ignore-this: 3f59eeee374a3eba71db9be31d5a95
359]
360[SFTP: add tests for more combinations of open flags.
361david-sarah@jacaranda.org**20100519053933
362 Ignore-this: b97ee351b1e8ecfecabac70698060665
363]
364[SFTP: allow FXF_WRITE | FXF_TRUNC (#1050).
365david-sarah@jacaranda.org**20100519043240
366 Ignore-this: bd70009f11d07ac6e9fd0d1e3fa87a9b
367]
368[SFTP: remove another case where we were logging data.
369david-sarah@jacaranda.org**20100519012713
370 Ignore-this: 83115daf3a90278fed0e3fc267607584
371]
372[SFTP: avoid logging all data passed to callbacks.
373david-sarah@jacaranda.org**20100519000651
374 Ignore-this: ade6d69a473ada50acef6389fc7fdf69
375]
376[SFTP: fixes related to reporting of permissions (needed for sshfs).
377david-sarah@jacaranda.org**20100518054521
378 Ignore-this: c51f8a5d0dc76b80d33ffef9b0541325
379]
380[SFTP: change error code returned for ExistingChildError to FX_FAILURE (fixes gvfs with some picky programs such as gedit).
381david-sarah@jacaranda.org**20100518004205
382 Ignore-this: c194c2c9aaf3edba7af84b7413cec375
383]
384[SFTP: fixed bugs that caused hangs during write (#1037).
385david-sarah@jacaranda.org**20100517044228
386 Ignore-this: b8b95e82c4057367388a1e6baada993b
387]
388[SFTP: work around a probable bug in twisted.conch.ssh.session:loseConnection(). Also some minor error handling cleanups.
389david-sarah@jacaranda.org**20100517012606
390 Ignore-this: 5d3da7c4219cb0c14547e7fd70c74204
391]
392[SFTP: add pyasn1 as dependency, needed if we are using Twisted >= 9.0.0.
393david-sarah@jacaranda.org**20100516193710
394 Ignore-this: 76fd92e8a950bb1983a90a09e89c54d3
395]
396[SFTP: Support statvfs extensions, avoid logging actual data, and decline shell sessions politely.
397david-sarah@jacaranda.org**20100516154347
398 Ignore-this: 9d05d23ba77693c03a61accd348ccbe5
399]
400[SFTP: fix error in SFTPUserHandler arguments introduced by execCommand patch.
401david-sarah@jacaranda.org**20100516014045
402 Ignore-this: f5ee494dc6ad6aa536cc8144bd2e3d19
403]
404[SFTP: implement execCommand to interoperate with clients that issue a 'df -P -k /' command. Also eliminate use of Zope adaptation.
405david-sarah@jacaranda.org**20100516012754
406 Ignore-this: 2d0ed28b759f67f83875b1eaf5778992
407]
408[sftpd.py: 'log.OPERATIONAL' should be just 'OPERATIONAL'.
409david-sarah@jacaranda.org**20100515155533
410 Ignore-this: f2347cb3301bbccc086356f6edc685
411]
412[Attempt to fix #1040 by making SFTPUser implement ISession.
413david-sarah@jacaranda.org**20100515005719
414 Ignore-this: b3baaf088ba567e861e61e347195dfc4
415]
416[Eliminate Windows newlines from sftpd.py.
417david-sarah@jacaranda.org**20100515005656
418 Ignore-this: cd54fd25beb957887514ae76e08c277
419]
420[Update SFTP implementation and tests: fix #1038 and switch to foolscap logging; also some code reorganization.
421david-sarah@jacaranda.org**20100514043113
422 Ignore-this: 262f76d953dcd4317210789f2b2bf5da
423]
424[Change shouldFail to avoid Unicode errors when converting Failure to str
425david-sarah@jacaranda.org**20100512060754
426 Ignore-this: 86ed419d332d9c33090aae2cde1dc5df
427]
428[Tests for new SFTP implementation
429david-sarah@jacaranda.org**20100512060552
430 Ignore-this: 20308d4a59b3ebc868aad55ae0a7a981
431]
432[New SFTP implementation: mutable files, read/write support, streaming download, Unicode filenames, and more
433david-sarah@jacaranda.org**20100512055407
434 Ignore-this: 906f51c48d974ba9cf360c27845c55eb
435]
436[allmydata.org -> tahoe-lafs.org in __init__.py
437david-sarah@jacaranda.org**20100603063530
438 Ignore-this: f7d82331d5b4a3c4c0938023409335af
439]
440[small change to CREDITS
441david-sarah@jacaranda.org**20100603062421
442 Ignore-this: 2909cdbedc19da5573dec810fc23243
443]
444[Resolve conflict in patch to change imports to absolute.
445david-sarah@jacaranda.org**20100603054608
446 Ignore-this: 15aa1caa88e688ffa6dc53bed7dcca7d
447]
448[Minor documentation tweaks.
449david-sarah@jacaranda.org**20100603054458
450 Ignore-this: e30ae407b0039dfa5b341d8f88e7f959
451]
452[title_rename_xhtml.dpatch.txt
453freestorm77@gmail.com**20100529172542
454 Ignore-this: d2846afcc9ea72ac443a62ecc23d121b
455 
456 - Renamed xhtml Title from "Allmydata - Tahoe" to "Tahoe-LAFS"
457 - Renamed Tahoe to Tahoe-LAFS in page content
458 - Changed Tahoe-LAFS home page link to http://tahoe-lafs.org (added target="blank")
459 - Deleted commented css script in info.xhtml
460 
461 
462]
463[tests: refactor test_web.py to have less duplication of literal caps-from-the-future
464zooko@zooko.com**20100519055146
465 Ignore-this: 49e5412e6cc4566ca67f069ffd850af6
466 This is a prelude to a patch which will add tests of caps from the future which have non-ascii chars in them.
467]
468[doc_reformat_stats.txt
469freestorm77@gmail.com**20100424114615
470 Ignore-this: af315db5f7e3a17219ff8fb39bcfcd60
471 
472 
473    - Added heading format begining and ending by "=="
474    - Added Index
475    - Added Title
476           
477    Note: No change are made in paragraphs content
478 
479 
480 **END OF DESCRIPTION***
481 
482 Place the long patch description above the ***END OF DESCRIPTION*** marker.
483 The first line of this file will be the patch name.
484 
485 
486 This patch contains the following changes:
487 
488 M ./docs/stats.txt -2 +2
489]
490[doc_reformat_performance.txt
491freestorm77@gmail.com**20100424114444
492 Ignore-this: 55295ff5cd8a5b67034eb661a5b0699d
493 
494    - Added heading format begining and ending by "=="
495    - Added Index
496    - Added Title
497         
498    Note: No change are made in paragraphs content
499 
500 
501]
502[doc_refomat_logging.txt
503freestorm77@gmail.com**20100424114316
504 Ignore-this: 593f0f9914516bf1924dfa6eee74e35f
505 
506    - Added heading format begining and ending by "=="
507    - Added Index
508    - Added Title
509         
510    Note: No change are made in paragraphs content
511 
512]
513[doc_reformat_known_issues.txt
514freestorm77@gmail.com**20100424114118
515 Ignore-this: 9577c3965d77b7ac18698988cfa06049
516 
517     - Added heading format begining and ending by "=="
518     - Added Index
519     - Added Title
520           
521     Note: No change are made in paragraphs content
522   
523 
524]
525[doc_reformat_helper.txt
526freestorm77@gmail.com**20100424120649
527 Ignore-this: de2080d6152ae813b20514b9908e37fb
528 
529 
530    - Added heading format begining and ending by "=="
531    - Added Index
532    - Added Title
533             
534    Note: No change are made in paragraphs content
535 
536]
537[doc_reformat_garbage-collection.txt
538freestorm77@gmail.com**20100424120830
539 Ignore-this: aad3e4c99670871b66467062483c977d
540 
541 
542    - Added heading format begining and ending by "=="
543    - Added Index
544    - Added Title
545             
546    Note: No change are made in paragraphs content
547 
548]
549[doc_reformat_FTP-and-SFTP.txt
550freestorm77@gmail.com**20100424121334
551 Ignore-this: 3736b3d8f9a542a3521fbb566d44c7cf
552 
553 
554    - Added heading format begining and ending by "=="
555    - Added Index
556    - Added Title
557           
558    Note: No change are made in paragraphs content
559 
560]
561[doc_reformat_debian.txt
562freestorm77@gmail.com**20100424120537
563 Ignore-this: 45fe4355bb869e55e683405070f47eff
564 
565 
566    - Added heading format begining and ending by "=="
567    - Added Index
568    - Added Title
569             
570    Note: No change are made in paragraphs content
571 
572]
573[doc_reformat_configuration.txt
574freestorm77@gmail.com**20100424104903
575 Ignore-this: 4fbabc51b8122fec69ce5ad1672e79f2
576 
577 
578 - Added heading format begining and ending by "=="
579 - Added Index
580 - Added Title
581 
582 Note: No change are made in paragraphs content
583 
584]
585[doc_reformat_CLI.txt
586freestorm77@gmail.com**20100424121512
587 Ignore-this: 2d3a59326810adcb20ea232cea405645
588 
589      - Added heading format begining and ending by "=="
590      - Added Index
591      - Added Title
592           
593      Note: No change are made in paragraphs content
594 
595]
596[doc_reformat_backupdb.txt
597freestorm77@gmail.com**20100424120416
598 Ignore-this: fed696530e9d2215b6f5058acbedc3ab
599 
600 
601    - Added heading format begining and ending by "=="
602    - Added Index
603    - Added Title
604             
605    Note: No change are made in paragraphs content
606 
607]
608[doc_reformat_architecture.txt
609freestorm77@gmail.com**20100424120133
610 Ignore-this: 6e2cab4635080369f2b8cadf7b2f58e
611 
612 
613     - Added heading format begining and ending by "=="
614     - Added Index
615     - Added Title
616             
617     Note: No change are made in paragraphs content
618 
619 
620]
621[Correct harmless indentation errors found by pylint
622david-sarah@jacaranda.org**20100226052151
623 Ignore-this: 41335bce830700b18b80b6e00b45aef5
624]
625[Change relative imports to absolute
626david-sarah@jacaranda.org**20100226071433
627 Ignore-this: 32e6ce1a86e2ffaaba1a37d9a1a5de0e
628]
629[Document reason for the trialcoverage version requirement being 0.3.3.
630david-sarah@jacaranda.org**20100525004444
631 Ignore-this: 2f9f1df6882838b000c063068f258aec
632]
633[Downgrade version requirement for trialcoverage to 0.3.3 (from 0.3.10), to avoid needing to compile coveragepy on Windows.
634david-sarah@jacaranda.org**20100524233707
635 Ignore-this: 9c397a374c8b8017e2244b8a686432a8
636]
637[Suppress deprecation warning for twisted.web.error.NoResource when using Twisted >= 9.0.0.
638david-sarah@jacaranda.org**20100516205625
639 Ignore-this: 2361a3023cd3db86bde5e1af759ed01
640]
641[docs: CREDITS for Jeremy Visser
642zooko@zooko.com**20100524081829
643 Ignore-this: d7c1465fd8d4e25b8d46d38a1793465b
644]
645[test: show stdout and stderr in case of non-zero exit code from "tahoe" command
646zooko@zooko.com**20100524073348
647 Ignore-this: 695e81cd6683f4520229d108846cd551
648]
649[setup: upgrade bundled zetuptoolz to zetuptoolz-0.6c15dev and make it unpacked and directly loaded by setup.py
650zooko@zooko.com**20100523205228
651 Ignore-this: 24fb32aaee3904115a93d1762f132c7
652 Also fix the relevant "make clean" target behavior.
653]
654[setup: remove bundled zipfile egg of setuptools
655zooko@zooko.com**20100523205120
656 Ignore-this: c68b5f2635bb93d1c1fa7b613a026f9e
657 We're about to replace it with bundled unpacked source code of setuptools, which is much nicer for debugging and evolving under revision control.
658]
659[setup: remove bundled copy of setuptools_trial-0.5.2.tar
660zooko@zooko.com**20100522221539
661 Ignore-this: 140f90eb8fb751a509029c4b24afe647
662 Hopefully it will get installed automatically as needed and we won't bundle it anymore.
663]
664[setup: remove bundled setuptools_darcs-1.2.8.tar
665zooko@zooko.com**20100522015333
666 Ignore-this: 378b1964b513ae7fe22bae2d3478285d
667 This version of setuptools_darcs had a bug when used on Windows which has been fixed in setuptools_darcs-1.2.9. Hopefully we will not need to bundle a copy of setuptools_darcs-1.2.9 in with Tahoe-LAFS and can instead rely on it to be downloaded from PyPI or bundled in the "tahoe deps" separate tarball.
668]
669[tests: fix pyflakes warnings in bench_dirnode.py
670zooko@zooko.com**20100521202511
671 Ignore-this: f23d55b4ed05e52865032c65a15753c4
672]
673[setup: if the string '--reporter=bwverbose-coverage' appears on sys.argv then you need trialcoverage
674zooko@zooko.com**20100521122226
675 Ignore-this: e760c45dcfb5a43c1dc1e8a27346bdc2
676]
677[tests: don't let bench_dirnode.py do stuff and have side-effects at import time (unless __name__ == '__main__')
678zooko@zooko.com**20100521122052
679 Ignore-this: 96144a412250d9bbb5fccbf83b8753b8
680]
681[tests: increase timeout to give François's ARM buildslave a chance to complete the tests
682zooko@zooko.com**20100520134526
683 Ignore-this: 3dd399fdc8b91149c82b52f955b50833
684]
685[run_trial.darcspath
686freestorm77@gmail.com**20100510232829
687 Ignore-this: 5ebb4df74e9ea8a4bdb22b65373d1ff2
688]
689[docs: line-wrap README.txt
690zooko@zooko.com**20100518174240
691 Ignore-this: 670a02d360df7de51ebdcf4fae752577
692]
693[Hush pyflakes warnings
694Kevan Carstensen <kevan@isnotajoke.com>**20100515184344
695 Ignore-this: fd602c3bba115057770715c36a87b400
696]
697[setup: new improved misc/show-tool-versions.py
698zooko@zooko.com**20100516050122
699 Ignore-this: ce9b1de1b35b07d733e6cf823b66335a
700]
701[Improve code coverage of the Tahoe2PeerSelector tests.
702Kevan Carstensen <kevan@isnotajoke.com>**20100515032913
703 Ignore-this: 793151b63ffa65fdae6915db22d9924a
704]
705[Remove a comment that no longer makes sense.
706Kevan Carstensen <kevan@isnotajoke.com>**20100514203516
707 Ignore-this: 956983c7e7c7e4477215494dfce8f058
708]
709[docs: update docs/architecture.txt to more fully and correctly explain the upload procedure
710zooko@zooko.com**20100514043458
711 Ignore-this: 538b6ea256a49fed837500342092efa3
712]
713[Fix up the behavior of #778, per reviewers' comments
714Kevan Carstensen <kevan@isnotajoke.com>**20100514004917
715 Ignore-this: 9c20b60716125278b5456e8feb396bff
716 
717   - Make some important utility functions clearer and more thoroughly
718     documented.
719   - Assert in upload.servers_of_happiness that the buckets attributes
720     of PeerTrackers passed to it are mutually disjoint.
721   - Get rid of some silly non-Pythonisms that I didn't see when I first
722     wrote these patches.
723   - Make sure that should_add_server returns true when queried about a
724     shnum that it doesn't know about yet.
725   - Change Tahoe2PeerSelector.preexisting_shares to map a shareid to a set
726     of peerids, alter dependencies to deal with that.
727   - Remove upload.should_add_servers, because it is no longer necessary
728   - Move upload.shares_of_happiness and upload.shares_by_server to a utility
729     file.
730   - Change some points in Tahoe2PeerSelector.
731   - Compute servers_of_happiness using a bipartite matching algorithm that
732     we know is optimal instead of an ad-hoc greedy algorithm that isn't.
733   - Change servers_of_happiness to just take a sharemap as an argument,
734     change its callers to merge existing_shares and used_peers before
735     calling it.
736   - Change an error message in the encoder to be more appropriate for
737     servers of happiness.
738   - Clarify the wording of an error message in immutable/upload.py
739   - Refactor a happiness failure message to happinessutil.py, and make
740     immutable/upload.py and immutable/encode.py use it.
741   - Move the word "only" as far to the right as possible in failure
742     messages.
743   - Use a better definition of progress during peer selection.
744   - Do read-only peer share detection queries in parallel, not sequentially.
745   - Clean up logging semantics; print the query statistics whenever an
746     upload is unsuccessful, not just in one case.
747 
748]
749[Alter the error message when an upload fails, per some comments in #778.
750Kevan Carstensen <kevan@isnotajoke.com>**20091230210344
751 Ignore-this: ba97422b2f9737c46abeb828727beb1
752 
753 When I first implemented #778, I just altered the error messages to refer to
754 servers where they referred to shares. The resulting error messages weren't
755 very good. These are a bit better.
756]
757[Change "UploadHappinessError" to "UploadUnhappinessError"
758Kevan Carstensen <kevan@isnotajoke.com>**20091205043037
759 Ignore-this: 236b64ab19836854af4993bb5c1b221a
760]
761[Alter the error message returned when peer selection fails
762Kevan Carstensen <kevan@isnotajoke.com>**20091123002405
763 Ignore-this: b2a7dc163edcab8d9613bfd6907e5166
764 
765 The Tahoe2PeerSelector returned either NoSharesError or NotEnoughSharesError
766 for a variety of error conditions that weren't informatively described by them.
767 This patch creates a new error, UploadHappinessError, replaces uses of
768 NoSharesError and NotEnoughSharesError with it, and alters the error message
769 raised with the errors to be more in line with the new servers_of_happiness
770 behavior. See ticket #834 for more information.
771]
772[Eliminate overcounting iof servers_of_happiness in Tahoe2PeerSelector; also reorganize some things.
773Kevan Carstensen <kevan@isnotajoke.com>**20091118014542
774 Ignore-this: a6cb032cbff74f4f9d4238faebd99868
775]
776[Change stray "shares_of_happiness" to "servers_of_happiness"
777Kevan Carstensen <kevan@isnotajoke.com>**20091116212459
778 Ignore-this: 1c971ba8c3c4d2e7ba9f020577b28b73
779]
780[Alter Tahoe2PeerSelector to make sure that it recognizes existing shares on readonly servers, fixing an issue in #778
781Kevan Carstensen <kevan@isnotajoke.com>**20091116192805
782 Ignore-this: 15289f4d709e03851ed0587b286fd955
783]
784[Alter 'immutable/encode.py' and 'immutable/upload.py' to use servers_of_happiness instead of shares_of_happiness.
785Kevan Carstensen <kevan@isnotajoke.com>**20091104111222
786 Ignore-this: abb3283314820a8bbf9b5d0cbfbb57c8
787]
788[Alter the signature of set_shareholders in IEncoder to add a 'servermap' parameter, which gives IEncoders enough information to perform a sane check for servers_of_happiness.
789Kevan Carstensen <kevan@isnotajoke.com>**20091104033241
790 Ignore-this: b3a6649a8ac66431beca1026a31fed94
791]
792[Alter CiphertextDownloader to work with servers_of_happiness
793Kevan Carstensen <kevan@isnotajoke.com>**20090924041932
794 Ignore-this: e81edccf0308c2d3bedbc4cf217da197
795]
796[Revisions of the #778 tests, per reviewers' comments
797Kevan Carstensen <kevan@isnotajoke.com>**20100514012542
798 Ignore-this: 735bbc7f663dce633caeb3b66a53cf6e
799 
800 - Fix comments and confusing naming.
801 - Add tests for the new error messages suggested by David-Sarah
802   and Zooko.
803 - Alter existing tests for new error messages.
804 - Make sure that the tests continue to work with the trunk.
805 - Add a test for a mutual disjointedness assertion that I added to
806   upload.servers_of_happiness.
807 - Fix the comments to correctly reflect read-onlyness
808 - Add a test for an edge case in should_add_server
809 - Add an assertion to make sure that share redistribution works as it
810   should
811 - Alter tests to work with revised servers_of_happiness semantics
812 - Remove tests for should_add_server, since that function no longer exists.
813 - Alter tests to know about merge_peers, and to use it before calling
814   servers_of_happiness.
815 - Add tests for merge_peers.
816 - Add Zooko's puzzles to the tests.
817 - Edit encoding tests to expect the new kind of failure message.
818 - Edit tests to expect error messages with the word "only" moved as far
819   to the right as possible.
820 - Extended and cleaned up some helper functions.
821 - Changed some tests to call more appropriate helper functions.
822 - Added a test for the failing redistribution algorithm
823 - Added a test for the progress message
824 - Added a test for the upper bound on readonly peer share discovery.
825 
826]
827[Alter various unit tests to work with the new happy behavior
828Kevan Carstensen <kevan@isnotajoke.com>**20100107181325
829 Ignore-this: 132032bbf865e63a079f869b663be34a
830]
831[Replace "UploadHappinessError" with "UploadUnhappinessError" in tests.
832Kevan Carstensen <kevan@isnotajoke.com>**20091205043453
833 Ignore-this: 83f4bc50c697d21b5f4e2a4cd91862ca
834]
835[Add tests for the behavior described in #834.
836Kevan Carstensen <kevan@isnotajoke.com>**20091123012008
837 Ignore-this: d8e0aa0f3f7965ce9b5cea843c6d6f9f
838]
839[Re-work 'test_upload.py' to be more readable; add more tests for #778
840Kevan Carstensen <kevan@isnotajoke.com>**20091116192334
841 Ignore-this: 7e8565f92fe51dece5ae28daf442d659
842]
843[Test Tahoe2PeerSelector to make sure that it recognizeses existing shares on readonly servers
844Kevan Carstensen <kevan@isnotajoke.com>**20091109003735
845 Ignore-this: 12f9b4cff5752fca7ed32a6ebcff6446
846]
847[Add more tests for comment:53 in ticket #778
848Kevan Carstensen <kevan@isnotajoke.com>**20091104112849
849 Ignore-this: 3bb2edd299a944cc9586e14d5d83ec8c
850]
851[Add a test for upload.shares_by_server
852Kevan Carstensen <kevan@isnotajoke.com>**20091104111324
853 Ignore-this: f9802e82d6982a93e00f92e0b276f018
854]
855[Minor tweak to an existing test -- make the first server read-write, instead of read-only
856Kevan Carstensen <kevan@isnotajoke.com>**20091104034232
857 Ignore-this: a951a46c93f7f58dd44d93d8623b2aee
858]
859[Alter tests to use the new form of set_shareholders
860Kevan Carstensen <kevan@isnotajoke.com>**20091104033602
861 Ignore-this: 3deac11fc831618d11441317463ef830
862]
863[Refactor some behavior into a mixin, and add tests for the behavior described in #778
864"Kevan Carstensen" <kevan@isnotajoke.com>**20091030091908
865 Ignore-this: a6f9797057ca135579b249af3b2b66ac
866]
867[Alter NoNetworkGrid to allow the creation of readonly servers for testing purposes.
868Kevan Carstensen <kevan@isnotajoke.com>**20091018013013
869 Ignore-this: e12cd7c4ddeb65305c5a7e08df57c754
870]
871[Update 'docs/architecture.txt' to reflect readonly share discovery
872kevan@isnotajoke.com**20100514003852
873 Ignore-this: 7ead71b34df3b1ecfdcfd3cb2882e4f9
874]
875[Alter the wording in docs/architecture.txt to more accurately describe the servers_of_happiness behavior.
876Kevan Carstensen <kevan@isnotajoke.com>**20100428002455
877 Ignore-this: 6eff7fa756858a1c6f73728d989544cc
878]
879[Alter wording in 'interfaces.py' to be correct wrt #778
880"Kevan Carstensen" <kevan@isnotajoke.com>**20091205034005
881 Ignore-this: c9913c700ac14e7a63569458b06980e0
882]
883[Update 'docs/configuration.txt' to reflect the servers_of_happiness behavior.
884Kevan Carstensen <kevan@isnotajoke.com>**20091205033813
885 Ignore-this: 5e1cb171f8239bfb5b565d73c75ac2b8
886]
887[Clarify quickstart instructions for installing pywin32
888david-sarah@jacaranda.org**20100511180300
889 Ignore-this: d4668359673600d2acbc7cd8dd44b93c
890]
891[web: add a simple test that you can load directory.xhtml
892zooko@zooko.com**20100510063729
893 Ignore-this: e49b25fa3c67b3c7a56c8b1ae01bb463
894]
895[setup: fix typos in misc/show-tool-versions.py
896zooko@zooko.com**20100510063615
897 Ignore-this: 2181b1303a0e288e7a9ebd4c4855628
898]
899[setup: show code-coverage tool versions in show-tools-versions.py
900zooko@zooko.com**20100510062955
901 Ignore-this: 4b4c68eb3780b762c8dbbd22b39df7cf
902]
903[docs: update README, mv it to README.txt, update setup.py
904zooko@zooko.com**20100504094340
905 Ignore-this: 40e28ca36c299ea1fd12d3b91e5b421c
906]
907[Dependency on Windmill test framework is not needed yet.
908david-sarah@jacaranda.org**20100504161043
909 Ignore-this: be088712bec650d4ef24766c0026ebc8
910]
911[tests: pass z to tar so that BSD tar will know to ungzip
912zooko@zooko.com**20100504090628
913 Ignore-this: 1339e493f255e8fc0b01b70478f23a09
914]
915[setup: update comments and URLs in setup.cfg
916zooko@zooko.com**20100504061653
917 Ignore-this: f97692807c74bcab56d33100c899f829
918]
919[setup: reorder and extend the show-tool-versions script, the better to glean information about our new buildslaves
920zooko@zooko.com**20100504045643
921 Ignore-this: 836084b56b8d4ee8f1de1f4efb706d36
922]
923[CLI: Support for https url in option --node-url
924Francois Deppierraz <francois@ctrlaltdel.ch>**20100430185609
925 Ignore-this: 1717176b4d27c877e6bc67a944d9bf34
926 
927 This patch modifies the regular expression used for verifying of '--node-url'
928 parameter.  Support for accessing a Tahoe gateway over HTTPS was already
929 present, thanks to Python's urllib.
930 
931]
932[backupdb.did_create_directory: use REPLACE INTO, not INSERT INTO + ignore error
933Brian Warner <warner@lothar.com>**20100428050803
934 Ignore-this: 1fca7b8f364a21ae413be8767161e32f
935 
936 This handles the case where we upload a new tahoe directory for a
937 previously-processed local directory, possibly creating a new dircap (if the
938 metadata had changed). Now we replace the old dirhash->dircap record. The
939 previous behavior left the old record in place (with the old dircap and
940 timestamps), so we'd never stop creating new directories and never converge
941 on a null backup.
942]
943["tahoe webopen": add --info flag, to get ?t=info
944Brian Warner <warner@lothar.com>**20100424233003
945 Ignore-this: 126b0bb6db340fabacb623d295eb45fa
946 
947 Also fix some trailing whitespace.
948]
949[docs: install.html http-equiv refresh to quickstart.html
950zooko@zooko.com**20100421165708
951 Ignore-this: 52b4b619f9dde5886ae2cd7f1f3b734b
952]
953[docs: install.html -> quickstart.html
954zooko@zooko.com**20100421155757
955 Ignore-this: 6084e203909306bed93efb09d0e6181d
956 It is not called "installing" because that implies that it is going to change the configuration of your operating system. It is not called "building" because that implies that you need developer tools like a compiler. Also I added a stern warning against looking at the "InstallDetails" wiki page, which I have renamed to "AdvancedInstall".
957]
958[Fix another typo in tahoe_storagespace munin plugin
959david-sarah@jacaranda.org**20100416220935
960 Ignore-this: ad1f7aa66b554174f91dfb2b7a3ea5f3
961]
962[Add dependency on windmill >= 1.3
963david-sarah@jacaranda.org**20100416190404
964 Ignore-this: 4437a7a464e92d6c9012926b18676211
965]
966[licensing: phrase the OpenSSL-exemption in the vocabulary of copyright instead of computer technology, and replicate the exemption from the GPL to the TGPPL
967zooko@zooko.com**20100414232521
968 Ignore-this: a5494b2f582a295544c6cad3f245e91
969]
970[munin-tahoe_storagespace
971freestorm77@gmail.com**20100221203626
972 Ignore-this: 14d6d6a587afe1f8883152bf2e46b4aa
973 
974 Plugin configuration rename
975 
976]
977[setup: add licensing declaration for setuptools (noticed by the FSF compliance folks)
978zooko@zooko.com**20100309184415
979 Ignore-this: 2dfa7d812d65fec7c72ddbf0de609ccb
980]
981[setup: fix error in licensing declaration from Shawn Willden, as noted by the FSF compliance division
982zooko@zooko.com**20100309163736
983 Ignore-this: c0623d27e469799d86cabf67921a13f8
984]
985[CREDITS to Jacob Appelbaum
986zooko@zooko.com**20100304015616
987 Ignore-this: 70db493abbc23968fcc8db93f386ea54
988]
989[desert-island-build-with-proper-versions
990jacob@appelbaum.net**20100304013858]
991[docs: a few small edits to try to guide newcomers through the docs
992zooko@zooko.com**20100303231902
993 Ignore-this: a6aab44f5bf5ad97ea73e6976bc4042d
994 These edits were suggested by my watching over Jake Appelbaum's shoulder as he completely ignored/skipped/missed install.html and also as he decided that debian.txt wouldn't help him with basic installation. Then I threw in a few docs edits that have been sitting around in my sandbox asking to be committed for months.
995]
996[TAG allmydata-tahoe-1.6.1
997david-sarah@jacaranda.org**20100228062314
998 Ignore-this: eb5f03ada8ea953ee7780e7fe068539
999]
1000Patch bundle hash:
10015e41d10f412437c02775d228e8d34a62d31061d1