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

File sftp-and-ftp-doc-known-issues.dpatch, 56.4 KB (added by davidsarah, at 2010-06-19T00:57:09Z)

Update to previous patch adding a 'Known Issues' section

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