Ticket #1075: NEWS.dpatch

File NEWS.dpatch, 49.6 KB (added by francois, at 2010-06-09T09:23:01Z)
Line 
1Wed Jun  9 11:11:20 CEST 2010  francois@ctrlaltdel.ch
2  * docs: Update NEWS file with new features and bugfixes in 1.7.0
3
4New patches:
5
6[docs: Update NEWS file with new features and bugfixes in 1.7.0
7francois@ctrlaltdel.ch**20100609091120
8 Ignore-this: 8c1014e4469ef530e5ff48d7d6ae71c5
9] {
10hunk ./NEWS 3
11 User visible changes in Tahoe-LAFS.  -*- outline -*-
12 
13-* Release 1.7.0
14+* Release 1.7.0-beta (2010-06-09)
15 
16hunk ./NEWS 5
17-** Bugfixes
18+** New Features
19+
20+*** SFTP support
21 
22hunk ./NEWS 9
23-*** Unicode filenames handling
24+Your Tahoe-LAFS gateway now acts like a full-fledged SFTP server.  It has been
25+tested with sshfs to provide a virtual filesystem in Linux.  Many users have
26+asked for this feature.  We hope that it serves them well! See the
27+docs/frontends/FTP-and-SFTP.txt document to get started.
28 
29hunk ./NEWS 14
30-Tahoe CLI commands working on local files, for instance 'tahoe cp' or 'tahoe
31-backup', have been improved to correctly handle filenames containing non-ASCII
32-characters.
33+*** support for non-ASCII character encodings
34 
35hunk ./NEWS 16
36-In the case where Tahoe encounters a filename which cannot be decoded using the
37-system encoding, an error will be returned and the operation will fail.  Under
38-Linux, this typically happens when the filesystem contains filenames encoded
39-with another encoding, for instance latin1, than the system locale, for
40-instance UTF-8.  In such case, you'll need to fix your system with tools such
41-as 'convmv' before using Tahoe CLI.
42+Tahoe-LAFS now correctly handles filenames containing non-ASCII characters on
43+all supported platforms:
44+ - when reading files in from the local filesystem (such as when you run "tahoe
45+   backup" to back up your local files to a Tahoe-LAFS grid);
46+ - when writing files out to the local filesystem (such as when you run "tahoe
47+   cp -r" to recursively copy files out of a Tahoe-LAFS grid);
48+ - when displaying filenames to the terminal (such as when you run "tahoe ls"),
49+   subject to limitations of the terminal and locale;
50+ - when parsing command-line arguments, except on Windows.
51 
52hunk ./NEWS 26
53-All CLI commands have been improved to support non-ASCII parameters such as
54-filenames and aliases on all supported Operating Systems.
55+*** Servers of Happiness
56+
57+Tahoe-LAFS now measures a file during upload to see how well distributed it is
58+across multiple servers.  It aborts the upload if the pieces of the file are
59+not sufficiently well-distributed.  This behavior is controlled by a
60+configuration parameter called "servers of happiness".  With default settings
61+Tahoe-LAFS generates 10 shares for each file, such that any 3 of those shares
62+are sufficient to recover the file.  The default value of "servers of
63+happiness" is 7, which means that Tahoe-LAFS will guarantee that there are at
64+least 7 servers holding some of the shares, such that any 3 of those servers
65+can completely recover your file.  The new upload code also distributes the
66+shares better than the previous version in some cases and takes better
67+advantage of pre-existing shares (when a file has already been previously
68+uploaded).  See the docs/architecture.txt document [3] for details.
69+
70+** Bugfixes
71+
72+ - Premature abort of upload if some shares were already present and some
73+   servers fail. (#608)
74+ - python ./setup.py install -- can't create or remove files in install
75+   directory. (#803)
76+ - Network failure => internal TypeError. (#902)
77+ - Install of Tahoe on CentOS 5.4. (#933)
78+ - CLI option --node-url now supports https url. (#1028)
79+ - HTML/CSS template files were not correctly installed under Windows. (#1033)
80+ - MetadataSetter does not enforce restriction on setting "tahoe" subkeys.
81+   (#1034)
82+ - ImportError: No module named setuptools_darcs.setuptools_darcs. (#1054)
83+ - Renamed Title in xhtml files. (#1062)
84+ - Increase Python version dependency to 2.4.4, to avoid a critical CPython
85+   security bug. (#1066)
86+ - Typo correction for the munin plugin tahoe_storagespace. (#968)
87+ - Fix warnings found by pylint. (#973)
88+ - Changing format of some documentation files. (#1027)
89+ - the misc/ directory was tied up. (#1068)
90 
91 ** Removals
92 
93hunk ./NEWS 69
94 
95 ** dependency updates
96 
97- no python-2.4.2 or 2.4.3 (2.4.4 is ok)
98- pycrypto-2.0.1
99- pyasn1-0.0.8a
100- mock
101-
102+the Python version dependency is raised to 2.4.4 in some cases (2.4.3 for
103+  Redhat-based Linux distributions, 2.4.2 for UCS-2 builds)
104+pycrypto-2.0.1
105+pyasn1-0.0.8a
106+mock (only required by unit tests)
107 
108 * Release 1.6.1 (2010-02-27)
109 
110}
111
112Context:
113
114[test_stringutils.py: Fix test failure on CentOS builder, possibly Python 2.4.3-related.
115david-sarah@jacaranda.org**20100609065056
116 Ignore-this: 503b561b213baf1b92ae641f2fdf080a
117] 
118[Fix for Unicode-related test failures on Zooko's OS X 10.6 machine.
119david-sarah@jacaranda.org**20100609055448
120 Ignore-this: 395ad16429e56623edfa74457a121190
121] 
122[docs: update relnote.txt for Tahoe-LAFS v1.7.0β
123zooko@zooko.com**20100609054602
124 Ignore-this: 52e1bf86a91d45315960fb8806b7a479
125] 
126[stringutils.py, sftpd.py: Portability fixes for Python <= 2.5.
127david-sarah@jacaranda.org**20100609013302
128 Ignore-this: 9d9ce476ee1b96796e0f48cc5338f852
129] 
130[setup: move the mock library from install_requires to tests_require (re: #1016)
131zooko@zooko.com**20100609050542
132 Ignore-this: c51a4ff3e19ed630755be752d2233db4
133] 
134[Back out Windows-specific Unicode argument support for v1.7.
135david-sarah@jacaranda.org**20100609000803
136 Ignore-this: b230ffe6fdaf9a0d85dfe745b37b42fb
137] 
138[_auto_deps.py: allow Python 2.4.3 on Redhat-based distributions.
139david-sarah@jacaranda.org**20100609003646
140 Ignore-this: ad3cafdff200caf963024873d0ebff3c
141] 
142[setup: show-tool-versions.py: print out the output from the unix command "locale" and re-arrange encoding data a little bit
143zooko@zooko.com**20100609040714
144 Ignore-this: 69382719b462d13ff940fcd980776004
145] 
146[setup: add zope.interface to the packages described by show-tool-versions.py
147zooko@zooko.com**20100609034915
148 Ignore-this: b5262b2af5c953a5f68a60bd48dcaa75
149] 
150[CREDITS: update François's Description
151zooko@zooko.com**20100608155513
152 Ignore-this: a266b438d25ca2cb28eafff75aa4b2a
153] 
154[CREDITS: jsgf
155zooko@zooko.com**20100608143052
156 Ignore-this: 10abe06d40b88e22a9107d30f1b84810
157] 
158[setup: rename the setuptools_trial .egg that comes bundled in the base dir to not have "-py2.6" in its name, since it works with other versions of python as well
159zooko@zooko.com**20100608041607
160 Ignore-this: 64fe386d2e5fba0ab441116e74dad5a3
161] 
162[setup: rename the darcsver .egg that comes bundled in the base dir to not have "-py2.6" in its name, since it works with other versions of python as well
163zooko@zooko.com**20100608041534
164 Ignore-this: 53f925f160256409cf01b76d2583f83f
165] 
166[SFTP: suppress NoSuchChildError if heisenfile attributes have been updated in setAttrs, in the case where the parent is available.
167david-sarah@jacaranda.org**20100608063753
168 Ignore-this: 8c72a5a9c15934f8fe4594ba3ee50ddd
169] 
170[SFTP: ignore permissions when opening a file (needed for sshfs interoperability).
171david-sarah@jacaranda.org**20100608055700
172 Ignore-this: f87f6a430f629326a324ddd94426c797
173] 
174[test_web.py: fix pyflakes warnings introduced by byterange patch.
175david-sarah@jacaranda.org**20100608042012
176 Ignore-this: a7612724893b51d1154dec4372e0508
177] 
178[Improve HTTP/1.1 byterange handling
179Jeremy Fitzhardinge <jeremy@goop.org>**20100310025913
180 Ignore-this: 6d69e694973d618f0dc65983735cd9be
181 
182 Fix parsing of a Range: header to support:
183  - multiple ranges (parsed, but not returned)
184  - suffix byte ranges ("-2139")
185  - correct handling of incorrectly formatted range headers
186    (correct behaviour is to ignore the header and return the full
187     file)
188  - return appropriate error for ranges outside the file
189 
190 Multiple ranges are parsed, but only the first range is returned.
191 Returning multiple ranges requires using the multipart/byterange
192 content type.
193 
194] 
195[tests: bump up the timeout on these tests; MM's buildslave is sometimes extremely slow on tests, but it will complete them if given enough time. MM is working on making that buildslave more predictable in how long it takes to run tests.
196zooko@zooko.com**20100608033754
197 Ignore-this: 98dc27692c5ace1e4b0650b6680629d7
198] 
199[test_cli.py: remove invalid 'test_listdir_unicode_bad' test.
200david-sarah@jacaranda.org**20100607183730
201 Ignore-this: fadfe87980dc1862f349bfcc21b2145f
202] 
203[check_memory.py: adapt to servers-of-happiness changes.
204david-sarah@jacaranda.org**20100608013528
205 Ignore-this: c6b28411c543d1aea2f148a955f7998
206] 
207[show-tool-versions.py: platform.linux_distribution() is not always available
208david-sarah@jacaranda.org**20100608004523
209 Ignore-this: 793fb4050086723af05d06bed8b1b92a
210] 
211[show-tool-versions.py: show platform.linux_distribution()
212david-sarah@jacaranda.org**20100608003829
213 Ignore-this: 81cb5e5fc6324044f0fc6d82903c8223
214] 
215[Remove the 'tahoe debug consolidate' subcommand.
216david-sarah@jacaranda.org**20100607183757
217 Ignore-this: 4b14daa3ae557cea07d6e119d25dafe9
218] 
219[common_http.py, tahoe_cp.py: Fix an error in calling the superclass constructor in HTTPError and MissingSourceError (introduced by the Unicode fixes).
220david-sarah@jacaranda.org**20100607174714
221 Ignore-this: 1a118d593d81c918a4717c887f033aec
222] 
223[tests: drastically increase timeout of this very time-consuming test in honor of François's ARM box
224zooko@zooko.com**20100607115929
225 Ignore-this: bf1bb52ffb6b5ccae71d4dde14621bc8
226] 
227[setup: update authorship, datestamp, licensing, and add special exceptions to allow combination with Eclipse- and QPL- licensed code
228zooko@zooko.com**20100607062329
229 Ignore-this: 5a1d7b12dfafd61283ea65a245416381
230] 
231[FTP-and-SFTP.txt: minor technical correction to doc for 'no-write' flag.
232david-sarah@jacaranda.org**20100607061600
233 Ignore-this: 66aee0c1b6c00538602d08631225e114
234] 
235[test_stringutils.py: trivial error in exception message for skipped test.
236david-sarah@jacaranda.org**20100607061455
237 Ignore-this: f261a5d4e2b8fe3bcc37e02539ba1ae2
238] 
239[More Unicode test fixes.
240david-sarah@jacaranda.org**20100607053358
241 Ignore-this: 6a271fb77c31f28cb7bdba63b26a2dd2
242] 
243[Unicode fixes for platforms with non-native-Unicode filesystems.
244david-sarah@jacaranda.org**20100607043238
245 Ignore-this: 2134dc1793c4f8e50350bd749c4c98c2
246] 
247[Unicode fixes.
248david-sarah@jacaranda.org**20100607010215
249 Ignore-this: d58727b5cd2ce00e6b6dae3166030138
250] 
251[setup: organize misc/ scripts and tools and remove obsolete ones
252zooko@zooko.com**20100607051618
253 Ignore-this: 161db1158c6b7be8365b0b3dee2e0b28
254 This is for ticket #1068.
255] 
256[quickstart.html: link to snapshots page, sorted with most recent first.
257david-sarah@jacaranda.org**20100606221127
258 Ignore-this: 93ea7e6ee47acc66f6daac9cabffed2d
259] 
260[quickstart.html: We haven't released 1.7beta yet.
261david-sarah@jacaranda.org**20100606220301
262 Ignore-this: 4e18898cfdb08cc3ddd1ff94d43fdda7
263] 
264[setup: loosen the Desert Island test to allow it to check the network for new packages as long as it doesn't actually download any
265zooko@zooko.com**20100606175717
266 Ignore-this: e438a8eb3c1b0e68080711ec6ff93ffa
267 (You can look but don't touch.)
268] 
269[Raise Python version requirement to 2.4.4 for non-UCS-2 builds, to avoid a critical Python security bug.
270david-sarah@jacaranda.org**20100605031713
271 Ignore-this: 2df2b6d620c5d8191c79eefe655059e2
272] 
273[setup: have the buildbots print out locale.getpreferredencoding(), locale.getdefaultlocale(), locale.getlocale(), and os.path.supports_unicode_filenames
274zooko@zooko.com**20100605162932
275 Ignore-this: 85e31e0e0e1364e9215420e272d58116
276 Even though that latter one is completely useless, I'm curious.
277] 
278[unicode tests: fix missing import
279zooko@zooko.com**20100604142630
280 Ignore-this: db437fe8009971882aaea9de05e2bc3
281] 
282[unicode: make test_cli test a non-ascii argument, and make the fallback term encoding be locale.getpreferredencoding()
283zooko@zooko.com**20100604141251
284 Ignore-this: b2bfc07942f69141811e59891842bd8c
285] 
286[unicode: always decode json manifest as utf-8 then encode for stdout
287zooko@zooko.com**20100604084840
288 Ignore-this: ac481692315fae870a0f3562bd7db48e
289 pyflakes pointed out that the exception handler fallback called an un-imported function, showing that the fallback wasn't being exercised.
290 I'm not 100% sure that this patch is right and would appreciate François or someone reviewing it.
291] 
292[fix flakes
293zooko@zooko.com**20100604075845
294 Ignore-this: 3e6a84b78771b0ad519e771a13605f0
295] 
296[fix syntax of assertion handling that isn't portable to older versions of Python
297zooko@zooko.com**20100604075805
298 Ignore-this: 3a12b293aad25883fb17230266eb04ec
299] 
300[test_stringutils.py: Skip test test_listdir_unicode_good if filesystem supports only ASCII filenames
301Francois Deppierraz <francois@ctrlaltdel.ch>**20100521160839
302 Ignore-this: f2ccdbd04c8d9f42f1efb0eb80018257
303] 
304[test_stringutils.py: Skip test_listdir_unicode on mocked platform which cannot store non-ASCII filenames
305Francois Deppierraz <francois@ctrlaltdel.ch>**20100521160559
306 Ignore-this: b93fde736a8904712b506e799250a600
307] 
308[test_stringutils.py: Add a test class for OpenBSD 4.1 with LANG=C
309Francois Deppierraz <francois@ctrlaltdel.ch>**20100521140053
310 Ignore-this: 63f568aec259cef0e807752fc8150b73
311] 
312[test_stringutils.py: Mock the open() call in test_open_unicode
313Francois Deppierraz <francois@ctrlaltdel.ch>**20100521135817
314 Ignore-this: d8be4e56a6eefe7d60f97f01ea20ac67
315 
316 This test ensure that open(a_unicode_string) is used on Unicode platforms
317 (Windows or MacOS X) and that open(a_correctly_encoded_bytestring) on other
318 platforms such as Unix.
319 
320] 
321[test_stringutils.py: Fix a trivial Python 2.4 syntax incompatibility
322Francois Deppierraz <francois@ctrlaltdel.ch>**20100521093345
323 Ignore-this: 9297e3d14a0dd37d0c1a4c6954fd59d3
324] 
325[test_cli.py: Fix tests when sys.stdout.encoding=None and refactor this code into functions
326Francois Deppierraz <francois@ctrlaltdel.ch>**20100520084447
327 Ignore-this: cf2286e225aaa4d7b1927c78c901477f
328] 
329[Fix handling of correctly encoded unicode filenames (#534)
330Francois Deppierraz <francois@ctrlaltdel.ch>**20100520004356
331 Ignore-this: 8a3a7df214a855f5a12dc0eeab6f2e39
332 
333 Tahoe CLI commands working on local files, for instance 'tahoe cp' or 'tahoe
334 backup', have been improved to correctly handle filenames containing non-ASCII
335 characters.
336   
337 In the case where Tahoe encounters a filename which cannot be decoded using the
338 system encoding, an error will be returned and the operation will fail.  Under
339 Linux, this typically happens when the filesystem contains filenames encoded
340 with another encoding, for instance latin1, than the system locale, for
341 instance UTF-8.  In such case, you'll need to fix your system with tools such
342 as 'convmv' before using Tahoe CLI.
343   
344 All CLI commands have been improved to support non-ASCII parameters such as
345 filenames and aliases on all supported Operating Systems except Windows as of
346 now.
347] 
348[stringutils.py: Unicode helper functions + associated tests
349Francois Deppierraz <francois@ctrlaltdel.ch>**20100520004105
350 Ignore-this: 7a73fc31de2fd39d437d6abd278bfa9a
351 
352 This file contains a bunch of helper functions which converts
353 unicode string from and to argv, filenames and stdout.
354] 
355[Add dependency on Michael Foord's mock library
356Francois Deppierraz <francois@ctrlaltdel.ch>**20100519233325
357 Ignore-this: 9bb01bf1e4780f6b98ed394c3b772a80
358] 
359[Resolve merge conflict for sftpd.py
360david-sarah@jacaranda.org**20100603182537
361 Ignore-this: ba8b543e51312ac949798eb8f5bd9d9c
362] 
363[SFTP: possible fix for metadata times being shown as the epoch.
364david-sarah@jacaranda.org**20100602234514
365 Ignore-this: bdd7dfccf34eff818ff88aa4f3d28790
366] 
367[SFTP: further improvements to test coverage.
368david-sarah@jacaranda.org**20100602234422
369 Ignore-this: 87eeee567e8d7562659442ea491e187c
370] 
371[SFTP: improve test coverage. Also make creating a directory fail when permissions are read-only (rather than ignoring the permissions).
372david-sarah@jacaranda.org**20100602041934
373 Ignore-this: a5e9d9081677bc7f3ddb18ca7a1f531f
374] 
375[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.
376david-sarah@jacaranda.org**20100602032641
377 Ignore-this: 48817b54cd63f5422cb88214c053b03b
378] 
379[SFTP: fix a bug that caused the temporary files underlying EncryptedTemporaryFiles not to be closed.
380david-sarah@jacaranda.org**20100601055310
381 Ignore-this: 44fee4cfe222b2b1690f4c5e75083a52
382] 
383[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.
384david-sarah@jacaranda.org**20100601051139
385 Ignore-this: eff7c08bd47fd52bfe2b844dabf02558
386] 
387[SFTP: the same bug as in _sync_heisenfiles also occurred in two other places.
388david-sarah@jacaranda.org**20100530060127
389 Ignore-this: 8d137658fc6e4596fa42697476c39aa3
390] 
391[SFTP: another try at fixing the _sync_heisenfiles bug.
392david-sarah@jacaranda.org**20100530055254
393 Ignore-this: c15f76f32a60083a6b7de6ca0e917934
394] 
395[SFTP: fix silly bug in _sync_heisenfiles ('f is not ignore' vs 'not (f is ignore)').
396david-sarah@jacaranda.org**20100530053807
397 Ignore-this: 71c4bc62613bf8fef835886d8eb61c27
398] 
399[SFTP: log when a sync completes.
400david-sarah@jacaranda.org**20100530051840
401 Ignore-this: d99765663ceb673c8a693dfcf88c25ea
402] 
403[SFTP: fix bug in previous logging patch.
404david-sarah@jacaranda.org**20100530050000
405 Ignore-this: 613e4c115f03fe2d04c621b510340817
406] 
407[SFTP: more logging to track down OpenOffice hang.
408david-sarah@jacaranda.org**20100530040809
409 Ignore-this: 6c11f2d1eac9f62e2d0f04f006476a03
410] 
411[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.
412david-sarah@jacaranda.org**20100530025544
413 Ignore-this: 9919dddd446fff64de4031ad51490d1c
414] 
415[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.
416david-sarah@jacaranda.org**20100529050537
417 Ignore-this: 87648afa0dec0d2e73614007de102a16
418] 
419[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.
420david-sarah@jacaranda.org**20100529045253
421 Ignore-this: 2404076b2154ff2659e2b10e0b9e813c
422] 
423[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.
424david-sarah@jacaranda.org**20100525230257
425 Ignore-this: 63245d6d864f8f591c86170864d7c57f
426] 
427[SFTP: handle removing a file while it is open. Also some simplifications of the logout handling.
428david-sarah@jacaranda.org**20100525184210
429 Ignore-this: 660ee80be6ecab783c60452a9da896de
430] 
431[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.
432david-sarah@jacaranda.org**20100525033323
433 Ignore-this: fe2914d3ef7f5194bbeaf3f2dda2ad7d
434] 
435[SFTP: fix problem with posix-rename code returning a Deferred for the renamed filenode, not for the result of the request (an empty string).
436david-sarah@jacaranda.org**20100525020209
437 Ignore-this: 69f7491df2a8f7ea92d999a6d9f0581d
438] 
439[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.
440david-sarah@jacaranda.org**20100524230412
441 Ignore-this: eb1a3fb72492fa2fb19667b6e4300440
442] 
443[SFTP: name of the POSIX rename extension should be 'posix-rename@openssh.com', not 'extposix-rename@openssh.com'.
444david-sarah@jacaranda.org**20100524021156
445 Ignore-this: f90eb1ff9560176635386ee797a3fdc7
446] 
447[SFTP: avoid race condition where .write could be called on an OverwriteableFileConsumer after it had been closed.
448david-sarah@jacaranda.org**20100523233830
449 Ignore-this: 55d381064a15bd64381163341df4d09f
450] 
451[SFTP: log tracebacks for RAISEd exceptions.
452david-sarah@jacaranda.org**20100523221535
453 Ignore-this: c76a7852df099b358642f0631237cc89
454] 
455[SFTP: more logging to investigate behaviour of getAttrs(path).
456david-sarah@jacaranda.org**20100523204236
457 Ignore-this: e58fd35dc9015316e16a9f49f19bb469
458] 
459[SFTP: fix pyflakes warnings; drop 'noisy' versions of eventually_callback and eventually_errback; robustify conversion of exception messages to UTF-8.
460david-sarah@jacaranda.org**20100523140905
461 Ignore-this: 420196fc58646b05bbc9c3732b6eb314
462] 
463[SFTP: fixes and test cases for renaming of open files.
464david-sarah@jacaranda.org**20100523032549
465 Ignore-this: 32e0726be0fc89335f3035157e202c68
466] 
467[SFTP: Increase test_sftp timeout to cater for francois' ARM buildslave.
468david-sarah@jacaranda.org**20100522191639
469 Ignore-this: a5acf9660d304677048ab4dd72908ad8
470] 
471[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.
472david-sarah@jacaranda.org**20100522035836
473 Ignore-this: 8ef93a828e927cce2c23b805250b81a4
474] 
475[SFTP tests: fix test_openDirectory_and_attrs that was failing in timezones west of UTC.
476david-sarah@jacaranda.org**20100520181027
477 Ignore-this: 9beaf602beef437c11c7e97f54ce2599
478] 
479[SFTP: allow getAttrs to succeed on a file that has been opened for creation but not yet uploaded or linked (part of #1050).
480david-sarah@jacaranda.org**20100520035613
481 Ignore-this: 2f59107d60d5476edac19361ccf6cf94
482] 
483[SFTP: improve logging so that results of requests are (usually) logged.
484david-sarah@jacaranda.org**20100520003652
485 Ignore-this: 3f59eeee374a3eba71db9be31d5a95
486] 
487[SFTP: add tests for more combinations of open flags.
488david-sarah@jacaranda.org**20100519053933
489 Ignore-this: b97ee351b1e8ecfecabac70698060665
490] 
491[SFTP: allow FXF_WRITE | FXF_TRUNC (#1050).
492david-sarah@jacaranda.org**20100519043240
493 Ignore-this: bd70009f11d07ac6e9fd0d1e3fa87a9b
494] 
495[SFTP: remove another case where we were logging data.
496david-sarah@jacaranda.org**20100519012713
497 Ignore-this: 83115daf3a90278fed0e3fc267607584
498] 
499[SFTP: avoid logging all data passed to callbacks.
500david-sarah@jacaranda.org**20100519000651
501 Ignore-this: ade6d69a473ada50acef6389fc7fdf69
502] 
503[SFTP: fixes related to reporting of permissions (needed for sshfs).
504david-sarah@jacaranda.org**20100518054521
505 Ignore-this: c51f8a5d0dc76b80d33ffef9b0541325
506] 
507[SFTP: change error code returned for ExistingChildError to FX_FAILURE (fixes gvfs with some picky programs such as gedit).
508david-sarah@jacaranda.org**20100518004205
509 Ignore-this: c194c2c9aaf3edba7af84b7413cec375
510] 
511[SFTP: fixed bugs that caused hangs during write (#1037).
512david-sarah@jacaranda.org**20100517044228
513 Ignore-this: b8b95e82c4057367388a1e6baada993b
514] 
515[SFTP: work around a probable bug in twisted.conch.ssh.session:loseConnection(). Also some minor error handling cleanups.
516david-sarah@jacaranda.org**20100517012606
517 Ignore-this: 5d3da7c4219cb0c14547e7fd70c74204
518] 
519[SFTP: Support statvfs extensions, avoid logging actual data, and decline shell sessions politely.
520david-sarah@jacaranda.org**20100516154347
521 Ignore-this: 9d05d23ba77693c03a61accd348ccbe5
522] 
523[SFTP: fix error in SFTPUserHandler arguments introduced by execCommand patch.
524david-sarah@jacaranda.org**20100516014045
525 Ignore-this: f5ee494dc6ad6aa536cc8144bd2e3d19
526] 
527[SFTP: implement execCommand to interoperate with clients that issue a 'df -P -k /' command. Also eliminate use of Zope adaptation.
528david-sarah@jacaranda.org**20100516012754
529 Ignore-this: 2d0ed28b759f67f83875b1eaf5778992
530] 
531[sftpd.py: 'log.OPERATIONAL' should be just 'OPERATIONAL'.
532david-sarah@jacaranda.org**20100515155533
533 Ignore-this: f2347cb3301bbccc086356f6edc685
534] 
535[Attempt to fix #1040 by making SFTPUser implement ISession.
536david-sarah@jacaranda.org**20100515005719
537 Ignore-this: b3baaf088ba567e861e61e347195dfc4
538] 
539[Eliminate Windows newlines from sftpd.py.
540david-sarah@jacaranda.org**20100515005656
541 Ignore-this: cd54fd25beb957887514ae76e08c277
542] 
543[Update SFTP implementation and tests: fix #1038 and switch to foolscap logging; also some code reorganization.
544david-sarah@jacaranda.org**20100514043113
545 Ignore-this: 262f76d953dcd4317210789f2b2bf5da
546] 
547[Tests for new SFTP implementation
548david-sarah@jacaranda.org**20100512060552
549 Ignore-this: 20308d4a59b3ebc868aad55ae0a7a981
550] 
551[New SFTP implementation: mutable files, read/write support, streaming download, Unicode filenames, and more
552david-sarah@jacaranda.org**20100512055407
553 Ignore-this: 906f51c48d974ba9cf360c27845c55eb
554] 
555[setup: adjust make clean target to ignore our bundled build tools
556zooko@zooko.com**20100604051250
557 Ignore-this: d24d2a3b849000790cfbfab69237454e
558] 
559[setup: bundle a copy of setuptools_trial as an unzipped egg in the base dir of the Tahoe-LAFS source tree
560zooko@zooko.com**20100604044648
561 Ignore-this: a4736e9812b4dab2d5a2bc4bfc5c3b28
562 This is to work-around this Distribute issue:
563 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
564] 
565[setup: bundle a copy of darcsver in unzipped egg form in the root of the Tahoe-LAFS source tree
566zooko@zooko.com**20100604044146
567 Ignore-this: a51a52e82dd3a39225657ffa27decae2
568 This is to work-around this Distribute issue:
569 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
570] 
571[quickstart.html: warn against installing Python at a path containing spaces.
572david-sarah@jacaranda.org**20100604032413
573 Ignore-this: c7118332573abd7762d9a897e650bc6a
574] 
575[setup: undo the previous patch to quote the executable in scripts
576zooko@zooko.com**20100604025204
577 Ignore-this: beda3b951c49d1111478618b8cabe005
578 The problem isn't in the script, it is in the cli.exe script that is built by setuptools. This might be related to
579 http://bugs.python.org/issue6792
580 and
581 http://bugs.python.org/setuptools/issue2
582 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.
583] 
584[setup: put quotes around the path to executable in case it has spaces in it, when building a tahoe.exe for win32
585zooko@zooko.com**20100604020836
586 Ignore-this: 478684843169c94a9c14726fedeeed7d
587] 
588[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.
589david-sarah@jacaranda.org**20100527194529
590 Ignore-this: 6d8114cef4450c52c57639f82852716f
591] 
592[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.
593david-sarah@jacaranda.org**20100603232105
594 Ignore-this: 6e2cc63f42b07e2a3b2d1a857abc50a6
595] 
596[misc/show-tool-versions.py: Display additional Python interpreter encoding informations (stdout, stdin and filesystem)
597Francois Deppierraz <francois@ctrlaltdel.ch>**20100521094313
598 Ignore-this: 3ae9b0b07fd1d53fb632ef169f7c5d26
599] 
600[dirnode.py: Fix bug that caused 'tahoe' fields, 'ctime' and 'mtime' not to be updated when new metadata is present.
601david-sarah@jacaranda.org**20100602014644
602 Ignore-this: 5bac95aa897b68f2785d481e49b6a66
603] 
604[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.
605david-sarah@jacaranda.org**20100601045428
606 Ignore-this: 14f26e17e58db97fad0dcfd350b38e95
607] 
608[Change doc comments in interfaces.py to take into account unknown nodes.
609david-sarah@jacaranda.org**20100528171922
610 Ignore-this: d2fde6890b3bca9c7275775f64fbff56
611] 
612[Trivial whitespace changes.
613david-sarah@jacaranda.org**20100527194114
614 Ignore-this: 98d611bc54ee20b01a5f6b334ff61b2d
615] 
616[Suppress 'integer argument expected, got float' DeprecationWarning everywhere
617david-sarah@jacaranda.org**20100523221157
618 Ignore-this: 80efd7e27798f5d2ad66c7a53e7048e5
619] 
620[Change shouldFail to avoid Unicode errors when converting Failure to str
621david-sarah@jacaranda.org**20100512060754
622 Ignore-this: 86ed419d332d9c33090aae2cde1dc5df
623] 
624[SFTP: relax pyasn1 version dependency to >= 0.0.8a.
625david-sarah@jacaranda.org**20100520181437
626 Ignore-this: 2c7b3dee7b7e14ba121d3118193a386a
627] 
628[SFTP: add pyasn1 as dependency, needed if we are using Twisted >= 9.0.0.
629david-sarah@jacaranda.org**20100516193710
630 Ignore-this: 76fd92e8a950bb1983a90a09e89c54d3
631] 
632[allmydata.org -> tahoe-lafs.org in __init__.py
633david-sarah@jacaranda.org**20100603063530
634 Ignore-this: f7d82331d5b4a3c4c0938023409335af
635] 
636[small change to CREDITS
637david-sarah@jacaranda.org**20100603062421
638 Ignore-this: 2909cdbedc19da5573dec810fc23243
639] 
640[Resolve conflict in patch to change imports to absolute.
641david-sarah@jacaranda.org**20100603054608
642 Ignore-this: 15aa1caa88e688ffa6dc53bed7dcca7d
643] 
644[Minor documentation tweaks.
645david-sarah@jacaranda.org**20100603054458
646 Ignore-this: e30ae407b0039dfa5b341d8f88e7f959
647] 
648[title_rename_xhtml.dpatch.txt
649freestorm77@gmail.com**20100529172542
650 Ignore-this: d2846afcc9ea72ac443a62ecc23d121b
651 
652 - Renamed xhtml Title from "Allmydata - Tahoe" to "Tahoe-LAFS"
653 - Renamed Tahoe to Tahoe-LAFS in page content
654 - Changed Tahoe-LAFS home page link to http://tahoe-lafs.org (added target="blank")
655 - Deleted commented css script in info.xhtml
656 
657 
658] 
659[tests: refactor test_web.py to have less duplication of literal caps-from-the-future
660zooko@zooko.com**20100519055146
661 Ignore-this: 49e5412e6cc4566ca67f069ffd850af6
662 This is a prelude to a patch which will add tests of caps from the future which have non-ascii chars in them.
663] 
664[doc_reformat_stats.txt
665freestorm77@gmail.com**20100424114615
666 Ignore-this: af315db5f7e3a17219ff8fb39bcfcd60
667 
668 
669    - Added heading format begining and ending by "=="
670    - Added Index
671    - Added Title
672           
673    Note: No change are made in paragraphs content
674 
675 
676 **END OF DESCRIPTION***
677 
678 Place the long patch description above the ***END OF DESCRIPTION*** marker.
679 The first line of this file will be the patch name.
680 
681 
682 This patch contains the following changes:
683 
684 M ./docs/stats.txt -2 +2
685] 
686[doc_reformat_performance.txt
687freestorm77@gmail.com**20100424114444
688 Ignore-this: 55295ff5cd8a5b67034eb661a5b0699d
689 
690    - Added heading format begining and ending by "=="
691    - Added Index
692    - Added Title
693         
694    Note: No change are made in paragraphs content
695 
696 
697] 
698[doc_refomat_logging.txt
699freestorm77@gmail.com**20100424114316
700 Ignore-this: 593f0f9914516bf1924dfa6eee74e35f
701 
702    - Added heading format begining and ending by "=="
703    - Added Index
704    - Added Title
705         
706    Note: No change are made in paragraphs content
707 
708] 
709[doc_reformat_known_issues.txt
710freestorm77@gmail.com**20100424114118
711 Ignore-this: 9577c3965d77b7ac18698988cfa06049
712 
713     - Added heading format begining and ending by "=="
714     - Added Index
715     - Added Title
716           
717     Note: No change are made in paragraphs content
718   
719 
720] 
721[doc_reformat_helper.txt
722freestorm77@gmail.com**20100424120649
723 Ignore-this: de2080d6152ae813b20514b9908e37fb
724 
725 
726    - Added heading format begining and ending by "=="
727    - Added Index
728    - Added Title
729             
730    Note: No change are made in paragraphs content
731 
732] 
733[doc_reformat_garbage-collection.txt
734freestorm77@gmail.com**20100424120830
735 Ignore-this: aad3e4c99670871b66467062483c977d
736 
737 
738    - Added heading format begining and ending by "=="
739    - Added Index
740    - Added Title
741             
742    Note: No change are made in paragraphs content
743 
744] 
745[doc_reformat_FTP-and-SFTP.txt
746freestorm77@gmail.com**20100424121334
747 Ignore-this: 3736b3d8f9a542a3521fbb566d44c7cf
748 
749 
750    - Added heading format begining and ending by "=="
751    - Added Index
752    - Added Title
753           
754    Note: No change are made in paragraphs content
755 
756] 
757[doc_reformat_debian.txt
758freestorm77@gmail.com**20100424120537
759 Ignore-this: 45fe4355bb869e55e683405070f47eff
760 
761 
762    - Added heading format begining and ending by "=="
763    - Added Index
764    - Added Title
765             
766    Note: No change are made in paragraphs content
767 
768] 
769[doc_reformat_configuration.txt
770freestorm77@gmail.com**20100424104903
771 Ignore-this: 4fbabc51b8122fec69ce5ad1672e79f2
772 
773 
774 - Added heading format begining and ending by "=="
775 - Added Index
776 - Added Title
777 
778 Note: No change are made in paragraphs content
779 
780] 
781[doc_reformat_CLI.txt
782freestorm77@gmail.com**20100424121512
783 Ignore-this: 2d3a59326810adcb20ea232cea405645
784 
785      - Added heading format begining and ending by "=="
786      - Added Index
787      - Added Title
788           
789      Note: No change are made in paragraphs content
790 
791] 
792[doc_reformat_backupdb.txt
793freestorm77@gmail.com**20100424120416
794 Ignore-this: fed696530e9d2215b6f5058acbedc3ab
795 
796 
797    - Added heading format begining and ending by "=="
798    - Added Index
799    - Added Title
800             
801    Note: No change are made in paragraphs content
802 
803] 
804[doc_reformat_architecture.txt
805freestorm77@gmail.com**20100424120133
806 Ignore-this: 6e2cab4635080369f2b8cadf7b2f58e
807 
808 
809     - Added heading format begining and ending by "=="
810     - Added Index
811     - Added Title
812             
813     Note: No change are made in paragraphs content
814 
815 
816] 
817[Correct harmless indentation errors found by pylint
818david-sarah@jacaranda.org**20100226052151
819 Ignore-this: 41335bce830700b18b80b6e00b45aef5
820] 
821[Change relative imports to absolute
822david-sarah@jacaranda.org**20100226071433
823 Ignore-this: 32e6ce1a86e2ffaaba1a37d9a1a5de0e
824] 
825[Document reason for the trialcoverage version requirement being 0.3.3.
826david-sarah@jacaranda.org**20100525004444
827 Ignore-this: 2f9f1df6882838b000c063068f258aec
828] 
829[Downgrade version requirement for trialcoverage to 0.3.3 (from 0.3.10), to avoid needing to compile coveragepy on Windows.
830david-sarah@jacaranda.org**20100524233707
831 Ignore-this: 9c397a374c8b8017e2244b8a686432a8
832] 
833[Suppress deprecation warning for twisted.web.error.NoResource when using Twisted >= 9.0.0.
834david-sarah@jacaranda.org**20100516205625
835 Ignore-this: 2361a3023cd3db86bde5e1af759ed01
836] 
837[docs: CREDITS for Jeremy Visser
838zooko@zooko.com**20100524081829
839 Ignore-this: d7c1465fd8d4e25b8d46d38a1793465b
840] 
841[test: show stdout and stderr in case of non-zero exit code from "tahoe" command
842zooko@zooko.com**20100524073348
843 Ignore-this: 695e81cd6683f4520229d108846cd551
844] 
845[setup: upgrade bundled zetuptoolz to zetuptoolz-0.6c15dev and make it unpacked and directly loaded by setup.py
846zooko@zooko.com**20100523205228
847 Ignore-this: 24fb32aaee3904115a93d1762f132c7
848 Also fix the relevant "make clean" target behavior.
849] 
850[setup: remove bundled zipfile egg of setuptools
851zooko@zooko.com**20100523205120
852 Ignore-this: c68b5f2635bb93d1c1fa7b613a026f9e
853 We're about to replace it with bundled unpacked source code of setuptools, which is much nicer for debugging and evolving under revision control.
854] 
855[setup: remove bundled copy of setuptools_trial-0.5.2.tar
856zooko@zooko.com**20100522221539
857 Ignore-this: 140f90eb8fb751a509029c4b24afe647
858 Hopefully it will get installed automatically as needed and we won't bundle it anymore.
859] 
860[setup: remove bundled setuptools_darcs-1.2.8.tar
861zooko@zooko.com**20100522015333
862 Ignore-this: 378b1964b513ae7fe22bae2d3478285d
863 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.
864] 
865[tests: fix pyflakes warnings in bench_dirnode.py
866zooko@zooko.com**20100521202511
867 Ignore-this: f23d55b4ed05e52865032c65a15753c4
868] 
869[setup: if the string '--reporter=bwverbose-coverage' appears on sys.argv then you need trialcoverage
870zooko@zooko.com**20100521122226
871 Ignore-this: e760c45dcfb5a43c1dc1e8a27346bdc2
872] 
873[tests: don't let bench_dirnode.py do stuff and have side-effects at import time (unless __name__ == '__main__')
874zooko@zooko.com**20100521122052
875 Ignore-this: 96144a412250d9bbb5fccbf83b8753b8
876] 
877[tests: increase timeout to give François's ARM buildslave a chance to complete the tests
878zooko@zooko.com**20100520134526
879 Ignore-this: 3dd399fdc8b91149c82b52f955b50833
880] 
881[run_trial.darcspath
882freestorm77@gmail.com**20100510232829
883 Ignore-this: 5ebb4df74e9ea8a4bdb22b65373d1ff2
884] 
885[docs: line-wrap README.txt
886zooko@zooko.com**20100518174240
887 Ignore-this: 670a02d360df7de51ebdcf4fae752577
888] 
889[Hush pyflakes warnings
890Kevan Carstensen <kevan@isnotajoke.com>**20100515184344
891 Ignore-this: fd602c3bba115057770715c36a87b400
892] 
893[setup: new improved misc/show-tool-versions.py
894zooko@zooko.com**20100516050122
895 Ignore-this: ce9b1de1b35b07d733e6cf823b66335a
896] 
897[Improve code coverage of the Tahoe2PeerSelector tests.
898Kevan Carstensen <kevan@isnotajoke.com>**20100515032913
899 Ignore-this: 793151b63ffa65fdae6915db22d9924a
900] 
901[Remove a comment that no longer makes sense.
902Kevan Carstensen <kevan@isnotajoke.com>**20100514203516
903 Ignore-this: 956983c7e7c7e4477215494dfce8f058
904] 
905[docs: update docs/architecture.txt to more fully and correctly explain the upload procedure
906zooko@zooko.com**20100514043458
907 Ignore-this: 538b6ea256a49fed837500342092efa3
908] 
909[Fix up the behavior of #778, per reviewers' comments
910Kevan Carstensen <kevan@isnotajoke.com>**20100514004917
911 Ignore-this: 9c20b60716125278b5456e8feb396bff
912 
913   - Make some important utility functions clearer and more thoroughly
914     documented.
915   - Assert in upload.servers_of_happiness that the buckets attributes
916     of PeerTrackers passed to it are mutually disjoint.
917   - Get rid of some silly non-Pythonisms that I didn't see when I first
918     wrote these patches.
919   - Make sure that should_add_server returns true when queried about a
920     shnum that it doesn't know about yet.
921   - Change Tahoe2PeerSelector.preexisting_shares to map a shareid to a set
922     of peerids, alter dependencies to deal with that.
923   - Remove upload.should_add_servers, because it is no longer necessary
924   - Move upload.shares_of_happiness and upload.shares_by_server to a utility
925     file.
926   - Change some points in Tahoe2PeerSelector.
927   - Compute servers_of_happiness using a bipartite matching algorithm that
928     we know is optimal instead of an ad-hoc greedy algorithm that isn't.
929   - Change servers_of_happiness to just take a sharemap as an argument,
930     change its callers to merge existing_shares and used_peers before
931     calling it.
932   - Change an error message in the encoder to be more appropriate for
933     servers of happiness.
934   - Clarify the wording of an error message in immutable/upload.py
935   - Refactor a happiness failure message to happinessutil.py, and make
936     immutable/upload.py and immutable/encode.py use it.
937   - Move the word "only" as far to the right as possible in failure
938     messages.
939   - Use a better definition of progress during peer selection.
940   - Do read-only peer share detection queries in parallel, not sequentially.
941   - Clean up logging semantics; print the query statistics whenever an
942     upload is unsuccessful, not just in one case.
943 
944] 
945[Alter the error message when an upload fails, per some comments in #778.
946Kevan Carstensen <kevan@isnotajoke.com>**20091230210344
947 Ignore-this: ba97422b2f9737c46abeb828727beb1
948 
949 When I first implemented #778, I just altered the error messages to refer to
950 servers where they referred to shares. The resulting error messages weren't
951 very good. These are a bit better.
952] 
953[Change "UploadHappinessError" to "UploadUnhappinessError"
954Kevan Carstensen <kevan@isnotajoke.com>**20091205043037
955 Ignore-this: 236b64ab19836854af4993bb5c1b221a
956] 
957[Alter the error message returned when peer selection fails
958Kevan Carstensen <kevan@isnotajoke.com>**20091123002405
959 Ignore-this: b2a7dc163edcab8d9613bfd6907e5166
960 
961 The Tahoe2PeerSelector returned either NoSharesError or NotEnoughSharesError
962 for a variety of error conditions that weren't informatively described by them.
963 This patch creates a new error, UploadHappinessError, replaces uses of
964 NoSharesError and NotEnoughSharesError with it, and alters the error message
965 raised with the errors to be more in line with the new servers_of_happiness
966 behavior. See ticket #834 for more information.
967] 
968[Eliminate overcounting iof servers_of_happiness in Tahoe2PeerSelector; also reorganize some things.
969Kevan Carstensen <kevan@isnotajoke.com>**20091118014542
970 Ignore-this: a6cb032cbff74f4f9d4238faebd99868
971] 
972[Change stray "shares_of_happiness" to "servers_of_happiness"
973Kevan Carstensen <kevan@isnotajoke.com>**20091116212459
974 Ignore-this: 1c971ba8c3c4d2e7ba9f020577b28b73
975] 
976[Alter Tahoe2PeerSelector to make sure that it recognizes existing shares on readonly servers, fixing an issue in #778
977Kevan Carstensen <kevan@isnotajoke.com>**20091116192805
978 Ignore-this: 15289f4d709e03851ed0587b286fd955
979] 
980[Alter 'immutable/encode.py' and 'immutable/upload.py' to use servers_of_happiness instead of shares_of_happiness.
981Kevan Carstensen <kevan@isnotajoke.com>**20091104111222
982 Ignore-this: abb3283314820a8bbf9b5d0cbfbb57c8
983] 
984[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.
985Kevan Carstensen <kevan@isnotajoke.com>**20091104033241
986 Ignore-this: b3a6649a8ac66431beca1026a31fed94
987] 
988[Alter CiphertextDownloader to work with servers_of_happiness
989Kevan Carstensen <kevan@isnotajoke.com>**20090924041932
990 Ignore-this: e81edccf0308c2d3bedbc4cf217da197
991] 
992[Revisions of the #778 tests, per reviewers' comments
993Kevan Carstensen <kevan@isnotajoke.com>**20100514012542
994 Ignore-this: 735bbc7f663dce633caeb3b66a53cf6e
995 
996 - Fix comments and confusing naming.
997 - Add tests for the new error messages suggested by David-Sarah
998   and Zooko.
999 - Alter existing tests for new error messages.
1000 - Make sure that the tests continue to work with the trunk.
1001 - Add a test for a mutual disjointedness assertion that I added to
1002   upload.servers_of_happiness.
1003 - Fix the comments to correctly reflect read-onlyness
1004 - Add a test for an edge case in should_add_server
1005 - Add an assertion to make sure that share redistribution works as it
1006   should
1007 - Alter tests to work with revised servers_of_happiness semantics
1008 - Remove tests for should_add_server, since that function no longer exists.
1009 - Alter tests to know about merge_peers, and to use it before calling
1010   servers_of_happiness.
1011 - Add tests for merge_peers.
1012 - Add Zooko's puzzles to the tests.
1013 - Edit encoding tests to expect the new kind of failure message.
1014 - Edit tests to expect error messages with the word "only" moved as far
1015   to the right as possible.
1016 - Extended and cleaned up some helper functions.
1017 - Changed some tests to call more appropriate helper functions.
1018 - Added a test for the failing redistribution algorithm
1019 - Added a test for the progress message
1020 - Added a test for the upper bound on readonly peer share discovery.
1021 
1022] 
1023[Alter various unit tests to work with the new happy behavior
1024Kevan Carstensen <kevan@isnotajoke.com>**20100107181325
1025 Ignore-this: 132032bbf865e63a079f869b663be34a
1026] 
1027[Replace "UploadHappinessError" with "UploadUnhappinessError" in tests.
1028Kevan Carstensen <kevan@isnotajoke.com>**20091205043453
1029 Ignore-this: 83f4bc50c697d21b5f4e2a4cd91862ca
1030] 
1031[Add tests for the behavior described in #834.
1032Kevan Carstensen <kevan@isnotajoke.com>**20091123012008
1033 Ignore-this: d8e0aa0f3f7965ce9b5cea843c6d6f9f
1034] 
1035[Re-work 'test_upload.py' to be more readable; add more tests for #778
1036Kevan Carstensen <kevan@isnotajoke.com>**20091116192334
1037 Ignore-this: 7e8565f92fe51dece5ae28daf442d659
1038] 
1039[Test Tahoe2PeerSelector to make sure that it recognizeses existing shares on readonly servers
1040Kevan Carstensen <kevan@isnotajoke.com>**20091109003735
1041 Ignore-this: 12f9b4cff5752fca7ed32a6ebcff6446
1042] 
1043[Add more tests for comment:53 in ticket #778
1044Kevan Carstensen <kevan@isnotajoke.com>**20091104112849
1045 Ignore-this: 3bb2edd299a944cc9586e14d5d83ec8c
1046] 
1047[Add a test for upload.shares_by_server
1048Kevan Carstensen <kevan@isnotajoke.com>**20091104111324
1049 Ignore-this: f9802e82d6982a93e00f92e0b276f018
1050] 
1051[Minor tweak to an existing test -- make the first server read-write, instead of read-only
1052Kevan Carstensen <kevan@isnotajoke.com>**20091104034232
1053 Ignore-this: a951a46c93f7f58dd44d93d8623b2aee
1054] 
1055[Alter tests to use the new form of set_shareholders
1056Kevan Carstensen <kevan@isnotajoke.com>**20091104033602
1057 Ignore-this: 3deac11fc831618d11441317463ef830
1058] 
1059[Refactor some behavior into a mixin, and add tests for the behavior described in #778
1060"Kevan Carstensen" <kevan@isnotajoke.com>**20091030091908
1061 Ignore-this: a6f9797057ca135579b249af3b2b66ac
1062] 
1063[Alter NoNetworkGrid to allow the creation of readonly servers for testing purposes.
1064Kevan Carstensen <kevan@isnotajoke.com>**20091018013013
1065 Ignore-this: e12cd7c4ddeb65305c5a7e08df57c754
1066] 
1067[Update 'docs/architecture.txt' to reflect readonly share discovery
1068kevan@isnotajoke.com**20100514003852
1069 Ignore-this: 7ead71b34df3b1ecfdcfd3cb2882e4f9
1070] 
1071[Alter the wording in docs/architecture.txt to more accurately describe the servers_of_happiness behavior.
1072Kevan Carstensen <kevan@isnotajoke.com>**20100428002455
1073 Ignore-this: 6eff7fa756858a1c6f73728d989544cc
1074] 
1075[Alter wording in 'interfaces.py' to be correct wrt #778
1076"Kevan Carstensen" <kevan@isnotajoke.com>**20091205034005
1077 Ignore-this: c9913c700ac14e7a63569458b06980e0
1078] 
1079[Update 'docs/configuration.txt' to reflect the servers_of_happiness behavior.
1080Kevan Carstensen <kevan@isnotajoke.com>**20091205033813
1081 Ignore-this: 5e1cb171f8239bfb5b565d73c75ac2b8
1082] 
1083[Clarify quickstart instructions for installing pywin32
1084david-sarah@jacaranda.org**20100511180300
1085 Ignore-this: d4668359673600d2acbc7cd8dd44b93c
1086] 
1087[web: add a simple test that you can load directory.xhtml
1088zooko@zooko.com**20100510063729
1089 Ignore-this: e49b25fa3c67b3c7a56c8b1ae01bb463
1090] 
1091[setup: fix typos in misc/show-tool-versions.py
1092zooko@zooko.com**20100510063615
1093 Ignore-this: 2181b1303a0e288e7a9ebd4c4855628
1094] 
1095[setup: show code-coverage tool versions in show-tools-versions.py
1096zooko@zooko.com**20100510062955
1097 Ignore-this: 4b4c68eb3780b762c8dbbd22b39df7cf
1098] 
1099[docs: update README, mv it to README.txt, update setup.py
1100zooko@zooko.com**20100504094340
1101 Ignore-this: 40e28ca36c299ea1fd12d3b91e5b421c
1102] 
1103[Dependency on Windmill test framework is not needed yet.
1104david-sarah@jacaranda.org**20100504161043
1105 Ignore-this: be088712bec650d4ef24766c0026ebc8
1106] 
1107[tests: pass z to tar so that BSD tar will know to ungzip
1108zooko@zooko.com**20100504090628
1109 Ignore-this: 1339e493f255e8fc0b01b70478f23a09
1110] 
1111[setup: update comments and URLs in setup.cfg
1112zooko@zooko.com**20100504061653
1113 Ignore-this: f97692807c74bcab56d33100c899f829
1114] 
1115[setup: reorder and extend the show-tool-versions script, the better to glean information about our new buildslaves
1116zooko@zooko.com**20100504045643
1117 Ignore-this: 836084b56b8d4ee8f1de1f4efb706d36
1118] 
1119[CLI: Support for https url in option --node-url
1120Francois Deppierraz <francois@ctrlaltdel.ch>**20100430185609
1121 Ignore-this: 1717176b4d27c877e6bc67a944d9bf34
1122 
1123 This patch modifies the regular expression used for verifying of '--node-url'
1124 parameter.  Support for accessing a Tahoe gateway over HTTPS was already
1125 present, thanks to Python's urllib.
1126 
1127] 
1128[backupdb.did_create_directory: use REPLACE INTO, not INSERT INTO + ignore error
1129Brian Warner <warner@lothar.com>**20100428050803
1130 Ignore-this: 1fca7b8f364a21ae413be8767161e32f
1131 
1132 This handles the case where we upload a new tahoe directory for a
1133 previously-processed local directory, possibly creating a new dircap (if the
1134 metadata had changed). Now we replace the old dirhash->dircap record. The
1135 previous behavior left the old record in place (with the old dircap and
1136 timestamps), so we'd never stop creating new directories and never converge
1137 on a null backup.
1138] 
1139["tahoe webopen": add --info flag, to get ?t=info
1140Brian Warner <warner@lothar.com>**20100424233003
1141 Ignore-this: 126b0bb6db340fabacb623d295eb45fa
1142 
1143 Also fix some trailing whitespace.
1144] 
1145[docs: install.html http-equiv refresh to quickstart.html
1146zooko@zooko.com**20100421165708
1147 Ignore-this: 52b4b619f9dde5886ae2cd7f1f3b734b
1148] 
1149[docs: install.html -> quickstart.html
1150zooko@zooko.com**20100421155757
1151 Ignore-this: 6084e203909306bed93efb09d0e6181d
1152 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".
1153] 
1154[Fix another typo in tahoe_storagespace munin plugin
1155david-sarah@jacaranda.org**20100416220935
1156 Ignore-this: ad1f7aa66b554174f91dfb2b7a3ea5f3
1157] 
1158[Add dependency on windmill >= 1.3
1159david-sarah@jacaranda.org**20100416190404
1160 Ignore-this: 4437a7a464e92d6c9012926b18676211
1161] 
1162[licensing: phrase the OpenSSL-exemption in the vocabulary of copyright instead of computer technology, and replicate the exemption from the GPL to the TGPPL
1163zooko@zooko.com**20100414232521
1164 Ignore-this: a5494b2f582a295544c6cad3f245e91
1165] 
1166[munin-tahoe_storagespace
1167freestorm77@gmail.com**20100221203626
1168 Ignore-this: 14d6d6a587afe1f8883152bf2e46b4aa
1169 
1170 Plugin configuration rename
1171 
1172] 
1173[setup: add licensing declaration for setuptools (noticed by the FSF compliance folks)
1174zooko@zooko.com**20100309184415
1175 Ignore-this: 2dfa7d812d65fec7c72ddbf0de609ccb
1176] 
1177[setup: fix error in licensing declaration from Shawn Willden, as noted by the FSF compliance division
1178zooko@zooko.com**20100309163736
1179 Ignore-this: c0623d27e469799d86cabf67921a13f8
1180] 
1181[CREDITS to Jacob Appelbaum
1182zooko@zooko.com**20100304015616
1183 Ignore-this: 70db493abbc23968fcc8db93f386ea54
1184] 
1185[desert-island-build-with-proper-versions
1186jacob@appelbaum.net**20100304013858] 
1187[docs: a few small edits to try to guide newcomers through the docs
1188zooko@zooko.com**20100303231902
1189 Ignore-this: a6aab44f5bf5ad97ea73e6976bc4042d
1190 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.
1191] 
1192[TAG allmydata-tahoe-1.6.1
1193david-sarah@jacaranda.org**20100228062314
1194 Ignore-this: eb5f03ada8ea953ee7780e7fe068539
1195] 
1196Patch bundle hash:
119705919bad73d954fa06fe3cdd9f62764e0b715b9b