Ticket #1039: sftp-and-ftp-doc.dpatch

File sftp-and-ftp-doc.dpatch, 55.7 KB (added by davidsarah, at 2010-06-19T00:30:08Z)

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.

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