1 | 1 patch for repository zooko@dev.allmydata.org:/home/darcs/tahoe-lafs/trunk: |
---|
2 | |
---|
3 | Sun Jan 16 22:54:29 MST 2011 zooko@zooko.com |
---|
4 | * setup: comment-out build-dependency on setuptools_darcs in order to avoid a bug in Distribute |
---|
5 | This means you must manuallky install setuptools_darcs before building a distribution such as with "python setup.py sdist" or "python setup.py bdist_egg" or else the resulting distribution will be missing some files (docs, .xhtml files for the WUI, and in general any file that isn't a Python file which is part of the "allmydata" Python package-directory). |
---|
6 | |
---|
7 | New patches: |
---|
8 | |
---|
9 | [setup: comment-out build-dependency on setuptools_darcs in order to avoid a bug in Distribute |
---|
10 | zooko@zooko.com**20110117055429 |
---|
11 | Ignore-this: b228853a423fc5b06b822c45287225f5 |
---|
12 | This means you must manuallky install setuptools_darcs before building a distribution such as with "python setup.py sdist" or "python setup.py bdist_egg" or else the resulting distribution will be missing some files (docs, .xhtml files for the WUI, and in general any file that isn't a Python file which is part of the "allmydata" Python package-directory). |
---|
13 | ] hunk ./setup.py 152 |
---|
14 | # http://pypi.python.org/pypi/setuptools_trial |
---|
15 | setup_requires.extend(['setuptools_trial >= 0.5']) |
---|
16 | |
---|
17 | -# setuptools_darcs is required to produce complete distributions (such as |
---|
18 | -# with "sdist" or "bdist_egg") (unless there is a PKG-INFO file present which |
---|
19 | -# shows that this is itself a source distribution). For simplicity, and |
---|
20 | -# because there is some unknown error with setuptools_darcs when building and |
---|
21 | -# testing tahoe all in one python command on some platforms, we always add it |
---|
22 | -# to setup_requires. http://pypi.python.org/pypi/setuptools_darcs |
---|
23 | -setup_requires.append('setuptools_darcs >= 1.1.0') |
---|
24 | +# setuptools_darcs is required to produce complete distributions (such |
---|
25 | +# as with "sdist" or "bdist_egg"), unless there is a |
---|
26 | +# src/allmydata_tahoe.egg-info/SOURCE.txt file, which if present |
---|
27 | +# contains a complete list of files that should be included. |
---|
28 | +# http://pypi.python.org/pypi/setuptools_darcs However, requiring it |
---|
29 | +# runs afoul of a bug in Distribute, which was shipped in Ubuntu |
---|
30 | +# Lucid, so for now you have to manually install it before building |
---|
31 | +# sdists or eggs: |
---|
32 | +# 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 |
---|
33 | +if False: |
---|
34 | + setup_requires.append('setuptools_darcs >= 1.1.0') |
---|
35 | |
---|
36 | # trialcoverage is required if you want the "trial" unit test runner to have a |
---|
37 | # "--reporter=bwverbose-coverage" option which produces code-coverage results. |
---|
38 | |
---|
39 | Context: |
---|
40 | |
---|
41 | [Temporary hack to investigate whether we are getting the right version of foolscap on trunk. refs #1258 |
---|
42 | david-sarah@jacaranda.org**20110116044959 |
---|
43 | Ignore-this: 4760970f9235dde07472ca980c24f75b |
---|
44 | ] |
---|
45 | [Makefile: allow tarball upload when either BB_BRANCH=='trunk' or BB_BRANCH==''. |
---|
46 | david-sarah@jacaranda.org**20110115212211 |
---|
47 | Ignore-this: 358822b25e69bfe9651a561ec387ca7a |
---|
48 | ] |
---|
49 | [misc/build_helpers/test-with-fake-dists.py: clean up directories and files only if they exist. |
---|
50 | david-sarah@jacaranda.org**20110115053011 |
---|
51 | Ignore-this: 7aa8fec370e12c62d9b56afcd55d17f |
---|
52 | ] |
---|
53 | [misc/build_helpers/test-with-fake-dists.py: wrong arguments in comment. |
---|
54 | david-sarah@jacaranda.org**20110115045325 |
---|
55 | Ignore-this: 89322306ed4fb478af4988675fd4c968 |
---|
56 | ] |
---|
57 | [Attempt to fix test-with-fake-dist build step. |
---|
58 | david-sarah@jacaranda.org**20110115022651 |
---|
59 | Ignore-this: 9d7195dca59b79f93a5f527b1ae9e79e |
---|
60 | ] |
---|
61 | [bin/tahoe-script.template: improve the error message if we end up running under Python 3. refs #1302 |
---|
62 | david-sarah@jacaranda.org**20110112211628 |
---|
63 | Ignore-this: ee78f8e4bbd197e620cb0cc6b995ac46 |
---|
64 | ] |
---|
65 | [Makefile: Fix uploading of tarballs on trunk builds. |
---|
66 | david-sarah@jacaranda.org**20110109065851 |
---|
67 | Ignore-this: 864b06e39103f46dbb6ccb74e1e333d3 |
---|
68 | ] |
---|
69 | [docs/frontends/CLI.rst: fix the rst syntax to be as actually intended :-) |
---|
70 | david-sarah@jacaranda.org**20110109014057 |
---|
71 | Ignore-this: c11331670ba89d8601ba3782ffc4f32c |
---|
72 | ] |
---|
73 | [docs/frontends/CLI.rst: really fix rst syntax error this time. |
---|
74 | david-sarah@jacaranda.org**20110109013914 |
---|
75 | Ignore-this: 59550154c9ab41488ddfdee8938d7bda |
---|
76 | ] |
---|
77 | [docs/frontends/CLI.rst: fix rst syntax error. |
---|
78 | david-sarah@jacaranda.org**20110109010943 |
---|
79 | Ignore-this: 427444f5572115059c75fa1bd8371d51 |
---|
80 | ] |
---|
81 | [docs/frontends/CLI.rst: discuss commandline/output quoting issues and wildcards. refs #1135 |
---|
82 | david-sarah@jacaranda.org**20110109010119 |
---|
83 | Ignore-this: 533938d89be878b404a8540aebdf68ad |
---|
84 | ] |
---|
85 | [setup.py: add Python 2.7 trove classifier. |
---|
86 | david-sarah@jacaranda.org**20110108211212 |
---|
87 | Ignore-this: b479c0a1adf9b7a2d1fdc54abc6582e6 |
---|
88 | ] |
---|
89 | [docs/FTP-and-SFTP.rst: document issue in ref #1297. Remove known issue #1045 which is fixed. Also some cosmetic changes. |
---|
90 | david-sarah@jacaranda.org**20110108061038 |
---|
91 | Ignore-this: 8d9aa2e33f1054545f7bed47bf0e647d |
---|
92 | ] |
---|
93 | [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 |
---|
94 | david-sarah@jacaranda.org**20110103015144 |
---|
95 | Ignore-this: 45e11431f7e2e0cebcb58e1841485cf8 |
---|
96 | ] |
---|
97 | [NEWS: 'top' for node processes, WUI formatting, removal of GUI apps, documentation updates, foolscap dependency. refs #174, #1219, #1225 |
---|
98 | david-sarah@jacaranda.org**20110106005727 |
---|
99 | Ignore-this: f61ac58b4d10e635feb6f7391b1b48fe |
---|
100 | ] |
---|
101 | [Makefile: update 'clean' target for files in bin/ |
---|
102 | david-sarah@jacaranda.org**20110103052738 |
---|
103 | Ignore-this: 2bdbc4a50e13e508b66d0f65718c79b2 |
---|
104 | ] |
---|
105 | [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 |
---|
106 | david-sarah@jacaranda.org**20101127232650 |
---|
107 | Ignore-this: 42a86f3eecfdc1ea7b76a7cc68626898 |
---|
108 | ] |
---|
109 | [test_runner: avoid unnecessary use of non-ASCII. |
---|
110 | david-sarah@jacaranda.org**20110101100101 |
---|
111 | Ignore-this: e2ff40dce6bb3b021306f2913d4e75df |
---|
112 | ] |
---|
113 | [docs/quickstart.html: fix redundant, badly nested tag. refs #1284 |
---|
114 | david-sarah@jacaranda.org**20110102175159 |
---|
115 | Ignore-this: 2ae9cc0b47d2e87b9eb64a0f517c4eef |
---|
116 | ] |
---|
117 | [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 |
---|
118 | david-sarah@jacaranda.org**20110102174212 |
---|
119 | Ignore-this: e9dc57983974478200856651c5318fee |
---|
120 | ] |
---|
121 | [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" |
---|
122 | zooko@zooko.com**20110104065455 |
---|
123 | Ignore-this: 8df0d79a062ee19854c0211bd202f606 |
---|
124 | ] |
---|
125 | [NEWS: update entry for removal of Mac and Windows apps. refs #1282 |
---|
126 | david-sarah@jacaranda.org**20101226042245 |
---|
127 | Ignore-this: c8099bc6e8235718d042c9a13c1e2425 |
---|
128 | ] |
---|
129 | [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 |
---|
130 | david-sarah@jacaranda.org**20101226042100 |
---|
131 | Ignore-this: ee45f324934e1251380206dbee6346d0 |
---|
132 | ] |
---|
133 | [Remove unmaintained Windows GUI app, except for windows/tahoesvc.py which is moved to src/allmydata/windows. refs #1282 |
---|
134 | david-sarah@jacaranda.org**20101226040237 |
---|
135 | Ignore-this: cae37b6622a7dd5940acc7d3e6a98b90 |
---|
136 | ] |
---|
137 | [Remove the Makefile targets relating to the Mac GUI app. refs #1282 |
---|
138 | david-sarah@jacaranda.org**20101226025859 |
---|
139 | Ignore-this: 75303be783974b41138744ec62b07965 |
---|
140 | ] |
---|
141 | [NEWS: remove unmaintained Mac GUI app. refs #1282 |
---|
142 | david-sarah@jacaranda.org**20101226020858 |
---|
143 | Ignore-this: 40474a07f4a550b48563d35350be7ab5 |
---|
144 | ] |
---|
145 | [Remove unmaintained Mac GUI app. fixes #1282 |
---|
146 | david-sarah@jacaranda.org**20101226020508 |
---|
147 | Ignore-this: b3613bf1abfd284d542bf7c753ec557a |
---|
148 | ] |
---|
149 | [Remove src/allmydata/util/find_exe.py which is no longer used. fixes #1150 |
---|
150 | david-sarah@jacaranda.org**20101226023206 |
---|
151 | Ignore-this: 7436c9b53bf210aed34a1a973cd9cace |
---|
152 | ] |
---|
153 | [status_web_pages_review.darcs.patch |
---|
154 | freestorm77@gmail.com**20110102034214 |
---|
155 | Ignore-this: 29f1ecb36177f10f3f846b3d56b313b2 |
---|
156 | |
---|
157 | I make some changes on status web pages |
---|
158 | |
---|
159 | status.xhtml: |
---|
160 | - Delete unused webform_css link |
---|
161 | - Align tables on the left |
---|
162 | |
---|
163 | tahoe-css: |
---|
164 | - Do some minor changes on code synthax |
---|
165 | - changes table.status-download-events style to look like other tables |
---|
166 | |
---|
167 | status.py: |
---|
168 | - Align table on the left |
---|
169 | - Changes table header |
---|
170 | - Add heading tags |
---|
171 | - Modify google api graph: add image border, calculate height to feet data |
---|
172 | |
---|
173 | signed-off-by: zooko@zooko.com |
---|
174 | fixes #1219 |
---|
175 | ] |
---|
176 | [test_storage.py: fix a pyflakes unused import warning. |
---|
177 | david-sarah@jacaranda.org**20101231220756 |
---|
178 | Ignore-this: df08231540cb7dff9d2b038e47ab30ee |
---|
179 | ] |
---|
180 | [test_storage.py: leave at least 512 MiB free when running test_large_share. refs #1195 |
---|
181 | david-sarah@jacaranda.org**20101231203215 |
---|
182 | Ignore-this: b2144c0341c3452b5d4ba219e284ea0e |
---|
183 | ] |
---|
184 | [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 |
---|
185 | zooko@zooko.com**20100910173629 |
---|
186 | Ignore-this: 1304f1164c661de6d5304f993eb9b27b |
---|
187 | ] |
---|
188 | [fileutil: copy in the get_disk_stats() and get_available_space() functions from storage/server.py |
---|
189 | zooko@zooko.com**20100910173520 |
---|
190 | Ignore-this: 8b15569715f710f4fc5092f7ca109253 |
---|
191 | ] |
---|
192 | [Update foolscap version requirement to 0.6.0, to address http://foolscap.lothar.com/trac/ticket/167 |
---|
193 | david-sarah@jacaranda.org**20101231060039 |
---|
194 | Ignore-this: 98d2b8086a1a500b9f4565bca5a3810 |
---|
195 | ] |
---|
196 | [docs/webapi.rst: typos. |
---|
197 | david-sarah@jacaranda.org**20101230034422 |
---|
198 | Ignore-this: d1f5166d72cc711f7e0d9981eac9105e |
---|
199 | ] |
---|
200 | [docs/webapi.rst: capitalization, formatting of section on URL character encoding, and a correction about Internet Explorer. |
---|
201 | david-sarah@jacaranda.org**20101230034049 |
---|
202 | Ignore-this: b3b9819d2fb264b4cdc5c8afd4e8c48d |
---|
203 | ] |
---|
204 | [docs: corrections and clarifications. |
---|
205 | david-sarah@jacaranda.org**20101227051056 |
---|
206 | Ignore-this: e33202858c7644c58f3f924b164294b6 |
---|
207 | ] |
---|
208 | [docs: more formatting cleanups and corrections. Spell webapi and wapi as web-API. |
---|
209 | david-sarah@jacaranda.org**20101227050533 |
---|
210 | Ignore-this: 18b23cbfb780df585d8a722a1ec63e94 |
---|
211 | ] |
---|
212 | [docs/debian.rst: bring description of building dependencies from source up-to-date, and change hostname from allmydata.com to tahoe-lafs.org. |
---|
213 | david-sarah@jacaranda.org**20101212222912 |
---|
214 | Ignore-this: f38462afc88b4475195610385a28391c |
---|
215 | ] |
---|
216 | [docs/architecture.rst: correct rst syntax. |
---|
217 | david-sarah@jacaranda.org**20101212202003 |
---|
218 | Ignore-this: 3fbe12feb28bec6f1c63aedbc79aad21 |
---|
219 | ] |
---|
220 | [docs/architecture.rst: formatting. |
---|
221 | david-sarah@jacaranda.org**20101212201719 |
---|
222 | Ignore-this: 305fa5dfc2939355eaf6d0d2161eb1ff |
---|
223 | ] |
---|
224 | [docs: linkification, wording improvements. |
---|
225 | david-sarah@jacaranda.org**20101212201234 |
---|
226 | Ignore-this: 4e67287f527a8bc728cfbd93255d2aae |
---|
227 | ] |
---|
228 | [docs: formatting. |
---|
229 | david-sarah@jacaranda.org**20101212201115 |
---|
230 | Ignore-this: 2e0ed394ac7726651d3a4f2c4b0d3798 |
---|
231 | ] |
---|
232 | [docs/configuration.rst: more formatting tweaks; which -> that. |
---|
233 | david-sarah@jacaranda.org**20101212195522 |
---|
234 | Ignore-this: a7becb7021854ca5a90edd892b36fdd7 |
---|
235 | ] |
---|
236 | [docs/configuration.rst: more changes to formatting. |
---|
237 | david-sarah@jacaranda.org**20101212194511 |
---|
238 | Ignore-this: 491aac33e5f5268d224359f1447d10be |
---|
239 | ] |
---|
240 | [docs/configuration.rst: changes to formatting (mainly putting commands and filenames in monospace). |
---|
241 | david-sarah@jacaranda.org**20101212181828 |
---|
242 | Ignore-this: 8a1480e2d5f43bee678476424615b50f |
---|
243 | ] |
---|
244 | [scripts/backupdb.py: more accurate comment about path field. |
---|
245 | david-sarah@jacaranda.org**20101212170320 |
---|
246 | Ignore-this: 50e47a2228a85207bbcd188a78a0d4e6 |
---|
247 | ] |
---|
248 | [scripts/cli.py: fix missing 'put' in usage example for 'tahoe put'. |
---|
249 | david-sarah@jacaranda.org**20101212170207 |
---|
250 | Ignore-this: 2cbadf066fff611fc03d3c0ff97ce6ec |
---|
251 | ] |
---|
252 | [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. |
---|
253 | david-sarah@jacaranda.org**20101212165800 |
---|
254 | Ignore-this: a123ef6b564aa8624d1e79c97068ea12 |
---|
255 | ] |
---|
256 | [docs/frontends/CLI.rst: Unicode arguments to 'tahoe' work on Windows as of v1.7.1. |
---|
257 | david-sarah@jacaranda.org**20101212063740 |
---|
258 | Ignore-this: 3977a99dfa86ac33a44171deaf43aaab |
---|
259 | ] |
---|
260 | [docs/known_issues.rst: fix title and linkify another URL. refs #1225 |
---|
261 | david-sarah@jacaranda.org**20101212062817 |
---|
262 | Ignore-this: cc91287f7fb51c23440b3d2fe79c449c |
---|
263 | ] |
---|
264 | [docs/known_issues.rst: fix an external link. refs #1225 |
---|
265 | david-sarah@jacaranda.org**20101212062435 |
---|
266 | Ignore-this: b8cbf12f353131756c358965c48060ec |
---|
267 | ] |
---|
268 | [Fix a link from uri.rst to dirnodes.rst. refs #1225 |
---|
269 | david-sarah@jacaranda.org**20101212054502 |
---|
270 | Ignore-this: af6205299f5c9a33229cab259c00f9d5 |
---|
271 | ] |
---|
272 | [Fix a link from webapi.rst to FTP-and-SFTP.rst. refs #1225 |
---|
273 | david-sarah@jacaranda.org**20101212053435 |
---|
274 | Ignore-this: 2b9f88678c3447ea860d6b61e8799858 |
---|
275 | ] |
---|
276 | [More specific hyperlink to architecture.rst from helper.rst. refs #1225 |
---|
277 | david-sarah@jacaranda.org**20101212052607 |
---|
278 | Ignore-this: 50424c768fca481252fabf58424852dc |
---|
279 | ] |
---|
280 | [Update hyperlinks between docs, and linkify some external references. refs #1225 |
---|
281 | david-sarah@jacaranda.org**20101212051459 |
---|
282 | Ignore-this: cd43a4c3d3de1f832abfa88d5fc4ace1 |
---|
283 | ] |
---|
284 | [docs/specifications/dirnodes.rst: fix references to mutable.rst. refs #1225 |
---|
285 | david-sarah@jacaranda.org**20101212012720 |
---|
286 | Ignore-this: 6819b4b4e06e947ee48b365e840db37d |
---|
287 | ] |
---|
288 | [docs/specifications/mutable.rst: correct the magic string for v1 mutable containers. refs #1225 |
---|
289 | david-sarah@jacaranda.org**20101212011400 |
---|
290 | Ignore-this: 99a5fcdd40cef83dbb08f323f6cdaaca |
---|
291 | ] |
---|
292 | [Move .txt files in docs/frontends and docs/specifications to .rst. refs #1225 |
---|
293 | david-sarah@jacaranda.org**20101212010251 |
---|
294 | Ignore-this: 8796d35d928370f7dc6ad2dafdc1c0fe |
---|
295 | ] |
---|
296 | [Convert docs/frontends and docs/specifications to reStructuredText format (not including file moves). |
---|
297 | david-sarah@jacaranda.org**20101212004632 |
---|
298 | Ignore-this: e3ceb2d832d73875abe48624ddbb5622 |
---|
299 | ] |
---|
300 | [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.) |
---|
301 | david-sarah@jacaranda.org**20101130002145 |
---|
302 | Ignore-this: 94c003efaa20b9eb4a83503d79844ca |
---|
303 | ] |
---|
304 | [relnotes.txt: fifth -> sixth labor-of-love release |
---|
305 | zooko@zooko.com**20101129045647 |
---|
306 | Ignore-this: 21c245015268b38916e3a138d256c09d |
---|
307 | ] |
---|
308 | [Makefile: BB_BRANCH is set to the empty string for trunk, not the string 'trunk'. |
---|
309 | david-sarah@jacaranda.org**20101128233512 |
---|
310 | Ignore-this: 5a7ef8eb10475636d21b91e25b56c369 |
---|
311 | ] |
---|
312 | [relnotes.txt: eleventh -> twelfth release. |
---|
313 | david-sarah@jacaranda.org**20101128223321 |
---|
314 | Ignore-this: 1e26410156a665271c1170803dea2c0d |
---|
315 | ] |
---|
316 | [relnotes.tst: point to known_issues.rst, not known_issues.txt. |
---|
317 | david-sarah@jacaranda.org**20101128222918 |
---|
318 | Ignore-this: 60194eb4544cac446fe4f60b3e34b887 |
---|
319 | ] |
---|
320 | [quickstart.html: fix link to point to allmydata-tahoe-1.8.1.zip. |
---|
321 | david-sarah@jacaranda.org**20101128221728 |
---|
322 | Ignore-this: 7b3ee86f8256aa12f5d862f689f3ee29 |
---|
323 | ] |
---|
324 | [TAG allmydata-tahoe-1.8.1 |
---|
325 | david-sarah@jacaranda.org**20101128212336 |
---|
326 | Ignore-this: 9c18bdeaef4822f590d2a0d879e00621 |
---|
327 | ] |
---|
328 | Patch bundle hash: |
---|
329 | 826184494e2203f8cc0b3891c848ace5809ac8f1 |
---|