Ticket #1051: refactor-test-web.dpatch

File refactor-test-web.dpatch, 23.8 KB (added by zooko, at 2010-05-19T06:07:39Z)
Line 
1Tue May 18 23:51:46 MDT 2010  zooko@zooko.com
2  * tests: refactor test_web.py to have less duplication of literal caps-from-the-future
3  This is a prelude to a patch which will add tests of caps from the future which have non-ascii chars in them.
4
5New patches:
6
7[tests: refactor test_web.py to have less duplication of literal caps-from-the-future
8zooko@zooko.com**20100519055146
9 Ignore-this: 49e5412e6cc4566ca67f069ffd850af6
10 This is a prelude to a patch which will add tests of caps from the future which have non-ascii chars in them.
11] {
12hunk ./src/allmydata/test/test_web.py 38
13 
14 timeout = 480 # Most of these take longer than 240 seconds on Francois's arm box.
15 
16+unknown_rwcap = "lafs://from_the_future"
17+unknown_rocap = "ro.lafs://readonly_from_the_future"
18+unknown_immcap = "imm.lafs://immutable_from_the_future"
19+
20 class FakeStatsProvider:
21     def get_stats(self):
22         stats = {'stats': {}, 'counters': {}}
23hunk ./src/allmydata/test/test_web.py 2180
24         filecap2 = make_mutable_file_uri()
25         node3 = self.s.create_node_from_uri(make_mutable_file_uri())
26         filecap3 = node3.get_readonly_uri()
27-        unknown_rwcap = "lafs://from_the_future"
28-        unknown_rocap = "ro.lafs://readonly_from_the_future"
29-        unknown_immcap = "imm.lafs://immutable_from_the_future"
30         node4 = self.s.create_node_from_uri(make_mutable_file_uri())
31         dircap = DirectoryNode(node4, None, None).get_uri()
32         litdircap = "URI:DIR2-LIT:ge3dumj2mewdcotyfqydulbshj5x2lbm"
33hunk ./src/allmydata/test/test_web.py 2215
34         tnode = create_chk_filenode("immutable directory contents\n"*10)
35         dnode = DirectoryNode(tnode, None, None)
36         assert not dnode.is_mutable()
37-        unknown_immcap = "imm.lafs://immutable_from_the_future"
38         immdircap = dnode.get_uri()
39         litdircap = "URI:DIR2-LIT:ge3dumj2mewdcotyfqydulbshj5x2lbm"
40         emptydircap = "URI:DIR2-LIT:"
41hunk ./src/allmydata/test/test_web.py 2456
42         return d
43 
44     def test_POST_link_uri_unknown_bad(self):
45-        newuri = "lafs://from_the_future"
46-        d = self.POST(self.public_url + "/foo", t="uri", name="future.txt", uri=newuri)
47+        d = self.POST(self.public_url + "/foo", t="uri", name="future.txt", uri=unknown_rwcap)
48         d.addBoth(self.shouldFail, error.Error,
49                   "POST_link_uri_unknown_bad",
50                   "400 Bad Request",
51hunk ./src/allmydata/test/test_web.py 2464
52         return d
53 
54     def test_POST_link_uri_unknown_ro_good(self):
55-        newuri = "ro.lafs://readonly_from_the_future"
56-        d = self.POST(self.public_url + "/foo", t="uri", name="future-ro.txt", uri=newuri)
57+        d = self.POST(self.public_url + "/foo", t="uri", name="future-ro.txt", uri=unknown_rocap)
58         d.addCallback(self.failUnlessURIMatchesROChild, self._foo_node, u"future-ro.txt")
59         return d
60 
61hunk ./src/allmydata/test/test_web.py 2469
62     def test_POST_link_uri_unknown_imm_good(self):
63-        newuri = "imm.lafs://immutable_from_the_future"
64-        d = self.POST(self.public_url + "/foo", t="uri", name="future-imm.txt", uri=newuri)
65+        d = self.POST(self.public_url + "/foo", t="uri", name="future-imm.txt", uri=unknown_immcap)
66         d.addCallback(self.failUnlessURIMatchesROChild, self._foo_node, u"future-imm.txt")
67         return d
68 
69hunk ./src/allmydata/test/test_web.py 2760
70         return d
71 
72     def test_PUT_NEWFILEURL_uri_unknown_bad(self):
73-        new_uri = "lafs://from_the_future"
74-        d = self.PUT(self.public_url + "/foo/put-future.txt?t=uri", new_uri)
75+        d = self.PUT(self.public_url + "/foo/put-future.txt?t=uri", unknown_rwcap)
76         d.addBoth(self.shouldFail, error.Error,
77                   "POST_put_uri_unknown_bad",
78                   "400 Bad Request",
79hunk ./src/allmydata/test/test_web.py 2768
80         return d
81 
82     def test_PUT_NEWFILEURL_uri_unknown_ro_good(self):
83-        new_uri = "ro.lafs://readonly_from_the_future"
84-        d = self.PUT(self.public_url + "/foo/put-future-ro.txt?t=uri", new_uri)
85+        d = self.PUT(self.public_url + "/foo/put-future-ro.txt?t=uri", unknown_rocap)
86         d.addCallback(self.failUnlessURIMatchesROChild, self._foo_node,
87                       u"put-future-ro.txt")
88         return d
89hunk ./src/allmydata/test/test_web.py 2774
90 
91     def test_PUT_NEWFILEURL_uri_unknown_imm_good(self):
92-        new_uri = "imm.lafs://immutable_from_the_future"
93-        d = self.PUT(self.public_url + "/foo/put-future-imm.txt?t=uri", new_uri)
94+        d = self.PUT(self.public_url + "/foo/put-future-imm.txt?t=uri", unknown_immcap)
95         d.addCallback(self.failUnlessURIMatchesROChild, self._foo_node,
96                       u"put-future-imm.txt")
97         return d
98hunk ./src/allmydata/test/test_web.py 3367
99         self.uris = {}
100         self.fileurls = {}
101 
102-        future_write_uri = "x-tahoe-crazy://I_am_from_the_future."
103-        future_read_uri = "x-tahoe-crazy-readonly://I_am_from_the_future."
104         # the future cap format may contain slashes, which must be tolerated
105hunk ./src/allmydata/test/test_web.py 3368
106-        expected_info_url = "uri/%s?t=info" % urllib.quote(future_write_uri,
107+        expected_info_url = "uri/%s?t=info" % urllib.quote(unknown_rwcap,
108                                                            safe="")
109 
110         if immutable:
111hunk ./src/allmydata/test/test_web.py 3373
112             name = u"future-imm"
113-            future_node = UnknownNode(None, future_read_uri, deep_immutable=True)
114+            future_node = UnknownNode(None, unknown_immcap, deep_immutable=True)
115             d = c0.create_immutable_dirnode({name: (future_node, {})})
116         else:
117             name = u"future"
118hunk ./src/allmydata/test/test_web.py 3377
119-            future_node = UnknownNode(future_write_uri, future_read_uri)
120+            future_node = UnknownNode(unknown_rwcap, unknown_rocap)
121             d = c0.create_dirnode()
122 
123         def _stash_root_and_create_file(n):
124hunk ./src/allmydata/test/test_web.py 3411
125             f = data[1]["children"][name]
126             self.failUnlessEqual(f[0], "unknown")
127             if expect_rw_uri:
128-                self.failUnlessEqual(f[1]["rw_uri"], future_write_uri)
129+                self.failUnlessEqual(f[1]["rw_uri"], unknown_rwcap)
130             else:
131                 self.failIfIn("rw_uri", f[1])
132             if immutable:
133hunk ./src/allmydata/test/test_web.py 3415
134-                self.failUnlessEqual(f[1]["ro_uri"], "imm." + future_read_uri)
135+                self.failUnlessEqual(f[1]["ro_uri"], unknown_immcap, data)
136             else:
137hunk ./src/allmydata/test/test_web.py 3417
138-                self.failUnlessEqual(f[1]["ro_uri"], "ro." + future_read_uri)
139+                self.failUnlessEqual(f[1]["ro_uri"], unknown_rocap)
140             self.failUnless("metadata" in f[1])
141         d.addCallback(_check_directory_json, expect_rw_uri=not immutable)
142 
143hunk ./src/allmydata/test/test_web.py 3424
144         def _check_info(res, expect_rw_uri, expect_ro_uri):
145             self.failUnlessIn("Object Type: <span>unknown</span>", res)
146             if expect_rw_uri:
147-                self.failUnlessIn(future_write_uri, res)
148+                self.failUnlessIn(unknown_rwcap, res)
149             if expect_ro_uri:
150hunk ./src/allmydata/test/test_web.py 3426
151-                self.failUnlessIn(future_read_uri, res)
152+                if immutable:
153+                    self.failUnlessIn(unknown_immcap, res)
154+                else:
155+                    self.failUnlessIn(unknown_rocap, res)
156             else:
157hunk ./src/allmydata/test/test_web.py 3431
158-                self.failIfIn(future_read_uri, res)
159+                self.failIfIn(unknown_rocap, res)
160             self.failIfIn("Raw data as", res)
161             self.failIfIn("Directory writecap", res)
162             self.failIfIn("Checker Operations", res)
163hunk ./src/allmydata/test/test_web.py 3450
164             data = simplejson.loads(res)
165             self.failUnlessEqual(data[0], "unknown")
166             if expect_rw_uri:
167-                self.failUnlessEqual(data[1]["rw_uri"], future_write_uri)
168+                self.failUnlessEqual(data[1]["rw_uri"], unknown_rwcap)
169             else:
170                 self.failIfIn("rw_uri", data[1])
171 
172hunk ./src/allmydata/test/test_web.py 3455
173             if immutable:
174-                self.failUnlessEqual(data[1]["ro_uri"], "imm." + future_read_uri)
175+                self.failUnlessEqual(data[1]["ro_uri"], unknown_immcap)
176                 self.failUnlessEqual(data[1]["mutable"], False)
177             elif expect_rw_uri:
178hunk ./src/allmydata/test/test_web.py 3458
179-                self.failUnlessEqual(data[1]["ro_uri"], "ro." + future_read_uri)
180+                self.failUnlessEqual(data[1]["ro_uri"], unknown_rocap)
181                 self.failUnlessEqual(data[1]["mutable"], True)
182             else:
183hunk ./src/allmydata/test/test_web.py 3461
184-                self.failUnlessEqual(data[1]["ro_uri"], "ro." + future_read_uri)
185+                self.failUnlessEqual(data[1]["ro_uri"], unknown_rocap)
186                 self.failIf("mutable" in data[1], data[1])
187 
188             # TODO: check metadata contents
189hunk ./src/allmydata/test/test_web.py 3471
190         d.addCallback(_check_json, expect_rw_uri=not immutable)
191 
192         # and make sure that a read-only version of the directory can be
193-        # rendered too. This version will not have future_write_uri, whether
194+        # rendered too. This version will not have unknown_rwcap, whether
195         # or not future_node was immutable.
196         d.addCallback(lambda ign: self.GET(self.rourl))
197         if immutable:
198hunk ./src/allmydata/test/test_web.py 3650
199 
200         # this tests that deep-check and stream-manifest will ignore
201         # UnknownNode instances. Hopefully this will also cover deep-stats.
202-        future_write_uri = "x-tahoe-crazy://I_am_from_the_future."
203-        future_read_uri = "x-tahoe-crazy-readonly://I_am_from_the_future."
204-        future_node = UnknownNode(future_write_uri, future_read_uri)
205+        future_node = UnknownNode(unknown_rwcap, unknown_rocap)
206         d.addCallback(lambda ign: self.rootnode.set_node(u"future", future_node))
207 
208         def _clobber_shares(ignored):
209}
210
211Context:
212
213[docs: line-wrap README.txt
214zooko@zooko.com**20100518174240
215 Ignore-this: 670a02d360df7de51ebdcf4fae752577
216] 
217[Hush pyflakes warnings
218Kevan Carstensen <kevan@isnotajoke.com>**20100515184344
219 Ignore-this: fd602c3bba115057770715c36a87b400
220] 
221[setup: new improved misc/show-tool-versions.py
222zooko@zooko.com**20100516050122
223 Ignore-this: ce9b1de1b35b07d733e6cf823b66335a
224] 
225[Improve code coverage of the Tahoe2PeerSelector tests.
226Kevan Carstensen <kevan@isnotajoke.com>**20100515032913
227 Ignore-this: 793151b63ffa65fdae6915db22d9924a
228] 
229[Remove a comment that no longer makes sense.
230Kevan Carstensen <kevan@isnotajoke.com>**20100514203516
231 Ignore-this: 956983c7e7c7e4477215494dfce8f058
232] 
233[docs: update docs/architecture.txt to more fully and correctly explain the upload procedure
234zooko@zooko.com**20100514043458
235 Ignore-this: 538b6ea256a49fed837500342092efa3
236] 
237[Fix up the behavior of #778, per reviewers' comments
238Kevan Carstensen <kevan@isnotajoke.com>**20100514004917
239 Ignore-this: 9c20b60716125278b5456e8feb396bff
240 
241   - Make some important utility functions clearer and more thoroughly
242     documented.
243   - Assert in upload.servers_of_happiness that the buckets attributes
244     of PeerTrackers passed to it are mutually disjoint.
245   - Get rid of some silly non-Pythonisms that I didn't see when I first
246     wrote these patches.
247   - Make sure that should_add_server returns true when queried about a
248     shnum that it doesn't know about yet.
249   - Change Tahoe2PeerSelector.preexisting_shares to map a shareid to a set
250     of peerids, alter dependencies to deal with that.
251   - Remove upload.should_add_servers, because it is no longer necessary
252   - Move upload.shares_of_happiness and upload.shares_by_server to a utility
253     file.
254   - Change some points in Tahoe2PeerSelector.
255   - Compute servers_of_happiness using a bipartite matching algorithm that
256     we know is optimal instead of an ad-hoc greedy algorithm that isn't.
257   - Change servers_of_happiness to just take a sharemap as an argument,
258     change its callers to merge existing_shares and used_peers before
259     calling it.
260   - Change an error message in the encoder to be more appropriate for
261     servers of happiness.
262   - Clarify the wording of an error message in immutable/upload.py
263   - Refactor a happiness failure message to happinessutil.py, and make
264     immutable/upload.py and immutable/encode.py use it.
265   - Move the word "only" as far to the right as possible in failure
266     messages.
267   - Use a better definition of progress during peer selection.
268   - Do read-only peer share detection queries in parallel, not sequentially.
269   - Clean up logging semantics; print the query statistics whenever an
270     upload is unsuccessful, not just in one case.
271 
272] 
273[Alter the error message when an upload fails, per some comments in #778.
274Kevan Carstensen <kevan@isnotajoke.com>**20091230210344
275 Ignore-this: ba97422b2f9737c46abeb828727beb1
276 
277 When I first implemented #778, I just altered the error messages to refer to
278 servers where they referred to shares. The resulting error messages weren't
279 very good. These are a bit better.
280] 
281[Change "UploadHappinessError" to "UploadUnhappinessError"
282Kevan Carstensen <kevan@isnotajoke.com>**20091205043037
283 Ignore-this: 236b64ab19836854af4993bb5c1b221a
284] 
285[Alter the error message returned when peer selection fails
286Kevan Carstensen <kevan@isnotajoke.com>**20091123002405
287 Ignore-this: b2a7dc163edcab8d9613bfd6907e5166
288 
289 The Tahoe2PeerSelector returned either NoSharesError or NotEnoughSharesError
290 for a variety of error conditions that weren't informatively described by them.
291 This patch creates a new error, UploadHappinessError, replaces uses of
292 NoSharesError and NotEnoughSharesError with it, and alters the error message
293 raised with the errors to be more in line with the new servers_of_happiness
294 behavior. See ticket #834 for more information.
295] 
296[Eliminate overcounting iof servers_of_happiness in Tahoe2PeerSelector; also reorganize some things.
297Kevan Carstensen <kevan@isnotajoke.com>**20091118014542
298 Ignore-this: a6cb032cbff74f4f9d4238faebd99868
299] 
300[Change stray "shares_of_happiness" to "servers_of_happiness"
301Kevan Carstensen <kevan@isnotajoke.com>**20091116212459
302 Ignore-this: 1c971ba8c3c4d2e7ba9f020577b28b73
303] 
304[Alter Tahoe2PeerSelector to make sure that it recognizes existing shares on readonly servers, fixing an issue in #778
305Kevan Carstensen <kevan@isnotajoke.com>**20091116192805
306 Ignore-this: 15289f4d709e03851ed0587b286fd955
307] 
308[Alter 'immutable/encode.py' and 'immutable/upload.py' to use servers_of_happiness instead of shares_of_happiness.
309Kevan Carstensen <kevan@isnotajoke.com>**20091104111222
310 Ignore-this: abb3283314820a8bbf9b5d0cbfbb57c8
311] 
312[Alter the signature of set_shareholders in IEncoder to add a 'servermap' parameter, which gives IEncoders enough information to perform a sane check for servers_of_happiness.
313Kevan Carstensen <kevan@isnotajoke.com>**20091104033241
314 Ignore-this: b3a6649a8ac66431beca1026a31fed94
315] 
316[Alter CiphertextDownloader to work with servers_of_happiness
317Kevan Carstensen <kevan@isnotajoke.com>**20090924041932
318 Ignore-this: e81edccf0308c2d3bedbc4cf217da197
319] 
320[Revisions of the #778 tests, per reviewers' comments
321Kevan Carstensen <kevan@isnotajoke.com>**20100514012542
322 Ignore-this: 735bbc7f663dce633caeb3b66a53cf6e
323 
324 - Fix comments and confusing naming.
325 - Add tests for the new error messages suggested by David-Sarah
326   and Zooko.
327 - Alter existing tests for new error messages.
328 - Make sure that the tests continue to work with the trunk.
329 - Add a test for a mutual disjointedness assertion that I added to
330   upload.servers_of_happiness.
331 - Fix the comments to correctly reflect read-onlyness
332 - Add a test for an edge case in should_add_server
333 - Add an assertion to make sure that share redistribution works as it
334   should
335 - Alter tests to work with revised servers_of_happiness semantics
336 - Remove tests for should_add_server, since that function no longer exists.
337 - Alter tests to know about merge_peers, and to use it before calling
338   servers_of_happiness.
339 - Add tests for merge_peers.
340 - Add Zooko's puzzles to the tests.
341 - Edit encoding tests to expect the new kind of failure message.
342 - Edit tests to expect error messages with the word "only" moved as far
343   to the right as possible.
344 - Extended and cleaned up some helper functions.
345 - Changed some tests to call more appropriate helper functions.
346 - Added a test for the failing redistribution algorithm
347 - Added a test for the progress message
348 - Added a test for the upper bound on readonly peer share discovery.
349 
350] 
351[Alter various unit tests to work with the new happy behavior
352Kevan Carstensen <kevan@isnotajoke.com>**20100107181325
353 Ignore-this: 132032bbf865e63a079f869b663be34a
354] 
355[Replace "UploadHappinessError" with "UploadUnhappinessError" in tests.
356Kevan Carstensen <kevan@isnotajoke.com>**20091205043453
357 Ignore-this: 83f4bc50c697d21b5f4e2a4cd91862ca
358] 
359[Add tests for the behavior described in #834.
360Kevan Carstensen <kevan@isnotajoke.com>**20091123012008
361 Ignore-this: d8e0aa0f3f7965ce9b5cea843c6d6f9f
362] 
363[Re-work 'test_upload.py' to be more readable; add more tests for #778
364Kevan Carstensen <kevan@isnotajoke.com>**20091116192334
365 Ignore-this: 7e8565f92fe51dece5ae28daf442d659
366] 
367[Test Tahoe2PeerSelector to make sure that it recognizeses existing shares on readonly servers
368Kevan Carstensen <kevan@isnotajoke.com>**20091109003735
369 Ignore-this: 12f9b4cff5752fca7ed32a6ebcff6446
370] 
371[Add more tests for comment:53 in ticket #778
372Kevan Carstensen <kevan@isnotajoke.com>**20091104112849
373 Ignore-this: 3bb2edd299a944cc9586e14d5d83ec8c
374] 
375[Add a test for upload.shares_by_server
376Kevan Carstensen <kevan@isnotajoke.com>**20091104111324
377 Ignore-this: f9802e82d6982a93e00f92e0b276f018
378] 
379[Minor tweak to an existing test -- make the first server read-write, instead of read-only
380Kevan Carstensen <kevan@isnotajoke.com>**20091104034232
381 Ignore-this: a951a46c93f7f58dd44d93d8623b2aee
382] 
383[Alter tests to use the new form of set_shareholders
384Kevan Carstensen <kevan@isnotajoke.com>**20091104033602
385 Ignore-this: 3deac11fc831618d11441317463ef830
386] 
387[Refactor some behavior into a mixin, and add tests for the behavior described in #778
388"Kevan Carstensen" <kevan@isnotajoke.com>**20091030091908
389 Ignore-this: a6f9797057ca135579b249af3b2b66ac
390] 
391[Alter NoNetworkGrid to allow the creation of readonly servers for testing purposes.
392Kevan Carstensen <kevan@isnotajoke.com>**20091018013013
393 Ignore-this: e12cd7c4ddeb65305c5a7e08df57c754
394] 
395[Update 'docs/architecture.txt' to reflect readonly share discovery
396kevan@isnotajoke.com**20100514003852
397 Ignore-this: 7ead71b34df3b1ecfdcfd3cb2882e4f9
398] 
399[Alter the wording in docs/architecture.txt to more accurately describe the servers_of_happiness behavior.
400Kevan Carstensen <kevan@isnotajoke.com>**20100428002455
401 Ignore-this: 6eff7fa756858a1c6f73728d989544cc
402] 
403[Alter wording in 'interfaces.py' to be correct wrt #778
404"Kevan Carstensen" <kevan@isnotajoke.com>**20091205034005
405 Ignore-this: c9913c700ac14e7a63569458b06980e0
406] 
407[Update 'docs/configuration.txt' to reflect the servers_of_happiness behavior.
408Kevan Carstensen <kevan@isnotajoke.com>**20091205033813
409 Ignore-this: 5e1cb171f8239bfb5b565d73c75ac2b8
410] 
411[Clarify quickstart instructions for installing pywin32
412david-sarah@jacaranda.org**20100511180300
413 Ignore-this: d4668359673600d2acbc7cd8dd44b93c
414] 
415[web: add a simple test that you can load directory.xhtml
416zooko@zooko.com**20100510063729
417 Ignore-this: e49b25fa3c67b3c7a56c8b1ae01bb463
418] 
419[setup: fix typos in misc/show-tool-versions.py
420zooko@zooko.com**20100510063615
421 Ignore-this: 2181b1303a0e288e7a9ebd4c4855628
422] 
423[setup: show code-coverage tool versions in show-tools-versions.py
424zooko@zooko.com**20100510062955
425 Ignore-this: 4b4c68eb3780b762c8dbbd22b39df7cf
426] 
427[Dependency on Windmill test framework is not needed yet.
428david-sarah@jacaranda.org**20100504161043
429 Ignore-this: be088712bec650d4ef24766c0026ebc8
430] 
431[docs: update README, mv it to README.txt, update setup.py
432zooko@zooko.com**20100504094340
433 Ignore-this: 40e28ca36c299ea1fd12d3b91e5b421c
434] 
435[tests: pass z to tar so that BSD tar will know to ungzip
436zooko@zooko.com**20100504090628
437 Ignore-this: 1339e493f255e8fc0b01b70478f23a09
438] 
439[setup: update comments and URLs in setup.cfg
440zooko@zooko.com**20100504061653
441 Ignore-this: f97692807c74bcab56d33100c899f829
442] 
443[CLI: Support for https url in option --node-url
444Francois Deppierraz <francois@ctrlaltdel.ch>**20100430185609
445 Ignore-this: 1717176b4d27c877e6bc67a944d9bf34
446 
447 This patch modifies the regular expression used for verifying of '--node-url'
448 parameter.  Support for accessing a Tahoe gateway over HTTPS was already
449 present, thanks to Python's urllib.
450 
451] 
452[backupdb.did_create_directory: use REPLACE INTO, not INSERT INTO + ignore error
453Brian Warner <warner@lothar.com>**20100428050803
454 Ignore-this: 1fca7b8f364a21ae413be8767161e32f
455 
456 This handles the case where we upload a new tahoe directory for a
457 previously-processed local directory, possibly creating a new dircap (if the
458 metadata had changed). Now we replace the old dirhash->dircap record. The
459 previous behavior left the old record in place (with the old dircap and
460 timestamps), so we'd never stop creating new directories and never converge
461 on a null backup.
462] 
463["tahoe webopen": add --info flag, to get ?t=info
464Brian Warner <warner@lothar.com>**20100424233003
465 Ignore-this: 126b0bb6db340fabacb623d295eb45fa
466 
467 Also fix some trailing whitespace.
468] 
469[setup: reorder and extend the show-tool-versions script, the better to glean information about our new buildslaves
470zooko@zooko.com**20100504045643
471 Ignore-this: 836084b56b8d4ee8f1de1f4efb706d36
472] 
473[docs: install.html http-equiv refresh to quickstart.html
474zooko@zooko.com**20100421165708
475 Ignore-this: 52b4b619f9dde5886ae2cd7f1f3b734b
476] 
477[docs: install.html -> quickstart.html
478zooko@zooko.com**20100421155757
479 Ignore-this: 6084e203909306bed93efb09d0e6181d
480 It is not called "installing" because that implies that it is going to change the configuration of your operating system. It is not called "building" because that implies that you need developer tools like a compiler. Also I added a stern warning against looking at the "InstallDetails" wiki page, which I have renamed to "AdvancedInstall".
481] 
482[Fix another typo in tahoe_storagespace munin plugin
483david-sarah@jacaranda.org**20100416220935
484 Ignore-this: ad1f7aa66b554174f91dfb2b7a3ea5f3
485] 
486[Add dependency on windmill >= 1.3
487david-sarah@jacaranda.org**20100416190404
488 Ignore-this: 4437a7a464e92d6c9012926b18676211
489] 
490[licensing: phrase the OpenSSL-exemption in the vocabulary of copyright instead of computer technology, and replicate the exemption from the GPL to the TGPPL
491zooko@zooko.com**20100414232521
492 Ignore-this: a5494b2f582a295544c6cad3f245e91
493] 
494[munin-tahoe_storagespace
495freestorm77@gmail.com**20100221203626
496 Ignore-this: 14d6d6a587afe1f8883152bf2e46b4aa
497 
498 Plugin configuration rename
499 
500] 
501[setup: add licensing declaration for setuptools (noticed by the FSF compliance folks)
502zooko@zooko.com**20100309184415
503 Ignore-this: 2dfa7d812d65fec7c72ddbf0de609ccb
504] 
505[setup: fix error in licensing declaration from Shawn Willden, as noted by the FSF compliance division
506zooko@zooko.com**20100309163736
507 Ignore-this: c0623d27e469799d86cabf67921a13f8
508] 
509[CREDITS to Jacob Appelbaum
510zooko@zooko.com**20100304015616
511 Ignore-this: 70db493abbc23968fcc8db93f386ea54
512] 
513[desert-island-build-with-proper-versions
514jacob@appelbaum.net**20100304013858] 
515[docs: a few small edits to try to guide newcomers through the docs
516zooko@zooko.com**20100303231902
517 Ignore-this: a6aab44f5bf5ad97ea73e6976bc4042d
518 These edits were suggested by my watching over Jake Appelbaum's shoulder as he completely ignored/skipped/missed install.html and also as he decided that debian.txt wouldn't help him with basic installation. Then I threw in a few docs edits that have been sitting around in my sandbox asking to be committed for months.
519] 
520[TAG allmydata-tahoe-1.6.1
521david-sarah@jacaranda.org**20100228062314
522 Ignore-this: eb5f03ada8ea953ee7780e7fe068539
523] 
524Patch bundle hash:
5256e17d0574b4f5d996e958edb2139b40e52d438fc