Ticket #1090: nouploadbranchtarbs.dpatch.txt

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