Ticket #174: fix-174.darcs.patch

File fix-174.darcs.patch, 25.8 KB (added by davidsarah, at 2010-11-28T00:42:53Z)

bin/tahoe-script.template: On non-Windows, invoke support/bin/tahoe directly as a script (rather than via python), so that 'top' for example will show it as 'tahoe'. On Windows, simplify some code that set argv[0], which is never used. fixes #174

Line 
11 patch for repository davidsarah@dev.allmydata.org:/home/darcs/tahoe/trunk:
2
3Sat Nov 27 23:26:50 GMT Standard Time 2010  david-sarah@jacaranda.org
4  * bin/tahoe-script.template: On non-Windows, invoke support/bin/tahoe directly as a script (rather than via python), so that 'top' for example will show it as 'tahoe'. On Windows, simplify some code that set argv[0], which is never used. fixes #174
5
6New patches:
7
8[bin/tahoe-script.template: On non-Windows, invoke support/bin/tahoe directly as a script (rather than via python), so that 'top' for example will show it as 'tahoe'. On Windows, simplify some code that set argv[0], which is never used. fixes #174
9david-sarah@jacaranda.org**20101127232650
10 Ignore-this: 42a86f3eecfdc1ea7b76a7cc68626898
11] {
12hunk ./bin/tahoe-script.template 75
13         if not arg.startswith(u"-") or arg == u"-":
14             break
15         argv = argv[1:]
16-        if arg == u'-m':
17-            # sys.argv[0] should really be the absolute path of the module source, but never mind
18-            break
19-        if arg == u'-c':
20-            argv[0] = u'-c'
21+        if arg == u'-m' or arg == u'-c':
22             break
23 
24hunk ./bin/tahoe-script.template 78
25-    local_tahoe = "Scripts\\tahoe.pyscript"
26+    script = os.path.join(base, "support", "Scripts", "tahoe.pyscript")
27+
28+    # On Windows, the script is not directly executable and must be run via python.
29+    args = [sys.executable, script] + argv[1:]
30 else:
31hunk ./bin/tahoe-script.template 83
32-    argv = sys.argv
33-    local_tahoe = "bin/tahoe"
34+    script = os.path.join(base, "support", "bin", "tahoe")
35 
36hunk ./bin/tahoe-script.template 85
37-script = os.path.join(base, "support", local_tahoe)
38+    # On non-Windows, invoke the script directly, so that 'top' for example shows 'tahoe'.
39+    args = [script] + sys.argv[1:]
40 
41 try:
42hunk ./bin/tahoe-script.template 89
43-    res = subprocess.call([sys.executable, script] + argv[1:], env=os.environ)
44+    res = subprocess.call(args, env=os.environ)
45 except (OSError, IOError), le:
46     if le.args[0] == errno.ENOENT:
47         print whoami
48}
49
50Context:
51
52[update Makefile and coverage2el.py to coverage-3.4
53Brian Warner <warner@lothar.com>**20101125203832
54 Ignore-this: 9d025a7bdf65978c7187fa0370926482
55 
56 It might still work with coverage-3.3 if you run with COVERAGE_OMIT=""
57]
58[setup: require the latest version of darcsver
59zooko@zooko.com**20101123021218
60 Ignore-this: e73741199304d7fe9b65b59b4f3e8460
61]
62[docs: NEWS: add #1233
63zooko@zooko.com**20101120071634
64 Ignore-this: 21345072269617999b78405fb314ab28
65]
66[docs: NEWS: add #1255
67zooko@zooko.com**20101120071249
68 Ignore-this: d37ac1a115f6cdebc3dadb32131b6141
69]
70[docs: NEWS: put news items about bugfixes/improvements and packaging before news items about documentation
71zooko@zooko.com**20101120060716
72 Ignore-this: 1a4306df950fcdc2ab9771c874d6d0a4
73]
74[tahoe_mv.py: when checking success of the DELETE operation, look at the status code from DELETE rather than from the previous PUT. fixes #1255
75david-sarah@jacaranda.org**20101110010916
76 Ignore-this: 4e07b1b51036d68ed28ee3424faa4d2a
77]
78[bundled zetuptoolz: prefer locally-available distributions over remotely-downloaded distributions above all
79zooko@zooko.com**20101117082657
80 Ignore-this: d349c06187191f7acef970a1d7939c12
81 This fixes #1233. Actually the previous patches—[20101103034740-93fa1-9df33552497282eb72a84e5b434d035974bf2dbb] and [20101117080828-92b7f-dc0239f30b26e7e5d40b228114fb399c1e190ec5]—fixed it, but with them zetuptoolz would download a higher-numbered distribution from the net instead of using the locally-available (fake) pycryptopp-0.5.24, thus preventing the tests from passing. This patch changes that behavior (which is an improvement in its own right) and also fixes a bug in the tests.
82]
83[bundled zetuptoolz: choose a binary dist in preference to a source dist, even if the latter is newer, as long as the former satisfies the requirement
84zooko@zooko.com**20101117080828
85 Ignore-this: fa1cb6b23bc20ff60bca80d74d0c64d4
86 patch by David-Sarah, tiny bugfix to patch by Zooko
87 ref: #1233
88]
89[misc: gen-package-table: show only the highest-numbered package for each platform and each library
90zooko@zooko.com**20101120053905
91 Ignore-this: 38771b1d0b6050034ea82e5d2d75684a
92]
93[tests: test-with-fake-dists: clean up *just* the pycryptopp-0.5.24 eggs when exiting
94zooko@zooko.com**20101118063109
95 Ignore-this: 1d2a35d9dec7e7c9264e51632c14ffce
96 also don't set the PATH and PYTHONPATH, which is unnecessary for this test
97 also wrap the behavior in a couple of functions, just for tidiness
98]
99[setup: show-tool-versions: include the version of valgrind
100zooko@zooko.com**20101118030623
101 Ignore-this: 4b52e050468de1b89c6fb8b88f7a537a
102]
103[setup: clean up fake pycryptopp distribution after test-with-fake-dists.py created it
104zooko@zooko.com**20101117093249
105 Ignore-this: b8aedca9cd492846f0248491125e1d5f
106]
107[tests: test-with-fake-dists.py has the side-effect of injecting a fake package into ./support, so after that test rm -rf ./support, and likewise with ./pycryptopp*.egg.
108zooko@zooko.com**20101117090100
109 Ignore-this: acd63867b5f291127b54d80439e836f5
110]
111[setup: when testing, set the __requires__ as precisely as possible even if the version of this particular build of Tahoe-LAFS is not yet known (addresses test failure ref #1190, #1233)
112zooko@zooko.com**20101119074043
113 Ignore-this: 9bde8af892bbc966357eaec2f4ebb578
114]
115[tests: change test-with-fake-pkg to exercise a test suite which actually requires pycryptopp, thus making this a better test which can detect ill-installed pycryptopp
116zooko@zooko.com**20101118072334
117 Ignore-this: 750f432d3acedde244ef1ed7ebd77158
118]
119[misc/build_helpers/run_trial.py: allow the module argument to specify a leaf module rather than a directory. This fixes false positive wrong-source errors in the test-from-prefixdir step when we test only allmydata.test.test_runner.
120david-sarah@jacaranda.org**20101121233957
121 Ignore-this: b1ea9dbc4258ae671d60a79fa967043c
122]
123[tests: bump up the timeout on test_dirnode.Dirnode from 240s to 480s since it apparently took longer than 240s just now on François's ARM buildslave
124zooko@zooko.com**20101115092119
125 Ignore-this: e3e45c663386fe208eeedbccb2872aca
126]
127[setup: remove --multi-version
128zooko@zooko.com**20101115090048
129 Ignore-this: 235bbe0d5645091d56db3b1414fd50b0
130 It causes copious scary-looking warning messages and I'm no longer sure if it was actually needed to accomplish our goals ref #530.
131]
132[misc/build_helpers/gen-package-table.py: put 'n/a' in table entries for pywin32 on non-Windows platforms. Also remove some dead code. refs #1247
133david-sarah@jacaranda.org**20101114193558
134 Ignore-this: 50c07d1cef22b6f6511ccfa539aa3afc
135]
136[setup: include pycryptopp in the set of Python packages described in the show-tool-versions step (for cross-referencing with the test-with-fake-dists step, which behaves differently depending on what version(s) of pycryptopp are already present before it starts)
137zooko@zooko.com**20101114100540
138 Ignore-this: fd01732d1757e80f4a311ba2d38c5e3d
139]
140[setup: gen-package-table.py -- Python packages can have . in their name
141zooko@zooko.com**20101114082643
142 Ignore-this: c42cd92da320375d2dd72018ad6c1d0b
143]
144[setup: upgrade bundled version of darcsver to 1.7.1 to regain compatibility with Python 2.4
145zooko@zooko.com**20101114082620
146 Ignore-this: 9bc9dd064e239003c1a94f1ba409ac96
147]
148[setup: specify that the version file must go into src/allmydata/_version.py . fixes #1259
149zooko@zooko.com**20101114074040
150 Ignore-this: 9d5c58bc7faed738570b4b8529b129d5
151]
152[setup: upgrade bundled darcsver from 1.6.3 to 1.7.0
153zooko@zooko.com**20101114073954
154 Ignore-this: 1f930652a20d818d44c0cb863856dad5
155 ref #1259, we're going to use its 'versionfiles' setup() keyword argument to specify where to write the version file.
156 Remember, we have to bundle darcsver to work-around 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
157]
158[setup: David-Sarah's new gen-package-table.py plus my patch to put the newer versions of Python first
159zooko@zooko.com**20101114073532
160 Ignore-this: 249c4db261a1deb14749ef778f1f7c7a
161 fixes #1247
162]
163[setup: test whether the build system prefers binary dists which are new enough over source dists which are even newer
164zooko@zooko.com**20101113152822
165 Ignore-this: d56b67475aec5a7aa901dba7bc59083c
166 ref: #1233
167]
168[test_cli.py: test that 'tahoe mv' reports errors from the DELETE operation. refs #1255
169david-sarah@jacaranda.org**20101112014653
170 Ignore-this: b498a4b185bcb309754052cdcdc3c187
171]
172[tahoe_mv.py: use do_http, not urllib.openurl, in order to avoid connecting to the webapi server via a proxy. refs #1253
173david-sarah@jacaranda.org**20101110005336
174 Ignore-this: 418b9a1c7873250a35592d3463506540
175]
176[docs: NEWS: merge two additions
177zooko@zooko.com**20101111055851
178 Ignore-this: 13105496bb418ebbd570ba68ef347f2
179]
180[setup: remove separate licensing declaration
181zooko@zooko.com**20101111044530
182 Ignore-this: 2992189602af3ef0a420a1b7273f6344
183 Whenever Free Software/Open Source legal folks are examining the Tahoe-LAFS source code, it seems like there has to be a discussion and documentation about every single licensing declaration. Since this one is (was) permissive, then you would think it could be avoided, but I'm not betting on it. We would probably have to install a copy of the MIT licence into every one of the "copyright" files under the debian/ subdirectory, for example. So: let's just let hashbasedsig.py be licensed the same way as the rest of Tahoe-LAFS.
184]
185[docs: fix error in .rst formatting introduced by renaming Tahoe to Tahoe-LAFS in a header
186zooko@zooko.com**20101111044344
187 Ignore-this: 6f6823891dd22d99e38ebeb9aa57b298
188]
189[docs: NEWS: refs #1253
190zooko@zooko.com**20101111044118
191 Ignore-this: 23d1cfbd2d43a68ca496958b55e4688f
192]
193[docs: added permissions to avoid licence-incompatibility with other Free/Open Source licences
194zooko@zooko.com**20101111043926
195 Ignore-this: 190cff2d0f9e910072bc0705e5e9844c
196]
197[test_system.py: test for 'tahoe mv' with the http_proxy and HTTP_PROXY variables set. refs #1253
198david-sarah@jacaranda.org**20101110033649
199 Ignore-this: a75557ba7589352768d227e2cd37299e
200]
201[test_cli.py: fix a stale comment that incorrectly implied that test_cli runs CLI commands in subprocesses (it actually runs them using deferToThread).
202david-sarah@jacaranda.org**20101110022819
203 Ignore-this: 903b03121061d5b7185ff6333dac7bd4
204]
205[test_client.py: change overzealous use of failUnlessReallyEqual on integers back to failUnlessEqual.
206david-sarah@jacaranda.org**20101109230816
207 Ignore-this: 6488663c0c9212f548f8b498c42c9d30
208]
209[misc/build_helpers/show-tool-versions.py: look for zetuptoolz egg in the current directory, not the parent.
210david-sarah@jacaranda.org**20101107233615
211 Ignore-this: 6e7081a69584d07d5c38fc9de6749254
212]
213[misc/build_helpers/show-tool-versions.py: if we can't import pkg_resources, insert the bundled zetuptoolz egg onto sys.path.
214david-sarah@jacaranda.org**20101106234404
215 Ignore-this: adb1bd5800129a6c9596f89620146f85
216]
217[setup.py: fix a bug in the check for whether we are running 'trial' or 'test', that affected zooko's test for #1233. refs #1233
218david-sarah@jacaranda.org**20101105235415
219 Ignore-this: bc79517853f39301218d7d840de830f2
220]
221[misc/build_helpers/gen-package-table.py: allow all lowercase letters except 'w' (for example, 'c' and 'dev') in package versions.
222david-sarah@jacaranda.org**20101105154756
223 Ignore-this: 1189fad2b0d210e2f827bb710f532f7e
224]
225[setup: fix gen-package-table to allow the "_r$REV" version numbers of packages
226zooko@zooko.com**20101104073944
227 Ignore-this: b6b72b0d2a207929d4ffb0cfc988e8ee
228]
229[misc/build_helpers/run_trial.py: minor refactoring -- make variable names consistent between run_trial.py and test_runner.py
230david-sarah@jacaranda.org**20101104012027
231 Ignore-this: 443fb127ad39015fb2d82bd1beacfa66
232]
233[NEWS: entry for #1242 (tilde expansion in 'tahoe backup --exclude-from'). refs #1242
234david-sarah@jacaranda.org**20101104011915
235 Ignore-this: 1c85e7c74f5a48b4cdae5aa073c6b9fb
236]
237[tests: make test-with-fake-pkg's unacceptably-old fake pycryptopp be 0.5.13 instead of 0.5.17, since 0.5.17 is acceptably new on non-x86 archs
238zooko@zooko.com**20101102053357
239 Ignore-this: a400f6f73c7574f2b2266547b0e7b051
240 Also move the fakepkgs directory to be in misc/build_helpers/ instead of in the base of the source tree.
241]
242[misc/build_helpers/gen-package-table.py: fix missing 'r's (meant to delete CRs :-)
243david-sarah@jacaranda.org**20101103043718
244 Ignore-this: ffa25a18637b6165725a49a79bfa6cc
245]
246[add misc/build_helpers/gen-package-table.py. refs #1247
247david-sarah@jacaranda.org**20101103043328
248 Ignore-this: 3185c869d98d6fecbae4bcc6b74a810d
249]
250[bundled zetuptools: prefer platform-specific dists to platform-independent ones. refs #1233
251david-sarah@jacaranda.org**20101103034740
252 Ignore-this: dad21647659e5f1f821355dc73dc33b5
253]
254[setup: FreeStorm's WinXP-x86-py2.6 buildslave has informed us that there is yet a fourth way to spell "i386" in Python
255zooko@zooko.com**20101101052142
256 Ignore-this: 732892975c19f7fd18caeb071f09ef7
257]
258[setup: add platform.machine() to show-tool-versions, because FreeStorm WinXP builder apparently thinks that its platform.machine() is not one of ['i386', 'x86_64', 'amd64', ''], since it is requiring pycryptopp >= 0.5.14 instead of pycryptopp >= 0.5.20
259zooko@zooko.com**20101101042721
260 Ignore-this: 322a3e5af9785ebca3452f3937ce47a4
261]
262[edit docs for English usage, rename "Tahoe" to "Tahoe-LAFS" in docs/configuration.rst, rename a variable in bin/tahoe-script.template for clarity, update François's CREDITS entry
263zooko@zooko.com**20101101042602
264 Ignore-this: d192c4c9660b1b9173db19d0e533dc22
265]
266[test_runner.py: fix test failure in test_the_right_code after applying zooko's change to test-with-fake-pkg.py
267david-sarah@jacaranda.org**20101102035905
268 Ignore-this: 71b467615ae7dcdfbf84049e60a08933
269]
270[allmydata/__init__.py: move the call to require_auto_deps() to the top again, since the [4784] patch turned out not to be the cause of the failure on the 'mm netbsd5' buildslave.
271david-sarah@jacaranda.org**20101101003316
272 Ignore-this: 879a5188ff2529fb755b6e594c59aeb2
273]
274[allmydata/__init__.py: put the _auto_deps.require_auto_deps() call back in exactly the same place it was prior to [4784].
275david-sarah@jacaranda.org**20101031174649
276 Ignore-this: c5f4fbb2c444d7b05b1d30a199b6178f
277]
278[allmydata/__init__.py: suppress a DeprecationWarning for the sha module on importing pycrypto.
279david-sarah@jacaranda.org**20101031160636
280 Ignore-this: 414d55a0da432cfb0d65329a88e13396
281]
282[misc/build_helpers/run_trial.py: fix another typo in last patch.
283david-sarah@jacaranda.org**20101031160332
284 Ignore-this: 61131c5775a2393b6862f76b7bc222f
285]
286[misc/build_helpers/run_trial.py: fix typo in last patch.
287david-sarah@jacaranda.org**20101031155215
288 Ignore-this: a2fbecf858c0a399e938d4f1ade7329b
289]
290[allmydata/__init__.py: call require_auto_deps() after importing nevow and twisted, reverting change in [4784]. Also fix a missing 'warnings.filters.pop()'.
291david-sarah@jacaranda.org**20101031153828
292 Ignore-this: 8a5cd7798674d56868e9c333a77a4ac2
293]
294[misc/build_helpers/run_trial.py: fix false positive on directory check that can occur when running run_trial from test-with-fake-pkg manually.
295david-sarah@jacaranda.org**20101031153613
296 Ignore-this: 7d4a0758a305cbfdd296570a9c1a88d2
297]
298[allmydata.__init__.py: temporary hack to debug failure on midnightmagic's buildslave
299david-sarah@jacaranda.org**20101031055003
300 Ignore-this: 2ac28b2f19a436a374399b4c59d29cc7
301]
302[NEWS: entries for #1190 and #1212, and minor cleanups. refs #1190, #1212
303david-sarah@jacaranda.org**20101031051426
304 Ignore-this: c318dff69296ae1e1a897752b5221870
305]
306[tahoe backup: perform tilde expansion in exclude-from filename (version 2). fixes #1241
307david-sarah@jacaranda.org**20101031035231
308 Ignore-this: 65e6cd2247dd8d1fc025758d740708c0
309]
310[NEWS: add news entry for #1223
311Francois Deppierraz <francois@ctrlaltdel.ch>**20101030111130
312 Ignore-this: 6b6afd4b0f0527a3c9784c1db95d083
313]
314[NEWS: add a NEWS entry about bug #1045
315Francois Deppierraz <francois@ctrlaltdel.ch>**20101030101351
316 Ignore-this: 7e758afbbd0f1d22a5d0b4fc38661c1d
317]
318[setup: run require_auto_deps() before attempting to import any deps in __init__.py
319zooko@zooko.com**20101030081035
320 Ignore-this: ffcaf2450628543e020e9919e455f691
321 For one thing, this makes missing-dependency failures into DistributionNotFound errors instead of ImportErrors, which might be more useful to the user. For another thing, if someone is using distributions that were installed with --multi-version, then they might be not importable until after require_auto_deps() has been run. (The docs claim that this would be the case, but we don't have an example of this happening at this time.)
322]
323[setup: show-tool-versions: emit module and __version__ information even when module name != distribution (package) name, and add TwistedCore, TwistedWeb, and TwistedConch
324zooko@zooko.com**20101030070233
325 Ignore-this: 3df19910090d44502ddeeef5d9c29a7
326]
327[misc/build_helpers/test-with-fake-pkg.py: look for eggs in the parent of the src directory. refs #1190
328david-sarah@jacaranda.org**20101030034303
329 Ignore-this: 4a3cf286272cdb5d06aac15fb5998b33
330]
331[scripts/runner.py: fix unused import of allmydata. refs #1190
332david-sarah@jacaranda.org**20101030003149
333 Ignore-this: b2fc67f6192ea7ccf8a5ad010ce74a64
334]
335[scripts/runner.py: remove pkg_resources.require() calls. These are at best redundant because we have already called _auto_deps.require_auto_deps() (from allmydata.__init__) at that point, and they are causing failure of the test-from-prefixdir step on some buildslaves. refs #1190
336david-sarah@jacaranda.org**20101029235328
337 Ignore-this: e00dee63acc7b76a5755025d75abf524
338]
339[misc/build_helpers/run_trial.py: look for zetuptoolz egg in the parent directory, not the cwd of run_trial. refs #1190
340david-sarah@jacaranda.org**20101029230329
341 Ignore-this: 1596fb8c290d1c706f079701b1857db8
342]
343[scripts/tahoe_backup.py: oops, fix missing import, thanks pyflakes
344Brian Warner <warner@lothar.com>**20101029094223
345 Ignore-this: 285c35af824935641a5be35c008b080c
346 
347 test_cli.py: hush minor pyflakes complaint
348]
349[mutable/servermap.py: update comment. Closes #1231.
350Brian Warner <warner@lothar.com>**20101029091424
351 Ignore-this: 80bf854123fc254e097a81b82bdf4990
352]
353[tahoe_cp.py: Don't call urllib.quote with an Unicode argument, fix #1224
354Brian Warner <warner@lothar.com>**20101029084520
355 Ignore-this: 5524722d5e5babbb73ca0969d54967f6
356 tahoe_backup.py: Fix another (potential) occurrence of calling urllib.quote()
357 with an Unicode parameter
358]
359[fix #1223, crash+inefficiency during repair due to read overrun
360Brian Warner <warner@lothar.com>**20101029082036
361 Ignore-this: e6aa0295ad254544da3b5cc41b33d862
362 
363 * repairer (really the uploader) reads beyond end of input file (Uploadable)
364 * new-downloader does not tolerate overreads
365 * uploader does lots of tiny reads (inefficient)
366 
367 This fixes the last two. The uploader still does a single overread at the end
368 of the input file, but now that's ok so we can leave it in place. The
369 uploader now expects the Uploadable to behave like a normal disk
370 file (reading beyond EOF will return less data than was asked for), and now
371 the new-downloadable behaves that way.
372]
373[add misc/build_helpers/test-with-fake-pkg.py. refs #1190
374david-sarah@jacaranda.org**20101029025150
375 Ignore-this: 995f220962708f1bad83092161130f67
376]
377[bundled zetuptoolz: if __main__.__requires__ exists then do not add packages to the working set if they provide an incompatible version of a package. Also put a complete __requires__ listing the transitive closure of dependencies at the beginning of generated scripts, rather than a shallow __requires__ specifying only the application version. refs #1190
378david-sarah@jacaranda.org**20101029223111
379 Ignore-this: a95f1967884340e53bf3adf90db40cfc
380]
381[setup.py, misc/build_helpers/run_trial.py: use undocumented __requires__ variable to cause setuptools/zetuptoolz to put the correct versions of dependencies on sys.path. Also ensure that run_trial adds the bundled zetuptoolz egg at the start of sys.path if present. Make the source directory comparison work correctly for the test-with-fake-pkg build step. refs #1190
382david-sarah@jacaranda.org**20101029222825
383 Ignore-this: 8b09366eb6ce3d55c7db5239077a0fac
384]
385[test_runner.py: fix error in BinTahoe.test_version_no_noise introduced by last patch. refs #1235
386david-sarah@jacaranda.org**20101029221123
387 Ignore-this: 4bf21ea34768e8e6adf104e56f939fd0
388]
389[test_runner.py: also allow 'from pkg_resources import load_entry_point' as noise. refs #1235.
390david-sarah@jacaranda.org**20101029204246
391 Ignore-this: a47440aa2cdd29ce55ac7c6c7f4bcaf2
392]
393[test_runner.py: if the only noise is 'UserWarning: Unbuilt egg for setuptools', skip instead of failing the no_noise tests. This version avoids 'any' to be compatible with Python < 2.5. refs #1235.
394david-sarah@jacaranda.org**20101029191804
395 Ignore-this: 83ca1543fc9673e664a8eeefe1eba429
396]
397[NEWS: clarify (strengthen) description of what backdoors.rst declares, and add bugfix entries for 'tahoe cp' and Windows console bugs. refs #1216, #1224, #1232
398david-sarah@jacaranda.org**20101028180046
399 Ignore-this: 1c3eef3cd353b06b6ee00ce87c5ef59a
400]
401[startstop_node.py: pyflakes import fix. refs #1190
402david-sarah@jacaranda.org**20101028014805
403 Ignore-this: 369ef5022c8ee5a0d8341af01553bcef
404]
405['tahoe start': use import+call rather than find+spawn
406"Brian Warner <warner@lothar.com>"**20101027061342
407 
408 This removes the need to use a locally-built (dependency) bin/twistd, and
409 removes a big chunk of behavior differences between unix and windows. It
410 also happens to resolve the "client node probably started" uncertainty.
411 Might help with #1190, #602, and #71.
412]
413[make ResponseCache smarter to avoid memory leaks: don't record timestamps, use DataSpans to merge entries, and clear the cache when we see a new seqnum. refs #1045, #1229
414david-sarah@jacaranda.org**20101027043302
415 Ignore-this: 88fd6fba7f35a2f8af1693b92718f5f3
416]
417[windows/fixups.py: limit length of string passed in a single call to WriteConsoleW. fixes #1232.
418david-sarah@jacaranda.org**20101027021636
419 Ignore-this: fbd99e0d22493974696d37925d97c7d6
420]
421[docs/known_issues.rst: Add section on traffic analysis. Fix URL for current version of file.
422david-sarah@jacaranda.org**20101024234259
423 Ignore-this: f3416e79d3bb833f5118da23e85723ad
424]
425[test_mutable.py: add test for ResponseCache memory leak. refs #1045, #1129
426david-sarah@jacaranda.org**20101024193409
427 Ignore-this: 3aee7f0677956cc6deaccb4d5b8e415f
428]
429[docs/running.html: fix missing end-quote, and change frontends/ doc references to .rst.
430david-sarah@jacaranda.org**20101024171500
431 Ignore-this: 47c645a6595e1790b1d1adfa71af0e1d
432]
433[docs/running.html: 'tahoe create-client' now creates a node with storage disabled. Also change configuration.txt references to configuration.rst.
434david-sarah@jacaranda.org**20101024170431
435 Ignore-this: e5b048055494ba3505bb8a506610681c
436]
437[test_encodingutil.py: test_argv_to_unicode modified the wrong encoding variable. fixes #1214
438david-sarah@jacaranda.org**20101023035810
439 Ignore-this: e5f1f849931b96939facc53d93ff61c5
440]
441[doc: add explanation of the motivation for the surprising and awkward API to erasure coding
442zooko@zooko.com**20101015060202
443 Ignore-this: 428913ff6e1bf5b393deffb1f20b949b
444]
445[setup: catch and log ValueError from locale.getdefaultlocale() in show-tool-versions.py
446zooko@zooko.com**20101015054440
447 Ignore-this: 827d91490562c32ed7cf6526dfded773
448 I got a bug report from Mathias Baert showing that locale.getdefaultlocale() raises an exception on his Mac OS X system. Heh.
449]
450[docs: update how-to-make-a-release doc with a few tweaks from the 1.8.0 process
451zooko@zooko.com**20101015054413
452 Ignore-this: ca5e9478531a3393792ae283239549dd
453]
454[docs: update NEWS ref: #1216
455zooko@zooko.com**20101015053719
456 Ignore-this: 2e0b92e4145d667cdf075e64b7965530
457]
458[docs: fix tab-vs-spaces, make some CLI examples <tt>/"literal", wrap some to
459Brian Warner <warner@lothar.com>**20101015060606
460 Ignore-this: eae08bdf0afb19a2fbf41c31e70a8122
461 80-cols, remove spurious whitespace. Add rst2html.py rule to Makefile.
462]
463[docs: add Peter Secor, Shawn Willden, and Terrell Russell as signatories to docs/backdoors.rst
464zooko@zooko.com**20101015053242
465 Ignore-this: c77adf819d664f673e17c4aaeb353f33
466]
467[docs: convert all .txt docs to .rst thanks to Ravi Pinjala
468zooko@zooko.com**20101015052913
469 Ignore-this: 178a5122423189ecfc45b142314a78ec
470 fixes #1225
471]
472[docs: add statement on our refusal to insert backdoors
473zooko@zooko.com**20101006051147
474 Ignore-this: 644d308319a7b80c4434bdff9760404a
475]
476[setup: add --multi-version to the "setup.py develop" command-line
477zooko@zooko.com**20101005182350
478 Ignore-this: 709155cc21caff29826b8d41a8c8d63d
479 fixes #530. I earlier tried this twice (see #530 for history) and then twice rolled it back due to some problems that arose. However, I didn't write down what the problems were in enough detail on the ticket that I can tell today whether those problems are still issues, so here goes the third attempt. (I did write down on the ticket that it would not create site.py or .pth files in the target directory with --multi-version mode, but I didn't explain why *that* was a problem.)
480]
481[setup: use execfile to access _auto_deps.py in its proper location of src/allmydata/ instead of copying it into place when setup.py is executed
482zooko@zooko.com**20100906055714
483 Ignore-this: c179b42672d775580afad40121f86812
484]
485[trivial: M-x whitespace-cleanup
486zooko@zooko.com**20100903144712
487 Ignore-this: 1bb764d11ac69b4a35ea091cfb13158a
488]
489[minor: remove unused interface declaration, change allmydata.org to tahoe-lafs.org in email address, fix wording in relnotes.txt
490zooko@zooko.com**20100930153708
491 Ignore-this: a452969228afed2774de375e29fa3048
492]
493[immutable/repairer.py: don't use the default happiness setting when repairing
494Kevan Carstensen <kevan@isnotajoke.com>**20100927200102
495 Ignore-this: bd704d9744b970849da8d46a16b8089a
496]
497[NEWS: note dependency updates to pycryptopp and pycrypto.
498david-sarah@jacaranda.org**20100924191207
499 Ignore-this: eeaf5c9c9104f24c450c2ec4482ac1ee
500]
501[TAG allmydata-tahoe-1.8.0
502zooko@zooko.com**20100924021631
503 Ignore-this: 494ca0a885c5e20c883845fc53e7ab5d
504]
505Patch bundle hash:
506e94fea023841c9775ac88e906b54e1d74878b102