1 | Mon Apr 27 03:01:44 MDT 2009 francois@ctrlaltdel.ch |
---|
2 | * cli: tahoe manifest unicode support |
---|
3 | |
---|
4 | New patches: |
---|
5 | |
---|
6 | [cli: tahoe manifest unicode support |
---|
7 | francois@ctrlaltdel.ch**20090427090144 |
---|
8 | Ignore-this: d2d3ca0614d6cbf725a4b0a0f06f7694 |
---|
9 | ] { |
---|
10 | hunk ./src/allmydata/scripts/cli.py 287 |
---|
11 | ("raw", "r", "Display raw JSON data instead of parsed"), |
---|
12 | ] |
---|
13 | def parseArgs(self, where=''): |
---|
14 | - self.where = where |
---|
15 | + self.where = argv_to_unicode(where) |
---|
16 | |
---|
17 | def getSynopsis(self): |
---|
18 | return "%s manifest [ALIAS:PATH]" % (os.path.basename(sys.argv[0]),) |
---|
19 | hunk ./src/allmydata/scripts/tahoe_manifest.py 83 |
---|
20 | try: |
---|
21 | print >>stdout, d["cap"], "/".join(d["path"]) |
---|
22 | except UnicodeEncodeError: |
---|
23 | - print >>stdout, d["cap"], "/".join([p.encode("utf-8") |
---|
24 | + print >>stdout, d["cap"], "/".join([unicode_to_stdout(p) |
---|
25 | for p in d["path"]]) |
---|
26 | |
---|
27 | def manifest(options): |
---|
28 | } |
---|
29 | |
---|
30 | Context: |
---|
31 | |
---|
32 | [test_cli.Backup: increase timeout massively, it takes 1200s on zandr's ARM linkstation |
---|
33 | warner@lothar.com**20090609052801] |
---|
34 | [tests: double the timeouts on some tests which time-out on Francois's box |
---|
35 | zooko@zooko.com**20090609021753 |
---|
36 | Ignore-this: b2727b04402f24a9b9123d2f84068106 |
---|
37 | ] |
---|
38 | [tests: bump up timeouts so that the tests can finish before timeout on Francois's little arm box |
---|
39 | zooko@zooko.com**20090608225557 |
---|
40 | Ignore-this: fb83698338b2f12546cd3e1dcb896d34 |
---|
41 | ] |
---|
42 | [tests: increase timeouts on some other tests that timed-out on Francois's arm box |
---|
43 | zooko@zooko.com**20090605143437 |
---|
44 | Ignore-this: 2903cc20d914fc074c8d7a6c47740ba6 |
---|
45 | ] |
---|
46 | [tests: bump up the timeout on a bunch of tests that took longer than the default timeout (120s) on François Lenny-armv5tel |
---|
47 | zooko@zooko.com**20090605031444 |
---|
48 | Ignore-this: 84d67849b1f8edc88bf7001e31b5f7f3 |
---|
49 | ] |
---|
50 | [backup: remove the --no-backupdb command, the handling of "can't import sqlite", and the related tests, and change an error message to more correctly indicate failure to load the database from disk rather than failure to import sqlite module |
---|
51 | zooko@zooko.com**20090604173131 |
---|
52 | Ignore-this: 8200a9fdfc49243c280ecd1d0c44fa19 |
---|
53 | Fixes #728. |
---|
54 | ] |
---|
55 | [more refactoring: move get_all_serverids() and get_nickname_for_serverid() from Client to storage_broker |
---|
56 | warner@lothar.com**20090602030750] |
---|
57 | [more storage_broker refactoring: downloader gets a broker instead of a client, |
---|
58 | warner@lothar.com**20090602022511 |
---|
59 | use Client.get_storage_broker() accessor instead of direct attribute access. |
---|
60 | ] |
---|
61 | [test_runner.py: remove test_client_no_noise: the issue in question is |
---|
62 | warner@lothar.com**20090601225007 |
---|
63 | ticketed in http://divmod.org/trac/ticket/2830 and doesn't need a Tahoe-side |
---|
64 | change, plus this test fails on win32 for unrelated reasons (and test_client |
---|
65 | is the place to think about the win32 issue). |
---|
66 | ] |
---|
67 | [remove plaintext-hashing code from the helper interface, to close #722 |
---|
68 | warner@lothar.com**20090601224916 |
---|
69 | and deny the Helper the ability to mount a partial-information-guessing |
---|
70 | attack. This will probably break compatibility between new clients and very |
---|
71 | old (pre-1.0) helpers. |
---|
72 | ] |
---|
73 | [start to factor server-connection-management into a distinct 'StorageServerFarmBroker' object, separate from the client and the introducer. This is the starting point for #467: static server selection |
---|
74 | warner@lothar.com**20090601210604] |
---|
75 | [mutable: catch and display first error, so code bugs which break all servers get displayed better |
---|
76 | warner@lothar.com**20090601210407] |
---|
77 | [misc/run-with-pythonpath.py: exec() the child (on unix), to remove the intermediate process |
---|
78 | warner@lothar.com**20090601210137] |
---|
79 | [setup: require pysqlite >= v2.0.5. if we are running on Python < 2.5 |
---|
80 | zooko@zooko.com**20090604154548 |
---|
81 | Ignore-this: cf04f46079821df209d01dad2e24b40b |
---|
82 | ] |
---|
83 | [setup: add pysqlite and sqlite to get_package_versions() |
---|
84 | zooko@zooko.com**20090604153728 |
---|
85 | Ignore-this: a1dea7fabeab2b08fb0d8d462facdb4d |
---|
86 | ] |
---|
87 | [docs: small edit to about.html |
---|
88 | zooko@zooko.com**20090528233422 |
---|
89 | Ignore-this: 1cfbb1f8426ed6d63b2d3952e4464ddc |
---|
90 | ] |
---|
91 | [docs: add links to Tahoe-LAFS for Paranoids and Tahoe-LAFS for Corporates in about.html |
---|
92 | zooko@zooko.com**20090528232717 |
---|
93 | Ignore-this: 7b70baa700d6b6f6e9ceec4132efe5 |
---|
94 | ] |
---|
95 | [docs: edit about.html and include network-and-reliance-topology.png (loaded from http://allmydata.org ) |
---|
96 | zooko@zooko.com**20090527150916 |
---|
97 | Ignore-this: 44adc61cde8ced8be2f0a7dfc7d95dad |
---|
98 | ] |
---|
99 | [docs: a few more edits to network-and-reliance-topology.svg |
---|
100 | zooko@zooko.com**20090527150458 |
---|
101 | Ignore-this: 2eac8c33fe71be25ff809b399c6193c1 |
---|
102 | ] |
---|
103 | [docs: update NEWS, relnotes.txt, CREDITS to mention WUI Style |
---|
104 | zooko@zooko.com**20090526233654 |
---|
105 | Ignore-this: 72d16ec833bc4a22af23d29ea1d5ff8b |
---|
106 | ] |
---|
107 | [docs: update network-and-reliance-topology.svg for beauty and clarity |
---|
108 | zooko@zooko.com**20090527031123 |
---|
109 | Ignore-this: 5510914849771900ac29b4312470d84 |
---|
110 | ] |
---|
111 | [Modify markup of Tahoe web pages to be more amenable to styling; some minor changes of wording. |
---|
112 | Kevin Reid <kpreid@mac.com>**20090526232545 |
---|
113 | Ignore-this: 8845937f0df6c7ddc07abe3211428a6f |
---|
114 | ] |
---|
115 | [Tweak wording in directory page: not-read-only is "modifiable", mention creating a directory _in this directory_. |
---|
116 | Kevin Reid <kpreid@mac.com>**20090526232414 |
---|
117 | Ignore-this: f006ec52ba2051802e025a60bcface56 |
---|
118 | ] |
---|
119 | [Comment on duplication of code/markup found during styling project. |
---|
120 | Kevin Reid <kpreid@mac.com>**20090503203442 |
---|
121 | Ignore-this: a4b7f9f0ab57d2c03be9ba761be8d854 |
---|
122 | ] |
---|
123 | [Add CSS styles to spiff up the Tahoe WUI's appearance, particularly the welcome page and directories. |
---|
124 | Kevin Reid <kpreid@mac.com>**20090503203142 |
---|
125 | Ignore-this: 5c50af241c1a958b5180ef2b6a49f626 |
---|
126 | ] |
---|
127 | [Link all Tahoe web pages to the /tahoe_css stylesheet which already exists. |
---|
128 | Kevin Reid <kpreid@mac.com>**20090503202533 |
---|
129 | Ignore-this: 2ea8d14d3168b9502cf39d5ea3f2f2a8 |
---|
130 | ] |
---|
131 | [Fix broken link from Provisioning to Reliability page. |
---|
132 | Kevin Reid <kpreid@mac.com>**20090501191050 |
---|
133 | Ignore-this: 56dc1a5e659b70cc02dc4df7b5d518cd |
---|
134 | ] |
---|
135 | [docs: network-and-reliance-topology.svg: nicer server icons, mv out of the "specifications" subdir |
---|
136 | zooko@zooko.com**20090526165842 |
---|
137 | Ignore-this: 8f47ab3a0ab782c1f0d46e10bcaebe5b |
---|
138 | ] |
---|
139 | [accounting-overview.txt: more edits |
---|
140 | warner@lothar.com**20090523190359] |
---|
141 | [accounting-overview.txt: small edits |
---|
142 | warner@lothar.com**20090523184011] |
---|
143 | [_auto_deps.py: require foolscap-0.4.1, which adds an important fix for py2.4 |
---|
144 | warner@lothar.com**20090523011103] |
---|
145 | [immutable/encode.py: tolerate immediate _remove_shareholder by copying the |
---|
146 | warner@lothar.com**20090522184424 |
---|
147 | landlord list before iterating over it. This can probably only happen in unit |
---|
148 | tests, but cleaning it up makes certain test failures easier to analyze. |
---|
149 | ] |
---|
150 | [switch to using RemoteException instead of 'wrapped' RemoteReferences. Should fix #653, the rref-EQ problem |
---|
151 | warner@lothar.com**20090522004632] |
---|
152 | [switch all foolscap imports to use foolscap.api or foolscap.logging |
---|
153 | warner@lothar.com**20090522003823] |
---|
154 | [_auto_deps.py: bump our foolscap dependency to 0.4.0, since I'm about to start using its new features |
---|
155 | warner@lothar.com**20090522002100] |
---|
156 | [test_runner.py: fix minor typo |
---|
157 | warner@lothar.com**20090520033620] |
---|
158 | [docs: update network-and-reliance-topology.svg |
---|
159 | zooko@zooko.com**20090526163105 |
---|
160 | Ignore-this: 2b864b4ed8743d4a15dfbb7eff3fa561 |
---|
161 | ] |
---|
162 | [setup: fix bug (wrong import) in error message, as noticed by pyflakes |
---|
163 | zooko@zooko.com**20090519195642 |
---|
164 | Ignore-this: f1b9f8c00b46c1b5f2f20e5fc424f341 |
---|
165 | ] |
---|
166 | [setup: fix trivial bug in recent patch to test base64.py at startup |
---|
167 | zooko@zooko.com**20090519195129 |
---|
168 | Ignore-this: f6be038f74b53ca69e7109fe34adfbc |
---|
169 | ] |
---|
170 | [setup: make Tahoe exit at startup with a useful error message if the base64.py module is buggy (fixes part of #710) |
---|
171 | zooko@zooko.com**20090519194555 |
---|
172 | Ignore-this: aa4d398235ddca8d417d61c9688e154 |
---|
173 | ] |
---|
174 | [test_introducer.py: add a test for the python2.4.0/2.4.1 bug in base64.b32decode |
---|
175 | warner@lothar.com**20090519034101] |
---|
176 | [immutable WriteBucketProxy: use pipeline to speed up uploads by overlapping roundtrips, for #392 |
---|
177 | warner@lothar.com**20090518234422] |
---|
178 | [util/pipeline.py: new utility class to manage size-limited work pipelines, for #392 |
---|
179 | warner@lothar.com**20090518234326] |
---|
180 | [docs: add a diagram that I'm about to show to the Boulder Linux Users Group: network-and-reliance-topology.svg |
---|
181 | zooko@zooko.com**20090514232059 |
---|
182 | Ignore-this: 2420c0a7c254c9f0f2349d9130490d33 |
---|
183 | ] |
---|
184 | [tests: mark test_runner as coded in utf-8 instead of ascii |
---|
185 | zooko@zooko.com**20090507223151 |
---|
186 | Ignore-this: ccf1ba9e5a9b53602701a36f9fdb545e |
---|
187 | ] |
---|
188 | [tests: raise timeout on test_runner.RunNode.test_introducer from 120s to 240s, since it hit the 120s time-out on François Lenny-armv5tel |
---|
189 | zooko@zooko.com**20090507215012 |
---|
190 | Ignore-this: ba18fe6832ba255d4971e8f623ed7da5 |
---|
191 | ] |
---|
192 | [setup: fix comment in setup.py |
---|
193 | zooko@zooko.com**20090507215003 |
---|
194 | Ignore-this: c46ef664630d52733138ef7fbc551c1c |
---|
195 | ] |
---|
196 | [docs: how_to_make_a_tahoe_release.txt: a couple of small edits |
---|
197 | zooko@zooko.com**20090507214932 |
---|
198 | Ignore-this: ae92aa835ad369f4b9e6e49d681957a3 |
---|
199 | ] |
---|
200 | [.darcs-boringfile: also ignore .gitignore |
---|
201 | warner@allmydata.com**20090415210550 |
---|
202 | Ignore-this: d29db314a1e506f6240859559436b4c3 |
---|
203 | ] |
---|
204 | [.darcs-boringfile: ignore .git, I'm starting to play around with it |
---|
205 | warner@allmydata.com**20090415205929 |
---|
206 | Ignore-this: 89234453516483c9586cd6e1351e88b5 |
---|
207 | ] |
---|
208 | [fix quicktest: stop using setuptools, add misc/run-with-pythonpath.py, to make it run faster |
---|
209 | warner@lothar.com**20090414201400] |
---|
210 | [TAG allmydata-tahoe-1.4.1 |
---|
211 | zooko@zooko.com**20090414025636 |
---|
212 | Ignore-this: de78fc32364c83e9f4e26b5abcfdea4a |
---|
213 | ] |
---|
214 | Patch bundle hash: |
---|
215 | 38cf122568be866b11cec3a989f65055994620b7 |
---|