1 | 1 patch for repository davidsarah@dev.allmydata.org:/home/darcs/tahoe/trunk: |
---|
2 | |
---|
3 | Wed Jan 19 05:11:37 GMT Standard Time 2011 david-sarah@jacaranda.org |
---|
4 | * Add support to bin/tahoe for invoking a runner command prefixed with @, with the Tahoe libraries on the PYTHONPATH. This is documented in 'tahoe debug --help'. |
---|
5 | |
---|
6 | New patches: |
---|
7 | |
---|
8 | [Add support to bin/tahoe for invoking a runner command prefixed with @, with the Tahoe libraries on the PYTHONPATH. This is documented in 'tahoe debug --help'. |
---|
9 | david-sarah@jacaranda.org**20110119051137 |
---|
10 | Ignore-this: 65fd13a23670aea3825a706f45a7019f |
---|
11 | ] { |
---|
12 | hunk ./bin/tahoe-script.template 98 |
---|
13 | ''' % (script, perhaps_installed_tahoe) |
---|
14 | sys.exit(1) |
---|
15 | |
---|
16 | -command = prefix + [script] + args |
---|
17 | +# Support indirection via another "runner" script (e.g. coverage). |
---|
18 | +# For example: bin/tahoe @RUNNER RUNNER_ARGS @tahoe TAHOE_ARGS |
---|
19 | + |
---|
20 | +if len(args) >= 1 and args[0].startswith('@'): |
---|
21 | + runner = args[0][1:] |
---|
22 | + if runner.endswith('.py') or runner.endswith('.pyscript'): |
---|
23 | + prefix = [sys.executable] |
---|
24 | + else: |
---|
25 | + prefix = [] |
---|
26 | + |
---|
27 | + def _subst(a): |
---|
28 | + if a == '@tahoe': return script |
---|
29 | + return a |
---|
30 | + command = prefix + [runner] + map(_subst, args[1:]) |
---|
31 | +else: |
---|
32 | + command = prefix + [script] + args |
---|
33 | |
---|
34 | try: |
---|
35 | res = subprocess.call(command, env=os.environ) |
---|
36 | hunk ./src/allmydata/scripts/debug.py 847 |
---|
37 | |
---|
38 | Please run e.g. 'tahoe debug dump-share --help' for more details on each |
---|
39 | subcommand. |
---|
40 | -""" |
---|
41 | + |
---|
42 | +Another debugging feature is that bin%stahoe allows executing an arbitrary |
---|
43 | +"runner" command (typically an installed Python script, such as 'coverage'), |
---|
44 | +with the Tahoe libraries on the PYTHONPATH. The runner command name is |
---|
45 | +prefixed with '@', and any occurrences of '@tahoe' in its arguments are |
---|
46 | +replaced by the full path to the tahoe script. |
---|
47 | + |
---|
48 | +For example, if 'coverage' is installed and on the PATH, you can use: |
---|
49 | + |
---|
50 | + bin%stahoe @coverage run --branch @tahoe debug trial |
---|
51 | + |
---|
52 | +to get branch coverage for the Tahoe test suite. Or, to run python with |
---|
53 | +the -3 option that warns about Python 3 incompatibilities: |
---|
54 | + |
---|
55 | + bin%stahoe @python -3 @tahoe command [options] |
---|
56 | +""" % (os.sep, os.sep, os.sep) |
---|
57 | return t |
---|
58 | |
---|
59 | subDispatch = { |
---|
60 | } |
---|
61 | |
---|
62 | Context: |
---|
63 | |
---|
64 | [bin/tahoe-script.template, src/windows/fixups.py: simplify the method of stripping initial arguments in sys.argv on Windows. This helps with bb-freeze and running tahoe via 'coverage'. Also includes some wording changes and minor refactoring of bin/tahoe-script.template. refs #585, #1303 |
---|
65 | david-sarah@jacaranda.org**20110119045324 |
---|
66 | Ignore-this: 756e83c5eae7dabac31290b98a0e5a99 |
---|
67 | ] |
---|
68 | [Change misc/build_helpers/test-with-fake-pkg to use 'setup.py trial'. refs #1296 |
---|
69 | david-sarah@jacaranda.org**20110119042401 |
---|
70 | Ignore-this: e1518b6f43becf47d5a956bb710a9dcb |
---|
71 | ] |
---|
72 | [Makefile: update 'make clean' to delete the setuptools_trial egg(s). |
---|
73 | david-sarah@jacaranda.org**20110119025053 |
---|
74 | Ignore-this: ec373228f3a169c7070633e3b89ec1d |
---|
75 | ] |
---|
76 | [Change 'setup.py trial' and 'setup.py test' to use 'bin/tahoe debug trial'. refs #1296 |
---|
77 | david-sarah@jacaranda.org**20110119024532 |
---|
78 | Ignore-this: 43df1a50435c794cfa60ecca71a46b10 |
---|
79 | ] |
---|
80 | [src/allmydata/test/test_cli.py: add test for 'tahoe debug trial' options help. refs #1296 |
---|
81 | david-sarah@jacaranda.org**20110119024224 |
---|
82 | Ignore-this: e9f7a67724b60c11a34efbce9a83a5cb |
---|
83 | ] |
---|
84 | [Makefile: update 'make clean' to avoid deleting the setuptools_darcs egg. |
---|
85 | david-sarah@jacaranda.org**20110119021958 |
---|
86 | Ignore-this: 908673ddd30ab88db5af8c8d80a74eb1 |
---|
87 | ] |
---|
88 | [Add src/allmydata/test/trialtest.py needed by tests for 'tahoe debug trial'. refs #1296 |
---|
89 | david-sarah@jacaranda.org**20110119020239 |
---|
90 | Ignore-this: 58d468dbd869c2e6c85552710ed47ffe |
---|
91 | ] |
---|
92 | [Tests for 'tahoe debug trial' (rebased and fixed to work with Twisted 10.2). refs #1296 |
---|
93 | david-sarah@jacaranda.org**20110119013859 |
---|
94 | Ignore-this: bb2ea70e5c3c841713ae38744b80980f |
---|
95 | ] |
---|
96 | [Documentation for 'tahoe debug trial' (rebased for trunk). refs #1296 |
---|
97 | david-sarah@jacaranda.org**20110118205729 |
---|
98 | Ignore-this: 3a4a4c2d23864851cb24c32a5b7962b4 |
---|
99 | ] |
---|
100 | [Make 'mock' a run-time rather than setup-time dependency. This is necessary in order for 'tahoe debug trial' to work. refs #1296 |
---|
101 | david-sarah@jacaranda.org**20110118205114 |
---|
102 | Ignore-this: 256c4fcd259eda02dd86ed163afc6497 |
---|
103 | ] |
---|
104 | [src/allmydata/scripts/debug.py: add 'tahoe debug trial' command (rebased for trunk). refs #1296 |
---|
105 | david-sarah@jacaranda.org**20110118204659 |
---|
106 | Ignore-this: 19e5f96d15c14625d5969ca4ae10a3cc |
---|
107 | ] |
---|
108 | [Remove setuptools_trial egg. |
---|
109 | david-sarah@jacaranda.org**20110110063306 |
---|
110 | Ignore-this: 329f5062db0c7914464c547a3957c596 |
---|
111 | ] |
---|
112 | [src/allmydata/webish.py: clean-ups and correction to a comment. Also change an open and write to use fileutil.write. See ref #1286 comment 13. |
---|
113 | david-sarah@jacaranda.org**20110117233152 |
---|
114 | Ignore-this: c4aa2f4286ad8a9fba9827d428f7fbe5 |
---|
115 | ] |
---|
116 | [setup: load the setuptools_darcs-1.2.12.egg that is bundled in the root of the source tree at setup.py time, and setup_require it. This is in order to make sure that its 'find all package data' plugin works to inform setuptools of all files which are under revision control, so that setuptools can include them in a distribution. By the way, this is ugly and horrible. refs #1054 |
---|
117 | david-sarah@jacaranda.org**20110118065445 |
---|
118 | Ignore-this: b4b9d3798a9beb9c44943daf2722a51 |
---|
119 | ] |
---|
120 | [setup: bundle a copy of setuptools_darcs-1.2.12 |
---|
121 | zooko@zooko.com**20110118062521 |
---|
122 | Ignore-this: 47e240417e0ff57a66d2f02f416a78fe |
---|
123 | This is to work-around https://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being . refs #1054. |
---|
124 | ] |
---|
125 | [NEWS: default reserved_space for new storage nodes is 1 GiB. refs #1208 |
---|
126 | david-sarah@jacaranda.org**20110117235930 |
---|
127 | Ignore-this: 81c898890f51400b7229b4b6de69eb30 |
---|
128 | ] |
---|
129 | ['tahoe debug catalog-shares': sort SIs and shnums |
---|
130 | Brian Warner <warner@lothar.com>**20110117095932 |
---|
131 | Ignore-this: f2c60da422178dfba6d03ff4957cf80c |
---|
132 | |
---|
133 | Without this, SIs or shnums could be emitted in random order, depending upon |
---|
134 | what the filesystem happens to return. |
---|
135 | ] |
---|
136 | [CLI: tests for ref #1305 (v2, remove spurious extra arg to create-alias in test) |
---|
137 | david-sarah@jacaranda.org**20110114040327 |
---|
138 | Ignore-this: 770b7117e66b04ced293b7b740b4a27f |
---|
139 | ] |
---|
140 | [CLI: make 'tahoe create-alias' and 'tahoe add-alias' accept a trailing colon on the new alias name (v2, minor change not to rely on implicit Unicode conversion). Includes doc changes and news; tests in a separate patch. fixes #1305 |
---|
141 | david-sarah@jacaranda.org**20110114034414 |
---|
142 | Ignore-this: 97e8e88d8b0f7c628b77db3adb67fa1b |
---|
143 | ] |
---|
144 | [Improve 'tahoe ln' help text. Patch by David-Sarah. Closes #1230. |
---|
145 | Brian Warner <warner@lothar.com>**20110117081421 |
---|
146 | Ignore-this: ae0ab1525fd39c95500535d6d015e706 |
---|
147 | ] |
---|
148 | [Tolerate Twisted-10.2's endpoints, patch by David-Sarah. Closes #1286. |
---|
149 | Brian Warner <warner@lothar.com>**20110117074751 |
---|
150 | Ignore-this: 8875749e4cab0e444a8452e290647bb6 |
---|
151 | |
---|
152 | The service generated by strports.service() changed in 10.2, and the ugly |
---|
153 | private-attribute-reading hack we used to glean a kernel-allocated port |
---|
154 | number (e.g. when using "tcp:0", especially during unit tests) broke, causing |
---|
155 | Tahoe to be completely unusable with Twisted-10.2 . The new ugly |
---|
156 | private-attribute-reading hack starts by figuring out what sort of service |
---|
157 | was generated, then reads different attributes accordingly. |
---|
158 | |
---|
159 | This also hushes a warning when using schemeless strports strings like "0" or |
---|
160 | "3456", by quietly prepending a "tcp:" scheme, since 10.2 complains about |
---|
161 | those. It also adds getURL() and getPortnum() accessors to the "webish" |
---|
162 | service, rather than having unit tests dig through _url and _portnum and such |
---|
163 | to find out what they are. |
---|
164 | ] |
---|
165 | [debian/control: add python-twisted-conch to dependencies. Closes #1095. |
---|
166 | Brian Warner <warner@lothar.com>**20110117071206 |
---|
167 | Ignore-this: 74714eeb8bd324d6124824f119468ab5 |
---|
168 | ] |
---|
169 | [Test changes to take account of ref #1311. |
---|
170 | david-sarah@jacaranda.org**20110117060540 |
---|
171 | Ignore-this: d787405b00a05d98abb34e5133a88b36 |
---|
172 | ] |
---|
173 | [create_node.py: add comments to default tahoe.cfg to clarify the meaning of each section. fixes #1311 |
---|
174 | david-sarah@jacaranda.org**20110117052419 |
---|
175 | Ignore-this: a2b0bba6b347bb0b0247782ee9ea9419 |
---|
176 | ] |
---|
177 | [Undo the temporary hack to check the foolscap version. refs #1246 |
---|
178 | david-sarah@jacaranda.org**20110117052042 |
---|
179 | Ignore-this: c58a8a5b91355a15d02b60c20a44bbd9 |
---|
180 | ] |
---|
181 | [misc/build_helpers/run_trial.py: fix pyflakes warning. |
---|
182 | david-sarah@jacaranda.org**20110115080456 |
---|
183 | Ignore-this: 95760a442fc397526a5d921510ec3843 |
---|
184 | ] |
---|
185 | [Set "reserved_space=1G" in newly-created storage nodes. Closes #1208. |
---|
186 | Brian Warner <warner@lothar.com>**20110116205822 |
---|
187 | Ignore-this: 2aac3dbb46e181ce7ae5e0af07bbb3bb |
---|
188 | ] |
---|
189 | [Temporary hack to investigate whether we are getting the right version of foolscap on trunk. refs #1258 |
---|
190 | david-sarah@jacaranda.org**20110116044959 |
---|
191 | Ignore-this: 4760970f9235dde07472ca980c24f75b |
---|
192 | ] |
---|
193 | [Makefile: allow tarball upload when either BB_BRANCH=='trunk' or BB_BRANCH==''. |
---|
194 | david-sarah@jacaranda.org**20110115212211 |
---|
195 | Ignore-this: 358822b25e69bfe9651a561ec387ca7a |
---|
196 | ] |
---|
197 | [misc/build_helpers/test-with-fake-dists.py: clean up directories and files only if they exist. |
---|
198 | david-sarah@jacaranda.org**20110115053011 |
---|
199 | Ignore-this: 7aa8fec370e12c62d9b56afcd55d17f |
---|
200 | ] |
---|
201 | [misc/build_helpers/test-with-fake-dists.py: wrong arguments in comment. |
---|
202 | david-sarah@jacaranda.org**20110115045325 |
---|
203 | Ignore-this: 89322306ed4fb478af4988675fd4c968 |
---|
204 | ] |
---|
205 | [Attempt to fix test-with-fake-dist build step. |
---|
206 | david-sarah@jacaranda.org**20110115022651 |
---|
207 | Ignore-this: 9d7195dca59b79f93a5f527b1ae9e79e |
---|
208 | ] |
---|
209 | [bin/tahoe-script.template: improve the error message if we end up running under Python 3. refs #1302 |
---|
210 | david-sarah@jacaranda.org**20110112211628 |
---|
211 | Ignore-this: ee78f8e4bbd197e620cb0cc6b995ac46 |
---|
212 | ] |
---|
213 | [Makefile: Fix uploading of tarballs on trunk builds. |
---|
214 | david-sarah@jacaranda.org**20110109065851 |
---|
215 | Ignore-this: 864b06e39103f46dbb6ccb74e1e333d3 |
---|
216 | ] |
---|
217 | [docs/frontends/CLI.rst: fix the rst syntax to be as actually intended :-) |
---|
218 | david-sarah@jacaranda.org**20110109014057 |
---|
219 | Ignore-this: c11331670ba89d8601ba3782ffc4f32c |
---|
220 | ] |
---|
221 | [docs/frontends/CLI.rst: really fix rst syntax error this time. |
---|
222 | david-sarah@jacaranda.org**20110109013914 |
---|
223 | Ignore-this: 59550154c9ab41488ddfdee8938d7bda |
---|
224 | ] |
---|
225 | [docs/frontends/CLI.rst: fix rst syntax error. |
---|
226 | david-sarah@jacaranda.org**20110109010943 |
---|
227 | Ignore-this: 427444f5572115059c75fa1bd8371d51 |
---|
228 | ] |
---|
229 | [docs/frontends/CLI.rst: discuss commandline/output quoting issues and wildcards. refs #1135 |
---|
230 | david-sarah@jacaranda.org**20110109010119 |
---|
231 | Ignore-this: 533938d89be878b404a8540aebdf68ad |
---|
232 | ] |
---|
233 | [setup.py: add Python 2.7 trove classifier. |
---|
234 | david-sarah@jacaranda.org**20110108211212 |
---|
235 | Ignore-this: b479c0a1adf9b7a2d1fdc54abc6582e6 |
---|
236 | ] |
---|
237 | [docs/FTP-and-SFTP.rst: document issue in ref #1297. Remove known issue #1045 which is fixed. Also some cosmetic changes. |
---|
238 | david-sarah@jacaranda.org**20110108061038 |
---|
239 | Ignore-this: 8d9aa2e33f1054545f7bed47bf0e647d |
---|
240 | ] |
---|
241 | [misc/build_helpers/show-tool-versions.py: remove attempts to show stdout.encoding and stderr.encoding that always printed None due to redirection. Also remove code to show os.path.supports_unicode_filenames which is not useful. refs #1251 |
---|
242 | david-sarah@jacaranda.org**20110103015144 |
---|
243 | Ignore-this: 45e11431f7e2e0cebcb58e1841485cf8 |
---|
244 | ] |
---|
245 | [NEWS: 'top' for node processes, WUI formatting, removal of GUI apps, documentation updates, foolscap dependency. refs #174, #1219, #1225 |
---|
246 | david-sarah@jacaranda.org**20110106005727 |
---|
247 | Ignore-this: f61ac58b4d10e635feb6f7391b1b48fe |
---|
248 | ] |
---|
249 | [Makefile: update 'clean' target for files in bin/ |
---|
250 | david-sarah@jacaranda.org**20110103052738 |
---|
251 | Ignore-this: 2bdbc4a50e13e508b66d0f65718c79b2 |
---|
252 | ] |
---|
253 | [docs: update performance.rst to describe the difference between already-uploaded and not-already-uploaded, to parameterize segment size, and to use "~A" to mean "approximately A" |
---|
254 | zooko@zooko.com**20110104065455 |
---|
255 | Ignore-this: 8df0d79a062ee19854c0211bd202f606 |
---|
256 | ] |
---|
257 | [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 |
---|
258 | david-sarah@jacaranda.org**20101127232650 |
---|
259 | Ignore-this: 42a86f3eecfdc1ea7b76a7cc68626898 |
---|
260 | ] |
---|
261 | [test_runner: avoid unnecessary use of non-ASCII. |
---|
262 | david-sarah@jacaranda.org**20110101100101 |
---|
263 | Ignore-this: e2ff40dce6bb3b021306f2913d4e75df |
---|
264 | ] |
---|
265 | [docs/quickstart.html: fix redundant, badly nested tag. refs #1284 |
---|
266 | david-sarah@jacaranda.org**20110102175159 |
---|
267 | Ignore-this: 2ae9cc0b47d2e87b9eb64a0f517c4eef |
---|
268 | ] |
---|
269 | [docs/quickstart.html: information about 'troublesome dependencies' and 'verified systems' de-emphasized by smaller italic font. Re-wrap so that the HTML source is readable (just about) as text. Minor wording tweaks. Improve organization by adding 'Windows Caveats' subsection. fixes #1284 |
---|
270 | david-sarah@jacaranda.org**20110102174212 |
---|
271 | Ignore-this: e9dc57983974478200856651c5318fee |
---|
272 | ] |
---|
273 | [NEWS: update entry for removal of Mac and Windows apps. refs #1282 |
---|
274 | david-sarah@jacaranda.org**20101226042245 |
---|
275 | Ignore-this: c8099bc6e8235718d042c9a13c1e2425 |
---|
276 | ] |
---|
277 | [Move dependency imports from windows/depends.py (which has gone away) into src/allmydata/windows/tahoesvc.py. Also fix a pyflakes warning, and change the service display name from 'Allmydata Tahoe Node' to 'Tahoe-LAFS node'. refs #1282 |
---|
278 | david-sarah@jacaranda.org**20101226042100 |
---|
279 | Ignore-this: ee45f324934e1251380206dbee6346d0 |
---|
280 | ] |
---|
281 | [Remove unmaintained Windows GUI app, except for windows/tahoesvc.py which is moved to src/allmydata/windows. refs #1282 |
---|
282 | david-sarah@jacaranda.org**20101226040237 |
---|
283 | Ignore-this: cae37b6622a7dd5940acc7d3e6a98b90 |
---|
284 | ] |
---|
285 | [Remove the Makefile targets relating to the Mac GUI app. refs #1282 |
---|
286 | david-sarah@jacaranda.org**20101226025859 |
---|
287 | Ignore-this: 75303be783974b41138744ec62b07965 |
---|
288 | ] |
---|
289 | [NEWS: remove unmaintained Mac GUI app. refs #1282 |
---|
290 | david-sarah@jacaranda.org**20101226020858 |
---|
291 | Ignore-this: 40474a07f4a550b48563d35350be7ab5 |
---|
292 | ] |
---|
293 | [Remove unmaintained Mac GUI app. fixes #1282 |
---|
294 | david-sarah@jacaranda.org**20101226020508 |
---|
295 | Ignore-this: b3613bf1abfd284d542bf7c753ec557a |
---|
296 | ] |
---|
297 | [Remove src/allmydata/util/find_exe.py which is no longer used. fixes #1150 |
---|
298 | david-sarah@jacaranda.org**20101226023206 |
---|
299 | Ignore-this: 7436c9b53bf210aed34a1a973cd9cace |
---|
300 | ] |
---|
301 | [status_web_pages_review.darcs.patch |
---|
302 | freestorm77@gmail.com**20110102034214 |
---|
303 | Ignore-this: 29f1ecb36177f10f3f846b3d56b313b2 |
---|
304 | |
---|
305 | I make some changes on status web pages |
---|
306 | |
---|
307 | status.xhtml: |
---|
308 | - Delete unused webform_css link |
---|
309 | - Align tables on the left |
---|
310 | |
---|
311 | tahoe-css: |
---|
312 | - Do some minor changes on code synthax |
---|
313 | - changes table.status-download-events style to look like other tables |
---|
314 | |
---|
315 | status.py: |
---|
316 | - Align table on the left |
---|
317 | - Changes table header |
---|
318 | - Add heading tags |
---|
319 | - Modify google api graph: add image border, calculate height to feet data |
---|
320 | |
---|
321 | signed-off-by: zooko@zooko.com |
---|
322 | fixes #1219 |
---|
323 | ] |
---|
324 | [test_storage.py: fix a pyflakes unused import warning. |
---|
325 | david-sarah@jacaranda.org**20101231220756 |
---|
326 | Ignore-this: df08231540cb7dff9d2b038e47ab30ee |
---|
327 | ] |
---|
328 | [test_storage.py: leave at least 512 MiB free when running test_large_share. refs #1195 |
---|
329 | david-sarah@jacaranda.org**20101231203215 |
---|
330 | Ignore-this: b2144c0341c3452b5d4ba219e284ea0e |
---|
331 | ] |
---|
332 | [storage: use fileutil's version of get_disk_stats() and get_available_space(), use mockery/fakery in tests, enable large share test on platforms with sparse files and if > 4 GiB of disk space is currently available |
---|
333 | zooko@zooko.com**20100910173629 |
---|
334 | Ignore-this: 1304f1164c661de6d5304f993eb9b27b |
---|
335 | ] |
---|
336 | [fileutil: copy in the get_disk_stats() and get_available_space() functions from storage/server.py |
---|
337 | zooko@zooko.com**20100910173520 |
---|
338 | Ignore-this: 8b15569715f710f4fc5092f7ca109253 |
---|
339 | ] |
---|
340 | [Update foolscap version requirement to 0.6.0, to address http://foolscap.lothar.com/trac/ticket/167 |
---|
341 | david-sarah@jacaranda.org**20101231060039 |
---|
342 | Ignore-this: 98d2b8086a1a500b9f4565bca5a3810 |
---|
343 | ] |
---|
344 | [docs/webapi.rst: typos. |
---|
345 | david-sarah@jacaranda.org**20101230034422 |
---|
346 | Ignore-this: d1f5166d72cc711f7e0d9981eac9105e |
---|
347 | ] |
---|
348 | [docs/webapi.rst: capitalization, formatting of section on URL character encoding, and a correction about Internet Explorer. |
---|
349 | david-sarah@jacaranda.org**20101230034049 |
---|
350 | Ignore-this: b3b9819d2fb264b4cdc5c8afd4e8c48d |
---|
351 | ] |
---|
352 | [docs: corrections and clarifications. |
---|
353 | david-sarah@jacaranda.org**20101227051056 |
---|
354 | Ignore-this: e33202858c7644c58f3f924b164294b6 |
---|
355 | ] |
---|
356 | [docs: more formatting cleanups and corrections. Spell webapi and wapi as web-API. |
---|
357 | david-sarah@jacaranda.org**20101227050533 |
---|
358 | Ignore-this: 18b23cbfb780df585d8a722a1ec63e94 |
---|
359 | ] |
---|
360 | [docs/debian.rst: bring description of building dependencies from source up-to-date, and change hostname from allmydata.com to tahoe-lafs.org. |
---|
361 | david-sarah@jacaranda.org**20101212222912 |
---|
362 | Ignore-this: f38462afc88b4475195610385a28391c |
---|
363 | ] |
---|
364 | [docs/architecture.rst: correct rst syntax. |
---|
365 | david-sarah@jacaranda.org**20101212202003 |
---|
366 | Ignore-this: 3fbe12feb28bec6f1c63aedbc79aad21 |
---|
367 | ] |
---|
368 | [docs/architecture.rst: formatting. |
---|
369 | david-sarah@jacaranda.org**20101212201719 |
---|
370 | Ignore-this: 305fa5dfc2939355eaf6d0d2161eb1ff |
---|
371 | ] |
---|
372 | [docs: linkification, wording improvements. |
---|
373 | david-sarah@jacaranda.org**20101212201234 |
---|
374 | Ignore-this: 4e67287f527a8bc728cfbd93255d2aae |
---|
375 | ] |
---|
376 | [docs: formatting. |
---|
377 | david-sarah@jacaranda.org**20101212201115 |
---|
378 | Ignore-this: 2e0ed394ac7726651d3a4f2c4b0d3798 |
---|
379 | ] |
---|
380 | [docs/configuration.rst: more formatting tweaks; which -> that. |
---|
381 | david-sarah@jacaranda.org**20101212195522 |
---|
382 | Ignore-this: a7becb7021854ca5a90edd892b36fdd7 |
---|
383 | ] |
---|
384 | [docs/configuration.rst: more changes to formatting. |
---|
385 | david-sarah@jacaranda.org**20101212194511 |
---|
386 | Ignore-this: 491aac33e5f5268d224359f1447d10be |
---|
387 | ] |
---|
388 | [docs/configuration.rst: changes to formatting (mainly putting commands and filenames in monospace). |
---|
389 | david-sarah@jacaranda.org**20101212181828 |
---|
390 | Ignore-this: 8a1480e2d5f43bee678476424615b50f |
---|
391 | ] |
---|
392 | [scripts/backupdb.py: more accurate comment about path field. |
---|
393 | david-sarah@jacaranda.org**20101212170320 |
---|
394 | Ignore-this: 50e47a2228a85207bbcd188a78a0d4e6 |
---|
395 | ] |
---|
396 | [scripts/cli.py: fix missing 'put' in usage example for 'tahoe put'. |
---|
397 | david-sarah@jacaranda.org**20101212170207 |
---|
398 | Ignore-this: 2cbadf066fff611fc03d3c0ff97ce6ec |
---|
399 | ] |
---|
400 | [docs/frontends/CLI.rst: changes to formatting (mainly putting commands and filenames in monospace), and to command syntax to reflect that DIRCAP/... is accepted. Clarify the syntax of 'tahoe put' and other minor corrections. Tahoe -> Tahoe-LAFS. |
---|
401 | david-sarah@jacaranda.org**20101212165800 |
---|
402 | Ignore-this: a123ef6b564aa8624d1e79c97068ea12 |
---|
403 | ] |
---|
404 | [docs/frontends/CLI.rst: Unicode arguments to 'tahoe' work on Windows as of v1.7.1. |
---|
405 | david-sarah@jacaranda.org**20101212063740 |
---|
406 | Ignore-this: 3977a99dfa86ac33a44171deaf43aaab |
---|
407 | ] |
---|
408 | [docs/known_issues.rst: fix title and linkify another URL. refs #1225 |
---|
409 | david-sarah@jacaranda.org**20101212062817 |
---|
410 | Ignore-this: cc91287f7fb51c23440b3d2fe79c449c |
---|
411 | ] |
---|
412 | [docs/known_issues.rst: fix an external link. refs #1225 |
---|
413 | david-sarah@jacaranda.org**20101212062435 |
---|
414 | Ignore-this: b8cbf12f353131756c358965c48060ec |
---|
415 | ] |
---|
416 | [Fix a link from uri.rst to dirnodes.rst. refs #1225 |
---|
417 | david-sarah@jacaranda.org**20101212054502 |
---|
418 | Ignore-this: af6205299f5c9a33229cab259c00f9d5 |
---|
419 | ] |
---|
420 | [Fix a link from webapi.rst to FTP-and-SFTP.rst. refs #1225 |
---|
421 | david-sarah@jacaranda.org**20101212053435 |
---|
422 | Ignore-this: 2b9f88678c3447ea860d6b61e8799858 |
---|
423 | ] |
---|
424 | [More specific hyperlink to architecture.rst from helper.rst. refs #1225 |
---|
425 | david-sarah@jacaranda.org**20101212052607 |
---|
426 | Ignore-this: 50424c768fca481252fabf58424852dc |
---|
427 | ] |
---|
428 | [Update hyperlinks between docs, and linkify some external references. refs #1225 |
---|
429 | david-sarah@jacaranda.org**20101212051459 |
---|
430 | Ignore-this: cd43a4c3d3de1f832abfa88d5fc4ace1 |
---|
431 | ] |
---|
432 | [docs/specifications/dirnodes.rst: fix references to mutable.rst. refs #1225 |
---|
433 | david-sarah@jacaranda.org**20101212012720 |
---|
434 | Ignore-this: 6819b4b4e06e947ee48b365e840db37d |
---|
435 | ] |
---|
436 | [docs/specifications/mutable.rst: correct the magic string for v1 mutable containers. refs #1225 |
---|
437 | david-sarah@jacaranda.org**20101212011400 |
---|
438 | Ignore-this: 99a5fcdd40cef83dbb08f323f6cdaaca |
---|
439 | ] |
---|
440 | [Move .txt files in docs/frontends and docs/specifications to .rst. refs #1225 |
---|
441 | david-sarah@jacaranda.org**20101212010251 |
---|
442 | Ignore-this: 8796d35d928370f7dc6ad2dafdc1c0fe |
---|
443 | ] |
---|
444 | [Convert docs/frontends and docs/specifications to reStructuredText format (not including file moves). |
---|
445 | david-sarah@jacaranda.org**20101212004632 |
---|
446 | Ignore-this: e3ceb2d832d73875abe48624ddbb5622 |
---|
447 | ] |
---|
448 | [scripts/cli.py: remove the disclaimer in the help for 'tahoe cp' that it does not handle non-ASCII filenames well. (At least, we intend to handle them.) |
---|
449 | david-sarah@jacaranda.org**20101130002145 |
---|
450 | Ignore-this: 94c003efaa20b9eb4a83503d79844ca |
---|
451 | ] |
---|
452 | [relnotes.txt: fifth -> sixth labor-of-love release |
---|
453 | zooko@zooko.com**20101129045647 |
---|
454 | Ignore-this: 21c245015268b38916e3a138d256c09d |
---|
455 | ] |
---|
456 | [Makefile: BB_BRANCH is set to the empty string for trunk, not the string 'trunk'. |
---|
457 | david-sarah@jacaranda.org**20101128233512 |
---|
458 | Ignore-this: 5a7ef8eb10475636d21b91e25b56c369 |
---|
459 | ] |
---|
460 | [relnotes.txt: eleventh -> twelfth release. |
---|
461 | david-sarah@jacaranda.org**20101128223321 |
---|
462 | Ignore-this: 1e26410156a665271c1170803dea2c0d |
---|
463 | ] |
---|
464 | [relnotes.tst: point to known_issues.rst, not known_issues.txt. |
---|
465 | david-sarah@jacaranda.org**20101128222918 |
---|
466 | Ignore-this: 60194eb4544cac446fe4f60b3e34b887 |
---|
467 | ] |
---|
468 | [quickstart.html: fix link to point to allmydata-tahoe-1.8.1.zip. |
---|
469 | david-sarah@jacaranda.org**20101128221728 |
---|
470 | Ignore-this: 7b3ee86f8256aa12f5d862f689f3ee29 |
---|
471 | ] |
---|
472 | [TAG allmydata-tahoe-1.8.1 |
---|
473 | david-sarah@jacaranda.org**20101128212336 |
---|
474 | Ignore-this: 9c18bdeaef4822f590d2a0d879e00621 |
---|
475 | ] |
---|
476 | Patch bundle hash: |
---|
477 | 458b3a9f0328564abfe6e442005e6415f4071028 |
---|