Ticket #1016: mock-require.dpatch

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