1 | 1 patch for repository davidsarah@dev.allmydata.org:/home/darcs/tahoe/trunk: |
---|
2 | |
---|
3 | Fri Jan 28 06:33:38 GMT Standard Time 2011 david-sarah@jacaranda.org |
---|
4 | * SFTP: report unknown sizes as "0" instead of "?", to satisfy some clients, but only for directories rather than all objects. fixes #1337 |
---|
5 | |
---|
6 | New patches: |
---|
7 | |
---|
8 | [SFTP: report unknown sizes as "0" instead of "?", to satisfy some clients, but only for directories rather than all objects. fixes #1337 |
---|
9 | david-sarah@jacaranda.org**20110128063338 |
---|
10 | Ignore-this: da466fa182d95989ad6580bb1bd42db |
---|
11 | ] { |
---|
12 | hunk ./src/allmydata/frontends/sftpd.py 156 |
---|
13 | mode = st_mode |
---|
14 | perms = array.array('c', '-'*10) |
---|
15 | ft = stat.S_IFMT(mode) |
---|
16 | - if stat.S_ISDIR(ft): perms[0] = 'd' |
---|
17 | - elif stat.S_ISREG(ft): perms[0] = '-' |
---|
18 | - else: perms[0] = '?' |
---|
19 | + if stat.S_ISDIR(ft): |
---|
20 | + perms[0] = 'd' |
---|
21 | + if st_size == "?": |
---|
22 | + # FileZilla won't tolerate '?' in the size field for a directory (#1337). |
---|
23 | + st_size = 0 |
---|
24 | + elif stat.S_ISREG(ft): |
---|
25 | + perms[0] = '-' |
---|
26 | + else: |
---|
27 | + perms[0] = '?' |
---|
28 | + |
---|
29 | # user |
---|
30 | if mode&stat.S_IRUSR: perms[1] = 'r' |
---|
31 | if mode&stat.S_IWUSR: perms[2] = 'w' |
---|
32 | hunk ./src/allmydata/test/test_sftp.py 296 |
---|
33 | |
---|
34 | gross = u"gro\u00DF".encode("utf-8") |
---|
35 | expected_root = [ |
---|
36 | - ('empty_lit_dir', r'dr-xr-xr-x .* \? .* empty_lit_dir$', {'permissions': S_IFDIR | 0555}), |
---|
37 | + ('empty_lit_dir', r'dr-xr-xr-x .* 0 .* empty_lit_dir$', {'permissions': S_IFDIR | 0555}), |
---|
38 | (gross, r'-rw-rw-rw- .* 1010 .* '+gross+'$', {'permissions': S_IFREG | 0666, 'size': 1010}), |
---|
39 | # The fall of the Berlin wall may have been on 9th or 10th November 1989 depending on the gateway's timezone. |
---|
40 | hunk ./src/allmydata/test/test_sftp.py 299 |
---|
41 | - #('loop', r'drwxrwxrwx .* \? Nov (09|10) 1989 loop$', {'permissions': S_IFDIR | 0777}), |
---|
42 | - ('loop', r'drwxrwxrwx .* \? .* loop$', {'permissions': S_IFDIR | 0777}), |
---|
43 | + #('loop', r'drwxrwxrwx .* 0 Nov (09|10) 1989 loop$', {'permissions': S_IFDIR | 0777}), |
---|
44 | + ('loop', r'drwxrwxrwx .* 0 .* loop$', {'permissions': S_IFDIR | 0777}), |
---|
45 | ('mutable', r'-rw-rw-rw- .* \? .* mutable$', {'permissions': S_IFREG | 0666}), |
---|
46 | ('readonly', r'-r--r--r-- .* \? .* readonly$', {'permissions': S_IFREG | 0444}), |
---|
47 | ('small', r'-rw-rw-rw- .* 10 .* small$', {'permissions': S_IFREG | 0666, 'size': 10}), |
---|
48 | hunk ./src/allmydata/test/test_sftp.py 305 |
---|
49 | ('small2', r'-rw-rw-rw- .* 26 .* small2$', {'permissions': S_IFREG | 0666, 'size': 26}), |
---|
50 | - ('tiny_lit_dir', r'dr-xr-xr-x .* \? .* tiny_lit_dir$', {'permissions': S_IFDIR | 0555}), |
---|
51 | + ('tiny_lit_dir', r'dr-xr-xr-x .* 0 .* tiny_lit_dir$', {'permissions': S_IFDIR | 0555}), |
---|
52 | ('unknown', r'\?--------- .* \? .* unknown$', {'permissions': 0}), |
---|
53 | ] |
---|
54 | |
---|
55 | } |
---|
56 | |
---|
57 | Context: |
---|
58 | |
---|
59 | [docs/configuration.rst: fix a typo in the previous correction, and correct another error ('[storage]readonly_storage' should be '[storage]readonly'). |
---|
60 | david-sarah@jacaranda.org**20110123023955 |
---|
61 | Ignore-this: 2f9d3fe3c25da1b369618b8cf0867a58 |
---|
62 | ] |
---|
63 | [docs/configuration.rst: correct an error in the Example section ('[helper]run_helper' should be '[helper]enabled'). |
---|
64 | david-sarah@jacaranda.org**20110123022304 |
---|
65 | Ignore-this: d16d7c0d5faea3774dc77e7ae4212138 |
---|
66 | ] |
---|
67 | [docs/configuration.rst: correct the name of 'tahoe-client.tac' and document other .tac files. Also make the capitalization consistent in that section. |
---|
68 | david-sarah@jacaranda.org**20110123020011 |
---|
69 | Ignore-this: 9452ce79c792585a1c97dfe483b214fd |
---|
70 | ] |
---|
71 | [CLI: improve help synopsis for 'tahoe create-key-generator'. |
---|
72 | david-sarah@jacaranda.org**20110123015004 |
---|
73 | Ignore-this: 9769071e583456b701190451c0d36ada |
---|
74 | ] |
---|
75 | [Don't put debugging information in 'My versions' section of the Welcome page. Also remove the extra blank line between version and command output when --version[-and-path] is used. refs #1306 |
---|
76 | david-sarah@jacaranda.org**20110122040220 |
---|
77 | Ignore-this: 543fff2ac7f4552d2d7491020eb582c1 |
---|
78 | ] |
---|
79 | [NEWS, docs/quickstart.html: pywin32 is no longer required on Windows. refs #1274 |
---|
80 | david-sarah@jacaranda.org**20110122024741 |
---|
81 | Ignore-this: ea70513a58e698645ca7aca31483cc06 |
---|
82 | ] |
---|
83 | [Makefile, setup.py: add more source files to pyflakes target and fix their warnings. |
---|
84 | david-sarah@jacaranda.org**20110122020752 |
---|
85 | Ignore-this: e11ad124406d30e212611ce22be7ab05 |
---|
86 | ] |
---|
87 | [Remove obsolete and bit-rotted 'setup.py check-auto-deps' command. Building and running bin/tahoe is a more thorough check. |
---|
88 | david-sarah@jacaranda.org**20110122020051 |
---|
89 | Ignore-this: e985599d83189305ce3059c22f72aed0 |
---|
90 | ] |
---|
91 | [Makefile: remove stale commented-out targets for figleaf. |
---|
92 | david-sarah@jacaranda.org**20110122015525 |
---|
93 | Ignore-this: 46f64bb67c810016ac067c124e569948 |
---|
94 | ] |
---|
95 | [misc/build_helpers/run-with-pythonpath.py: fix pyflakes unused import warning. |
---|
96 | david-sarah@jacaranda.org**20110122015050 |
---|
97 | Ignore-this: f36c4e0db536ab2461ca58fcd10b88f6 |
---|
98 | ] |
---|
99 | [Makefile: remove a stale comment about a bug fixed in Tahoe v1.3.0. refs #455 |
---|
100 | david-sarah@jacaranda.org**20110122014544 |
---|
101 | Ignore-this: e7ffdecd7b289961e62baf7d59ea95e2 |
---|
102 | ] |
---|
103 | [tests: use verlib to compare versions, and get the versions of Twisted and Nevow from get_package_versions() instead of pkg_resources. refs #1287 |
---|
104 | david-sarah@jacaranda.org**20110122014256 |
---|
105 | Ignore-this: 690b6b2b3ab8796677dc2a88000ae11c |
---|
106 | ] |
---|
107 | [src/allmydata/web/common.py: ensure that filenames in 'humanized failures' are quoted. |
---|
108 | david-sarah@jacaranda.org**20110122014006 |
---|
109 | Ignore-this: 29563716ddc62da15cad16005d6ea943 |
---|
110 | ] |
---|
111 | [twisted/allmydata_trial.py: fix stale comment that referred to trial_figleaf.py (replaced with trial_coverage.py). |
---|
112 | david-sarah@jacaranda.org**20110122013913 |
---|
113 | Ignore-this: e809c4e1f1be7fcc3cc067743b7d465b |
---|
114 | ] |
---|
115 | [CLI: improve help synopses for some commands. |
---|
116 | david-sarah@jacaranda.org**20110122012700 |
---|
117 | Ignore-this: 30b623987986d3f3f9531cf7c27fdf09 |
---|
118 | ] |
---|
119 | [src/allmydata/_auto_deps.py: setuptools is still an install requirement even in frozen builds, because .tac files import pkg_resources. refs #585 |
---|
120 | david-sarah@jacaranda.org**20110122012442 |
---|
121 | Ignore-this: fbc43f950ae16ff73d4ec944970dfea |
---|
122 | ] |
---|
123 | [Make bb-freeze (and probably other static packaging tools) work. This updates various places where we assumed that the tahoe process was executed via the Python interpreter. It also allows tests to recursively invoke the same tahoe.exe, rather than bin/tahoe. refs #585 |
---|
124 | david-sarah@jacaranda.org**20110121080429 |
---|
125 | Ignore-this: ebd3f5addf96da6c072b5401d2b75bf |
---|
126 | ] |
---|
127 | [Make 'setup.py trial' and 'setup.py test' pass --version-and-path to bin/tahoe by default. |
---|
128 | david-sarah@jacaranda.org**20110121080328 |
---|
129 | Ignore-this: 5a0fbf8bf2f90e9af72e8640c00970cf |
---|
130 | ] |
---|
131 | [Change --version and --version-and-path to not exit immediately, if a command is given. |
---|
132 | david-sarah@jacaranda.org**20110121075913 |
---|
133 | Ignore-this: a757e5cf370d3fcc7d1d3e579dcaa8c5 |
---|
134 | ] |
---|
135 | [src/allmydata/_auto_deps.py: 'pysqlite.dbapi2' module should have been 'pysqlite2.dbapi2'. refs #1306 |
---|
136 | david-sarah@jacaranda.org**20110121073234 |
---|
137 | Ignore-this: 190abb8ec6b8cafd59d7d615b1a382ec |
---|
138 | ] |
---|
139 | [src/allmydata/util/iputil.py: correct an error in the address-matching regexps introduced by the previous patch to iputil. refs #1274 |
---|
140 | david-sarah@jacaranda.org**20110121072136 |
---|
141 | Ignore-this: c8c6d72f0b5cd1ea39953f844dd1cae |
---|
142 | ] |
---|
143 | [setup: increase version number requirement on darcsver from >= 1.7.1 to >= 1.7.2 |
---|
144 | zooko@zooko.com**20110121053038 |
---|
145 | Ignore-this: fa1cca532db1b4f9a6d03aa4a2dfaa2 |
---|
146 | ] |
---|
147 | [setup: upgrade bundled version of darcsver from 1.7.1 to 1.7.2 to support the new bbfreeze feature (by, strangely, having darcsver write out unix newlines regardless of what the underlying platform prefers) |
---|
148 | zooko@zooko.com**20110121052838 |
---|
149 | Ignore-this: 210e9f43caef86d1c374504a09825827 |
---|
150 | ] |
---|
151 | [Add src/allmydata/util/verlib.py, which is a copy of verlib from https://bitbucket.org/tarek/distutilsversion/src/17df9a7d96ef . It is used to normalize and compare versions of dependencies. refs #1258 |
---|
152 | david-sarah@jacaranda.org**20110121060449 |
---|
153 | Ignore-this: a3de1480050f6842d35b24375e815f40 |
---|
154 | ] |
---|
155 | [Refactor _auto_deps.py and __init__.py, adding more robust checking of dependency versions, and not trusting pkg_resources to get the versions right. refs #1258, #1287 |
---|
156 | david-sarah@jacaranda.org**20110121053610 |
---|
157 | Ignore-this: b36d03e725ea9eb3362417e322019ebe |
---|
158 | ] |
---|
159 | [Apply pyflakes to more files and fix the resulting warnings. |
---|
160 | david-sarah@jacaranda.org**20110121021011 |
---|
161 | Ignore-this: f6327d146b50495b7721839139a2cec2 |
---|
162 | ] |
---|
163 | [src/allmydata/util/iputil.py: loosen regexps and ensure that 'LANG=en_US.UTF-8' is set in the environment, to minimize problems with localized output of IP-address-finding tools. refs #1274 |
---|
164 | david-sarah@jacaranda.org**20110120084827 |
---|
165 | Ignore-this: da04b1d780915ecfe492b671fdc2727e |
---|
166 | ] |
---|
167 | [Eliminate dependencies on pywin32, even via Twisted. refs #1274 |
---|
168 | david-sarah@jacaranda.org**20110120043238 |
---|
169 | Ignore-this: 96a2c30ea71a897472d704e905d3cb13 |
---|
170 | ] |
---|
171 | [Makefile: consistently use TAHOE macro to run bin/tahoe. Use '$(TAHOE) debug repl' instead of $(RUNPP) -p. refs #1296 |
---|
172 | david-sarah@jacaranda.org**20110119234429 |
---|
173 | Ignore-this: 1c339126c6cdb6cd7d60a95a2f0db0a2 |
---|
174 | ] |
---|
175 | [Makefile: consistently use 'tahoe debug trial' to run tests. refs #1296 |
---|
176 | david-sarah@jacaranda.org**20110119233737 |
---|
177 | Ignore-this: 4b6b5a13fcf767c23e5f983f92f2c053 |
---|
178 | ] |
---|
179 | [setup.py: add descriptions for some of the setup commands. ref #1306 |
---|
180 | david-sarah@jacaranda.org**20110119233305 |
---|
181 | Ignore-this: 8759eb5c3ee4b717bba5580622d76c6b |
---|
182 | ] |
---|
183 | [setup.py: create bin/tahoe.pyscript on Unix as well as Windows for consistency, and to reduce conditional code. ref #1306 |
---|
184 | david-sarah@jacaranda.org**20110119233145 |
---|
185 | Ignore-this: d1a7e66b3a2244fb4523ab3ef4057e5f |
---|
186 | ] |
---|
187 | [src/allmydata/test/test_runner.py: add test_import_from_repl, which checks that we are running the right code in a bin/tahoe subprocess. refs #1258 |
---|
188 | david-sarah@jacaranda.org**20110119082145 |
---|
189 | Ignore-this: c53a76827b47446df9e7b0128a2cb2c5 |
---|
190 | ] |
---|
191 | [docs/frontends/CLI.rst, src/allmydata/test/trialtest.py: add trailing newlines. refs #1296 |
---|
192 | david-sarah@jacaranda.org**20110119081955 |
---|
193 | Ignore-this: 1d19fad753ff17febf9b99bb2f5b7df7 |
---|
194 | ] |
---|
195 | [Eliminate direct dependencies of Tahoe-LAFS on pywin32 (rebased to trunk). refs #1274 |
---|
196 | david-sarah@jacaranda.org**20110119075911 |
---|
197 | Ignore-this: 8f31d1188daa382ec694908a68a19194 |
---|
198 | ] |
---|
199 | [trivial: add comment in scripts/debug.py about trial option parsing. refs #1296 |
---|
200 | david-sarah@jacaranda.org**20110119060808 |
---|
201 | Ignore-this: 3cda9b574d1fbc1cac683ed31c826051 |
---|
202 | ] |
---|
203 | [Update foolscap requirement to >= 0.6.1. fixes #1329 |
---|
204 | david-sarah@jacaranda.org**20110119060639 |
---|
205 | Ignore-this: 47908e13d1c79e74b9ebb9df934b3cf1 |
---|
206 | ] |
---|
207 | [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'. |
---|
208 | david-sarah@jacaranda.org**20110119051137 |
---|
209 | Ignore-this: 65fd13a23670aea3825a706f45a7019f |
---|
210 | ] |
---|
211 | [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 |
---|
212 | david-sarah@jacaranda.org**20110119045324 |
---|
213 | Ignore-this: 756e83c5eae7dabac31290b98a0e5a99 |
---|
214 | ] |
---|
215 | [Change misc/build_helpers/test-with-fake-pkg to use 'setup.py trial'. refs #1296 |
---|
216 | david-sarah@jacaranda.org**20110119042401 |
---|
217 | Ignore-this: e1518b6f43becf47d5a956bb710a9dcb |
---|
218 | ] |
---|
219 | [Makefile: update 'make clean' to delete the setuptools_trial egg(s). |
---|
220 | david-sarah@jacaranda.org**20110119025053 |
---|
221 | Ignore-this: ec373228f3a169c7070633e3b89ec1d |
---|
222 | ] |
---|
223 | [Change 'setup.py trial' and 'setup.py test' to use 'bin/tahoe debug trial'. refs #1296 |
---|
224 | david-sarah@jacaranda.org**20110119024532 |
---|
225 | Ignore-this: 43df1a50435c794cfa60ecca71a46b10 |
---|
226 | ] |
---|
227 | [src/allmydata/test/test_cli.py: add test for 'tahoe debug trial' options help. refs #1296 |
---|
228 | david-sarah@jacaranda.org**20110119024224 |
---|
229 | Ignore-this: e9f7a67724b60c11a34efbce9a83a5cb |
---|
230 | ] |
---|
231 | [Makefile: update 'make clean' to avoid deleting the setuptools_darcs egg. |
---|
232 | david-sarah@jacaranda.org**20110119021958 |
---|
233 | Ignore-this: 908673ddd30ab88db5af8c8d80a74eb1 |
---|
234 | ] |
---|
235 | [Add src/allmydata/test/trialtest.py needed by tests for 'tahoe debug trial'. refs #1296 |
---|
236 | david-sarah@jacaranda.org**20110119020239 |
---|
237 | Ignore-this: 58d468dbd869c2e6c85552710ed47ffe |
---|
238 | ] |
---|
239 | [Tests for 'tahoe debug trial' (rebased and fixed to work with Twisted 10.2). refs #1296 |
---|
240 | david-sarah@jacaranda.org**20110119013859 |
---|
241 | Ignore-this: bb2ea70e5c3c841713ae38744b80980f |
---|
242 | ] |
---|
243 | [Documentation for 'tahoe debug trial' (rebased for trunk). refs #1296 |
---|
244 | david-sarah@jacaranda.org**20110118205729 |
---|
245 | Ignore-this: 3a4a4c2d23864851cb24c32a5b7962b4 |
---|
246 | ] |
---|
247 | [Make 'mock' a run-time rather than setup-time dependency. This is necessary in order for 'tahoe debug trial' to work. refs #1296 |
---|
248 | david-sarah@jacaranda.org**20110118205114 |
---|
249 | Ignore-this: 256c4fcd259eda02dd86ed163afc6497 |
---|
250 | ] |
---|
251 | [src/allmydata/scripts/debug.py: add 'tahoe debug trial' command (rebased for trunk). refs #1296 |
---|
252 | david-sarah@jacaranda.org**20110118204659 |
---|
253 | Ignore-this: 19e5f96d15c14625d5969ca4ae10a3cc |
---|
254 | ] |
---|
255 | [Remove setuptools_trial egg. |
---|
256 | david-sarah@jacaranda.org**20110110063306 |
---|
257 | Ignore-this: 329f5062db0c7914464c547a3957c596 |
---|
258 | ] |
---|
259 | [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. |
---|
260 | david-sarah@jacaranda.org**20110117233152 |
---|
261 | Ignore-this: c4aa2f4286ad8a9fba9827d428f7fbe5 |
---|
262 | ] |
---|
263 | [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 |
---|
264 | david-sarah@jacaranda.org**20110118065445 |
---|
265 | Ignore-this: b4b9d3798a9beb9c44943daf2722a51 |
---|
266 | ] |
---|
267 | [setup: bundle a copy of setuptools_darcs-1.2.12 |
---|
268 | zooko@zooko.com**20110118062521 |
---|
269 | Ignore-this: 47e240417e0ff57a66d2f02f416a78fe |
---|
270 | 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. |
---|
271 | ] |
---|
272 | [NEWS: default reserved_space for new storage nodes is 1 GiB. refs #1208 |
---|
273 | david-sarah@jacaranda.org**20110117235930 |
---|
274 | Ignore-this: 81c898890f51400b7229b4b6de69eb30 |
---|
275 | ] |
---|
276 | ['tahoe debug catalog-shares': sort SIs and shnums |
---|
277 | Brian Warner <warner@lothar.com>**20110117095932 |
---|
278 | Ignore-this: f2c60da422178dfba6d03ff4957cf80c |
---|
279 | |
---|
280 | Without this, SIs or shnums could be emitted in random order, depending upon |
---|
281 | what the filesystem happens to return. |
---|
282 | ] |
---|
283 | [CLI: tests for ref #1305 (v2, remove spurious extra arg to create-alias in test) |
---|
284 | david-sarah@jacaranda.org**20110114040327 |
---|
285 | Ignore-this: 770b7117e66b04ced293b7b740b4a27f |
---|
286 | ] |
---|
287 | [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 |
---|
288 | david-sarah@jacaranda.org**20110114034414 |
---|
289 | Ignore-this: 97e8e88d8b0f7c628b77db3adb67fa1b |
---|
290 | ] |
---|
291 | [Improve 'tahoe ln' help text. Patch by David-Sarah. Closes #1230. |
---|
292 | Brian Warner <warner@lothar.com>**20110117081421 |
---|
293 | Ignore-this: ae0ab1525fd39c95500535d6d015e706 |
---|
294 | ] |
---|
295 | [Tolerate Twisted-10.2's endpoints, patch by David-Sarah. Closes #1286. |
---|
296 | Brian Warner <warner@lothar.com>**20110117074751 |
---|
297 | Ignore-this: 8875749e4cab0e444a8452e290647bb6 |
---|
298 | |
---|
299 | The service generated by strports.service() changed in 10.2, and the ugly |
---|
300 | private-attribute-reading hack we used to glean a kernel-allocated port |
---|
301 | number (e.g. when using "tcp:0", especially during unit tests) broke, causing |
---|
302 | Tahoe to be completely unusable with Twisted-10.2 . The new ugly |
---|
303 | private-attribute-reading hack starts by figuring out what sort of service |
---|
304 | was generated, then reads different attributes accordingly. |
---|
305 | |
---|
306 | This also hushes a warning when using schemeless strports strings like "0" or |
---|
307 | "3456", by quietly prepending a "tcp:" scheme, since 10.2 complains about |
---|
308 | those. It also adds getURL() and getPortnum() accessors to the "webish" |
---|
309 | service, rather than having unit tests dig through _url and _portnum and such |
---|
310 | to find out what they are. |
---|
311 | ] |
---|
312 | [debian/control: add python-twisted-conch to dependencies. Closes #1095. |
---|
313 | Brian Warner <warner@lothar.com>**20110117071206 |
---|
314 | Ignore-this: 74714eeb8bd324d6124824f119468ab5 |
---|
315 | ] |
---|
316 | [Test changes to take account of ref #1311. |
---|
317 | david-sarah@jacaranda.org**20110117060540 |
---|
318 | Ignore-this: d787405b00a05d98abb34e5133a88b36 |
---|
319 | ] |
---|
320 | [create_node.py: add comments to default tahoe.cfg to clarify the meaning of each section. fixes #1311 |
---|
321 | david-sarah@jacaranda.org**20110117052419 |
---|
322 | Ignore-this: a2b0bba6b347bb0b0247782ee9ea9419 |
---|
323 | ] |
---|
324 | [Undo the temporary hack to check the foolscap version. refs #1246 |
---|
325 | david-sarah@jacaranda.org**20110117052042 |
---|
326 | Ignore-this: c58a8a5b91355a15d02b60c20a44bbd9 |
---|
327 | ] |
---|
328 | [misc/build_helpers/run_trial.py: fix pyflakes warning. |
---|
329 | david-sarah@jacaranda.org**20110115080456 |
---|
330 | Ignore-this: 95760a442fc397526a5d921510ec3843 |
---|
331 | ] |
---|
332 | [Set "reserved_space=1G" in newly-created storage nodes. Closes #1208. |
---|
333 | Brian Warner <warner@lothar.com>**20110116205822 |
---|
334 | Ignore-this: 2aac3dbb46e181ce7ae5e0af07bbb3bb |
---|
335 | ] |
---|
336 | [Temporary hack to investigate whether we are getting the right version of foolscap on trunk. refs #1258 |
---|
337 | david-sarah@jacaranda.org**20110116044959 |
---|
338 | Ignore-this: 4760970f9235dde07472ca980c24f75b |
---|
339 | ] |
---|
340 | [Makefile: allow tarball upload when either BB_BRANCH=='trunk' or BB_BRANCH==''. |
---|
341 | david-sarah@jacaranda.org**20110115212211 |
---|
342 | Ignore-this: 358822b25e69bfe9651a561ec387ca7a |
---|
343 | ] |
---|
344 | [misc/build_helpers/test-with-fake-dists.py: clean up directories and files only if they exist. |
---|
345 | david-sarah@jacaranda.org**20110115053011 |
---|
346 | Ignore-this: 7aa8fec370e12c62d9b56afcd55d17f |
---|
347 | ] |
---|
348 | [misc/build_helpers/test-with-fake-dists.py: wrong arguments in comment. |
---|
349 | david-sarah@jacaranda.org**20110115045325 |
---|
350 | Ignore-this: 89322306ed4fb478af4988675fd4c968 |
---|
351 | ] |
---|
352 | [Attempt to fix test-with-fake-dist build step. |
---|
353 | david-sarah@jacaranda.org**20110115022651 |
---|
354 | Ignore-this: 9d7195dca59b79f93a5f527b1ae9e79e |
---|
355 | ] |
---|
356 | [bin/tahoe-script.template: improve the error message if we end up running under Python 3. refs #1302 |
---|
357 | david-sarah@jacaranda.org**20110112211628 |
---|
358 | Ignore-this: ee78f8e4bbd197e620cb0cc6b995ac46 |
---|
359 | ] |
---|
360 | [Makefile: Fix uploading of tarballs on trunk builds. |
---|
361 | david-sarah@jacaranda.org**20110109065851 |
---|
362 | Ignore-this: 864b06e39103f46dbb6ccb74e1e333d3 |
---|
363 | ] |
---|
364 | [docs/frontends/CLI.rst: fix the rst syntax to be as actually intended :-) |
---|
365 | david-sarah@jacaranda.org**20110109014057 |
---|
366 | Ignore-this: c11331670ba89d8601ba3782ffc4f32c |
---|
367 | ] |
---|
368 | [docs/frontends/CLI.rst: really fix rst syntax error this time. |
---|
369 | david-sarah@jacaranda.org**20110109013914 |
---|
370 | Ignore-this: 59550154c9ab41488ddfdee8938d7bda |
---|
371 | ] |
---|
372 | [docs/frontends/CLI.rst: fix rst syntax error. |
---|
373 | david-sarah@jacaranda.org**20110109010943 |
---|
374 | Ignore-this: 427444f5572115059c75fa1bd8371d51 |
---|
375 | ] |
---|
376 | [docs/frontends/CLI.rst: discuss commandline/output quoting issues and wildcards. refs #1135 |
---|
377 | david-sarah@jacaranda.org**20110109010119 |
---|
378 | Ignore-this: 533938d89be878b404a8540aebdf68ad |
---|
379 | ] |
---|
380 | [setup.py: add Python 2.7 trove classifier. |
---|
381 | david-sarah@jacaranda.org**20110108211212 |
---|
382 | Ignore-this: b479c0a1adf9b7a2d1fdc54abc6582e6 |
---|
383 | ] |
---|
384 | [docs/FTP-and-SFTP.rst: document issue in ref #1297. Remove known issue #1045 which is fixed. Also some cosmetic changes. |
---|
385 | david-sarah@jacaranda.org**20110108061038 |
---|
386 | Ignore-this: 8d9aa2e33f1054545f7bed47bf0e647d |
---|
387 | ] |
---|
388 | [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 |
---|
389 | david-sarah@jacaranda.org**20110103015144 |
---|
390 | Ignore-this: 45e11431f7e2e0cebcb58e1841485cf8 |
---|
391 | ] |
---|
392 | [NEWS: 'top' for node processes, WUI formatting, removal of GUI apps, documentation updates, foolscap dependency. refs #174, #1219, #1225 |
---|
393 | david-sarah@jacaranda.org**20110106005727 |
---|
394 | Ignore-this: f61ac58b4d10e635feb6f7391b1b48fe |
---|
395 | ] |
---|
396 | [Makefile: update 'clean' target for files in bin/ |
---|
397 | david-sarah@jacaranda.org**20110103052738 |
---|
398 | Ignore-this: 2bdbc4a50e13e508b66d0f65718c79b2 |
---|
399 | ] |
---|
400 | [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" |
---|
401 | zooko@zooko.com**20110104065455 |
---|
402 | Ignore-this: 8df0d79a062ee19854c0211bd202f606 |
---|
403 | ] |
---|
404 | [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 |
---|
405 | david-sarah@jacaranda.org**20101127232650 |
---|
406 | Ignore-this: 42a86f3eecfdc1ea7b76a7cc68626898 |
---|
407 | ] |
---|
408 | [test_runner: avoid unnecessary use of non-ASCII. |
---|
409 | david-sarah@jacaranda.org**20110101100101 |
---|
410 | Ignore-this: e2ff40dce6bb3b021306f2913d4e75df |
---|
411 | ] |
---|
412 | [docs/quickstart.html: fix redundant, badly nested tag. refs #1284 |
---|
413 | david-sarah@jacaranda.org**20110102175159 |
---|
414 | Ignore-this: 2ae9cc0b47d2e87b9eb64a0f517c4eef |
---|
415 | ] |
---|
416 | [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 |
---|
417 | david-sarah@jacaranda.org**20110102174212 |
---|
418 | Ignore-this: e9dc57983974478200856651c5318fee |
---|
419 | ] |
---|
420 | [NEWS: update entry for removal of Mac and Windows apps. refs #1282 |
---|
421 | david-sarah@jacaranda.org**20101226042245 |
---|
422 | Ignore-this: c8099bc6e8235718d042c9a13c1e2425 |
---|
423 | ] |
---|
424 | [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 |
---|
425 | david-sarah@jacaranda.org**20101226042100 |
---|
426 | Ignore-this: ee45f324934e1251380206dbee6346d0 |
---|
427 | ] |
---|
428 | [Remove unmaintained Windows GUI app, except for windows/tahoesvc.py which is moved to src/allmydata/windows. refs #1282 |
---|
429 | david-sarah@jacaranda.org**20101226040237 |
---|
430 | Ignore-this: cae37b6622a7dd5940acc7d3e6a98b90 |
---|
431 | ] |
---|
432 | [Remove the Makefile targets relating to the Mac GUI app. refs #1282 |
---|
433 | david-sarah@jacaranda.org**20101226025859 |
---|
434 | Ignore-this: 75303be783974b41138744ec62b07965 |
---|
435 | ] |
---|
436 | [NEWS: remove unmaintained Mac GUI app. refs #1282 |
---|
437 | david-sarah@jacaranda.org**20101226020858 |
---|
438 | Ignore-this: 40474a07f4a550b48563d35350be7ab5 |
---|
439 | ] |
---|
440 | [Remove unmaintained Mac GUI app. fixes #1282 |
---|
441 | david-sarah@jacaranda.org**20101226020508 |
---|
442 | Ignore-this: b3613bf1abfd284d542bf7c753ec557a |
---|
443 | ] |
---|
444 | [Remove src/allmydata/util/find_exe.py which is no longer used. fixes #1150 |
---|
445 | david-sarah@jacaranda.org**20101226023206 |
---|
446 | Ignore-this: 7436c9b53bf210aed34a1a973cd9cace |
---|
447 | ] |
---|
448 | [status_web_pages_review.darcs.patch |
---|
449 | freestorm77@gmail.com**20110102034214 |
---|
450 | Ignore-this: 29f1ecb36177f10f3f846b3d56b313b2 |
---|
451 | |
---|
452 | I make some changes on status web pages |
---|
453 | |
---|
454 | status.xhtml: |
---|
455 | - Delete unused webform_css link |
---|
456 | - Align tables on the left |
---|
457 | |
---|
458 | tahoe-css: |
---|
459 | - Do some minor changes on code synthax |
---|
460 | - changes table.status-download-events style to look like other tables |
---|
461 | |
---|
462 | status.py: |
---|
463 | - Align table on the left |
---|
464 | - Changes table header |
---|
465 | - Add heading tags |
---|
466 | - Modify google api graph: add image border, calculate height to feet data |
---|
467 | |
---|
468 | signed-off-by: zooko@zooko.com |
---|
469 | fixes #1219 |
---|
470 | ] |
---|
471 | [test_storage.py: fix a pyflakes unused import warning. |
---|
472 | david-sarah@jacaranda.org**20101231220756 |
---|
473 | Ignore-this: df08231540cb7dff9d2b038e47ab30ee |
---|
474 | ] |
---|
475 | [test_storage.py: leave at least 512 MiB free when running test_large_share. refs #1195 |
---|
476 | david-sarah@jacaranda.org**20101231203215 |
---|
477 | Ignore-this: b2144c0341c3452b5d4ba219e284ea0e |
---|
478 | ] |
---|
479 | [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 |
---|
480 | zooko@zooko.com**20100910173629 |
---|
481 | Ignore-this: 1304f1164c661de6d5304f993eb9b27b |
---|
482 | ] |
---|
483 | [fileutil: copy in the get_disk_stats() and get_available_space() functions from storage/server.py |
---|
484 | zooko@zooko.com**20100910173520 |
---|
485 | Ignore-this: 8b15569715f710f4fc5092f7ca109253 |
---|
486 | ] |
---|
487 | [Update foolscap version requirement to 0.6.0, to address http://foolscap.lothar.com/trac/ticket/167 |
---|
488 | david-sarah@jacaranda.org**20101231060039 |
---|
489 | Ignore-this: 98d2b8086a1a500b9f4565bca5a3810 |
---|
490 | ] |
---|
491 | [docs/webapi.rst: typos. |
---|
492 | david-sarah@jacaranda.org**20101230034422 |
---|
493 | Ignore-this: d1f5166d72cc711f7e0d9981eac9105e |
---|
494 | ] |
---|
495 | [docs/webapi.rst: capitalization, formatting of section on URL character encoding, and a correction about Internet Explorer. |
---|
496 | david-sarah@jacaranda.org**20101230034049 |
---|
497 | Ignore-this: b3b9819d2fb264b4cdc5c8afd4e8c48d |
---|
498 | ] |
---|
499 | [docs: corrections and clarifications. |
---|
500 | david-sarah@jacaranda.org**20101227051056 |
---|
501 | Ignore-this: e33202858c7644c58f3f924b164294b6 |
---|
502 | ] |
---|
503 | [docs: more formatting cleanups and corrections. Spell webapi and wapi as web-API. |
---|
504 | david-sarah@jacaranda.org**20101227050533 |
---|
505 | Ignore-this: 18b23cbfb780df585d8a722a1ec63e94 |
---|
506 | ] |
---|
507 | [docs/debian.rst: bring description of building dependencies from source up-to-date, and change hostname from allmydata.com to tahoe-lafs.org. |
---|
508 | david-sarah@jacaranda.org**20101212222912 |
---|
509 | Ignore-this: f38462afc88b4475195610385a28391c |
---|
510 | ] |
---|
511 | [docs/architecture.rst: correct rst syntax. |
---|
512 | david-sarah@jacaranda.org**20101212202003 |
---|
513 | Ignore-this: 3fbe12feb28bec6f1c63aedbc79aad21 |
---|
514 | ] |
---|
515 | [docs/architecture.rst: formatting. |
---|
516 | david-sarah@jacaranda.org**20101212201719 |
---|
517 | Ignore-this: 305fa5dfc2939355eaf6d0d2161eb1ff |
---|
518 | ] |
---|
519 | [docs: linkification, wording improvements. |
---|
520 | david-sarah@jacaranda.org**20101212201234 |
---|
521 | Ignore-this: 4e67287f527a8bc728cfbd93255d2aae |
---|
522 | ] |
---|
523 | [docs: formatting. |
---|
524 | david-sarah@jacaranda.org**20101212201115 |
---|
525 | Ignore-this: 2e0ed394ac7726651d3a4f2c4b0d3798 |
---|
526 | ] |
---|
527 | [docs/configuration.rst: more formatting tweaks; which -> that. |
---|
528 | david-sarah@jacaranda.org**20101212195522 |
---|
529 | Ignore-this: a7becb7021854ca5a90edd892b36fdd7 |
---|
530 | ] |
---|
531 | [docs/configuration.rst: more changes to formatting. |
---|
532 | david-sarah@jacaranda.org**20101212194511 |
---|
533 | Ignore-this: 491aac33e5f5268d224359f1447d10be |
---|
534 | ] |
---|
535 | [docs/configuration.rst: changes to formatting (mainly putting commands and filenames in monospace). |
---|
536 | david-sarah@jacaranda.org**20101212181828 |
---|
537 | Ignore-this: 8a1480e2d5f43bee678476424615b50f |
---|
538 | ] |
---|
539 | [scripts/backupdb.py: more accurate comment about path field. |
---|
540 | david-sarah@jacaranda.org**20101212170320 |
---|
541 | Ignore-this: 50e47a2228a85207bbcd188a78a0d4e6 |
---|
542 | ] |
---|
543 | [scripts/cli.py: fix missing 'put' in usage example for 'tahoe put'. |
---|
544 | david-sarah@jacaranda.org**20101212170207 |
---|
545 | Ignore-this: 2cbadf066fff611fc03d3c0ff97ce6ec |
---|
546 | ] |
---|
547 | [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. |
---|
548 | david-sarah@jacaranda.org**20101212165800 |
---|
549 | Ignore-this: a123ef6b564aa8624d1e79c97068ea12 |
---|
550 | ] |
---|
551 | [docs/frontends/CLI.rst: Unicode arguments to 'tahoe' work on Windows as of v1.7.1. |
---|
552 | david-sarah@jacaranda.org**20101212063740 |
---|
553 | Ignore-this: 3977a99dfa86ac33a44171deaf43aaab |
---|
554 | ] |
---|
555 | [docs/known_issues.rst: fix title and linkify another URL. refs #1225 |
---|
556 | david-sarah@jacaranda.org**20101212062817 |
---|
557 | Ignore-this: cc91287f7fb51c23440b3d2fe79c449c |
---|
558 | ] |
---|
559 | [docs/known_issues.rst: fix an external link. refs #1225 |
---|
560 | david-sarah@jacaranda.org**20101212062435 |
---|
561 | Ignore-this: b8cbf12f353131756c358965c48060ec |
---|
562 | ] |
---|
563 | [Fix a link from uri.rst to dirnodes.rst. refs #1225 |
---|
564 | david-sarah@jacaranda.org**20101212054502 |
---|
565 | Ignore-this: af6205299f5c9a33229cab259c00f9d5 |
---|
566 | ] |
---|
567 | [Fix a link from webapi.rst to FTP-and-SFTP.rst. refs #1225 |
---|
568 | david-sarah@jacaranda.org**20101212053435 |
---|
569 | Ignore-this: 2b9f88678c3447ea860d6b61e8799858 |
---|
570 | ] |
---|
571 | [More specific hyperlink to architecture.rst from helper.rst. refs #1225 |
---|
572 | david-sarah@jacaranda.org**20101212052607 |
---|
573 | Ignore-this: 50424c768fca481252fabf58424852dc |
---|
574 | ] |
---|
575 | [Update hyperlinks between docs, and linkify some external references. refs #1225 |
---|
576 | david-sarah@jacaranda.org**20101212051459 |
---|
577 | Ignore-this: cd43a4c3d3de1f832abfa88d5fc4ace1 |
---|
578 | ] |
---|
579 | [docs/specifications/dirnodes.rst: fix references to mutable.rst. refs #1225 |
---|
580 | david-sarah@jacaranda.org**20101212012720 |
---|
581 | Ignore-this: 6819b4b4e06e947ee48b365e840db37d |
---|
582 | ] |
---|
583 | [docs/specifications/mutable.rst: correct the magic string for v1 mutable containers. refs #1225 |
---|
584 | david-sarah@jacaranda.org**20101212011400 |
---|
585 | Ignore-this: 99a5fcdd40cef83dbb08f323f6cdaaca |
---|
586 | ] |
---|
587 | [Move .txt files in docs/frontends and docs/specifications to .rst. refs #1225 |
---|
588 | david-sarah@jacaranda.org**20101212010251 |
---|
589 | Ignore-this: 8796d35d928370f7dc6ad2dafdc1c0fe |
---|
590 | ] |
---|
591 | [Convert docs/frontends and docs/specifications to reStructuredText format (not including file moves). |
---|
592 | david-sarah@jacaranda.org**20101212004632 |
---|
593 | Ignore-this: e3ceb2d832d73875abe48624ddbb5622 |
---|
594 | ] |
---|
595 | [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.) |
---|
596 | david-sarah@jacaranda.org**20101130002145 |
---|
597 | Ignore-this: 94c003efaa20b9eb4a83503d79844ca |
---|
598 | ] |
---|
599 | [relnotes.txt: fifth -> sixth labor-of-love release |
---|
600 | zooko@zooko.com**20101129045647 |
---|
601 | Ignore-this: 21c245015268b38916e3a138d256c09d |
---|
602 | ] |
---|
603 | [Makefile: BB_BRANCH is set to the empty string for trunk, not the string 'trunk'. |
---|
604 | david-sarah@jacaranda.org**20101128233512 |
---|
605 | Ignore-this: 5a7ef8eb10475636d21b91e25b56c369 |
---|
606 | ] |
---|
607 | [relnotes.txt: eleventh -> twelfth release. |
---|
608 | david-sarah@jacaranda.org**20101128223321 |
---|
609 | Ignore-this: 1e26410156a665271c1170803dea2c0d |
---|
610 | ] |
---|
611 | [relnotes.tst: point to known_issues.rst, not known_issues.txt. |
---|
612 | david-sarah@jacaranda.org**20101128222918 |
---|
613 | Ignore-this: 60194eb4544cac446fe4f60b3e34b887 |
---|
614 | ] |
---|
615 | [quickstart.html: fix link to point to allmydata-tahoe-1.8.1.zip. |
---|
616 | david-sarah@jacaranda.org**20101128221728 |
---|
617 | Ignore-this: 7b3ee86f8256aa12f5d862f689f3ee29 |
---|
618 | ] |
---|
619 | [TAG allmydata-tahoe-1.8.1 |
---|
620 | david-sarah@jacaranda.org**20101128212336 |
---|
621 | Ignore-this: 9c18bdeaef4822f590d2a0d879e00621 |
---|
622 | ] |
---|
623 | Patch bundle hash: |
---|
624 | c396eb96a6603712362bdb8eb1fb495a462548fa |
---|