Ticket #567: tahoe_version_running_tests.dpatch.txt

File tahoe_version_running_tests.dpatch.txt, 40.8 KB (added by freestorm, at 2010-06-04T22:48:38Z)

Running tests

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