Ticket #1474: improve-check-interfaces.darcs.patch

File improve-check-interfaces.darcs.patch, 76.9 KB (added by davidsarah, at 2011-09-16T22:37:21Z)

various improvements to check-interface.py

Line 
14 patches for repository davidsarah@dev.allmydata.org:/home/darcs/tahoe/trunk:
2
3Thu Sep 15 17:15:32 BST 2011  david-sarah@jacaranda.org
4  * Add a script 'misc/coding_tools/check-interfaces.py' that checks whether zope interfaces are enforced. Also add 'check-interfaces', 'version-and-path', and 'code-checks' targets to the Makefile. fixes #1474
5
6Fri Sep 16 22:26:24 BST 2011  david-sarah@jacaranda.org
7  * misc/coding_tools/check-interfaces.py: reduce false-positives by adding Dummy* to the set of excluded classnames, and bench-* to the set of excluded basenames. refs #1474
8
9Fri Sep 16 22:26:33 BST 2011  david-sarah@jacaranda.org
10  * misc/coding_tools/check_interfaces.py: use os.walk instead of FilePath, since this script shouldn't really depend on Twisted. refs #1474
11
12Fri Sep 16 23:34:50 BST 2011  david-sarah@jacaranda.org
13  * misc/coding_tools/check_interfaces.py: report all violations rather than only one for a given class, by including a forked version of verifyClass. refs #1474
14
15New patches:
16
17[Add a script 'misc/coding_tools/check-interfaces.py' that checks whether zope interfaces are enforced. Also add 'check-interfaces', 'version-and-path', and 'code-checks' targets to the Makefile. fixes #1474
18david-sarah@jacaranda.org**20110915161532
19 Ignore-this: 32d9bdc5bc4a86d21e927724560ad4b4
20] {
21hunk ./Makefile 124
22        false
23 endif
24 
25+code-checks: build version-and-path check-interfaces -find-trailing-spaces -check-umids pyflakes
26+
27+version-and-path:
28+       $(TAHOE) --version-and-path
29+
30+check-interfaces:
31+       $(TAHOE) @misc/coding_tools/check-interfaces.py 2>&1 |tee violations.txt
32+       @echo
33 
34 pyflakes:
35        $(PYTHON) -OOu `which pyflakes` $(SOURCES) |sort |uniq
36hunk ./Makefile 135
37+       @echo
38 
39 check-umids:
40        $(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py'`
41hunk ./Makefile 139
42+       @echo
43+
44+-check-umids:
45+       -$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py'`
46+       @echo
47 
48 count-lines:
49        @echo -n "files: "
50hunk ./Makefile 230
51 
52 find-trailing-spaces:
53        $(PYTHON) misc/coding_tools/find-trailing-spaces.py -r $(SOURCES)
54+       @echo
55+
56+-find-trailing-spaces:
57+       -$(PYTHON) misc/coding_tools/find-trailing-spaces.py -r $(SOURCES)
58+       @echo
59 
60 # The test-desert-island target grabs the tahoe-deps tarball, unpacks it,
61 # does a build, then asserts that the build did not try to download anything
62addfile ./misc/coding_tools/check-interfaces.py
63hunk ./misc/coding_tools/check-interfaces.py 1
64+
65+# To check a particular Tahoe source distribution, this should be invoked from
66+# the root directory of that distribution as
67+#
68+#   bin/tahoe @misc/coding_tools/check-interfaces.py
69+
70+import os, sys, re
71+
72+import zope.interface as zi
73+from zope.interface.verify import verifyClass
74+from zope.interface.advice import addClassAdvisor
75+
76+
77+interesting_modules = re.compile(r'(allmydata)|(foolscap)\..*')
78+excluded_classnames = re.compile(r'(_)|(Mock)|(Fake).*')
79+excluded_file_basenames = re.compile(r'check_.*')
80+
81+
82+other_modules_with_violations = set()
83+
84+# deep magic
85+def strictly_implements(*interfaces):
86+    frame = sys._getframe(1)
87+    f_locals = frame.f_locals
88+
89+    # Try to make sure we were called from a class def. Assumes Python > 2.2.
90+    if f_locals is frame.f_globals or '__module__' not in f_locals:
91+        raise TypeError("implements can be used only from a class definition.")
92+
93+    if '__implements_advice_data__' in f_locals:
94+        raise TypeError("implements can be used only once in a class definition.")
95+
96+    def _implements_advice(cls):
97+        interfaces, classImplements = cls.__dict__['__implements_advice_data__']
98+        del cls.__implements_advice_data__
99+        classImplements(cls, *interfaces)
100+
101+        if interesting_modules.match(cls.__module__):
102+            if not excluded_classnames.match(cls.__name__):
103+                for interface in interfaces:
104+                    try:
105+                        verifyClass(interface, cls)
106+                    except Exception, e:
107+                        print >>sys.stderr, ("%s.%s does not implement %s.%s:\n%s"
108+                                             % (cls.__module__, cls.__name__,
109+                                                interface.__module__, interface.__name__, e))
110+        else:
111+            other_modules_with_violations.add(cls.__module__)
112+        return cls
113+
114+    f_locals['__implements_advice_data__'] = interfaces, zi.classImplements
115+    addClassAdvisor(_implements_advice, depth=2)
116+
117+
118+# patchee-monkey
119+zi.implements = strictly_implements
120+
121+
122+# attempt to avoid side-effects from importing command scripts
123+sys.argv = ['', '--help']
124+
125+
126+from twisted.python.filepath import FilePath
127+
128+# import modules under src/
129+src = FilePath('src')
130+for fp in src.walk():
131+    (basepath, ext) = fp.splitext()
132+    if ext == '.py' and not excluded_file_basenames.match(fp.basename()):
133+        relpath = os.path.relpath(basepath, src.path)
134+        module = relpath.replace(os.path.sep, '/').replace('/', '.')
135+        try:
136+            __import__(module)
137+        except ImportError:
138+            import traceback
139+            traceback.print_exc()
140+            print >>sys.stderr
141+
142+others = list(other_modules_with_violations)
143+others.sort()
144+print >>sys.stderr, "There were also interface violations in:\n", ", ".join(others), "\n"
145}
146[misc/coding_tools/check-interfaces.py: reduce false-positives by adding Dummy* to the set of excluded classnames, and bench-* to the set of excluded basenames. refs #1474
147david-sarah@jacaranda.org**20110916212624
148 Ignore-this: 4e78f6e6fe6c0e9be9df826a0e206804
149] hunk ./misc/coding_tools/check-interfaces.py 15
150 
151 
152 interesting_modules = re.compile(r'(allmydata)|(foolscap)\..*')
153-excluded_classnames = re.compile(r'(_)|(Mock)|(Fake).*')
154-excluded_file_basenames = re.compile(r'check_.*')
155+excluded_classnames = re.compile(r'(_)|(Mock)|(Fake)|(Dummy).*')
156+excluded_file_basenames = re.compile(r'(check)|(bench)_.*')
157 
158 
159 other_modules_with_violations = set()
160[misc/coding_tools/check_interfaces.py: use os.walk instead of FilePath, since this script shouldn't really depend on Twisted. refs #1474
161david-sarah@jacaranda.org**20110916212633
162 Ignore-this: 46eeb4236b34375227dac71ef53f5428
163] {
164hunk ./misc/coding_tools/check-interfaces.py 63
165 sys.argv = ['', '--help']
166 
167 
168-from twisted.python.filepath import FilePath
169-
170 # import modules under src/
171hunk ./misc/coding_tools/check-interfaces.py 64
172-src = FilePath('src')
173-for fp in src.walk():
174-    (basepath, ext) = fp.splitext()
175-    if ext == '.py' and not excluded_file_basenames.match(fp.basename()):
176-        relpath = os.path.relpath(basepath, src.path)
177-        module = relpath.replace(os.path.sep, '/').replace('/', '.')
178-        try:
179-            __import__(module)
180-        except ImportError:
181-            import traceback
182-            traceback.print_exc()
183-            print >>sys.stderr
184+srcdir = 'src'
185+for (dirpath, dirnames, filenames) in os.walk(srcdir):
186+    for fn in filenames:
187+        (basename, ext) = os.path.splitext(fn)
188+        if ext == '.py' and not excluded_file_basenames.match(basename):
189+            relpath = os.path.join(dirpath[len(srcdir)+1:], basename)
190+            module = relpath.replace(os.sep, '/').replace('/', '.')
191+            try:
192+                __import__(module)
193+            except ImportError:
194+                import traceback
195+                traceback.print_exc()
196+                print >>sys.stderr
197 
198 others = list(other_modules_with_violations)
199 others.sort()
200}
201[misc/coding_tools/check_interfaces.py: report all violations rather than only one for a given class, by including a forked version of verifyClass. refs #1474
202david-sarah@jacaranda.org**20110916223450
203 Ignore-this: 927efeecf4d12588316826a4b3479aa9
204] {
205hunk ./misc/coding_tools/check-interfaces.py 10
206 import os, sys, re
207 
208 import zope.interface as zi
209-from zope.interface.verify import verifyClass
210+# We use the forked version of verifyClass below.
211+#from zope.interface.verify import verifyClass
212 from zope.interface.advice import addClassAdvisor
213 
214 
215hunk ./misc/coding_tools/check-interfaces.py 45
216                     try:
217                         verifyClass(interface, cls)
218                     except Exception, e:
219-                        print >>sys.stderr, ("%s.%s does not implement %s.%s:\n%s"
220+                        print >>sys.stderr, ("%s.%s does not correctly implement %s.%s:\n%s"
221                                              % (cls.__module__, cls.__name__,
222                                                 interface.__module__, interface.__name__, e))
223         else:
224hunk ./misc/coding_tools/check-interfaces.py 56
225     addClassAdvisor(_implements_advice, depth=2)
226 
227 
228-# patchee-monkey
229-zi.implements = strictly_implements
230+def check():
231+    # patchee-monkey
232+    zi.implements = strictly_implements
233 
234hunk ./misc/coding_tools/check-interfaces.py 60
235+    # attempt to avoid side-effects from importing command scripts
236+    sys.argv = ['', '--help']
237 
238hunk ./misc/coding_tools/check-interfaces.py 63
239-# attempt to avoid side-effects from importing command scripts
240-sys.argv = ['', '--help']
241+    # import modules under src/
242+    srcdir = 'src'
243+    for (dirpath, dirnames, filenames) in os.walk(srcdir):
244+        for fn in filenames:
245+            (basename, ext) = os.path.splitext(fn)
246+            if ext == '.py' and not excluded_file_basenames.match(basename):
247+                relpath = os.path.join(dirpath[len(srcdir)+1:], basename)
248+                module = relpath.replace(os.sep, '/').replace('/', '.')
249+                try:
250+                    __import__(module)
251+                except ImportError:
252+                    import traceback
253+                    traceback.print_exc()
254+                    print >>sys.stderr
255 
256hunk ./misc/coding_tools/check-interfaces.py 78
257+    others = list(other_modules_with_violations)
258+    others.sort()
259+    print >>sys.stderr, "There were also interface violations in:\n", ", ".join(others), "\n"
260 
261hunk ./misc/coding_tools/check-interfaces.py 82
262-# import modules under src/
263-srcdir = 'src'
264-for (dirpath, dirnames, filenames) in os.walk(srcdir):
265-    for fn in filenames:
266-        (basename, ext) = os.path.splitext(fn)
267-        if ext == '.py' and not excluded_file_basenames.match(basename):
268-            relpath = os.path.join(dirpath[len(srcdir)+1:], basename)
269-            module = relpath.replace(os.sep, '/').replace('/', '.')
270-            try:
271-                __import__(module)
272-            except ImportError:
273-                import traceback
274-                traceback.print_exc()
275-                print >>sys.stderr
276 
277hunk ./misc/coding_tools/check-interfaces.py 83
278-others = list(other_modules_with_violations)
279-others.sort()
280-print >>sys.stderr, "There were also interface violations in:\n", ", ".join(others), "\n"
281+# Forked from
282+# http://svn.zope.org/*checkout*/Zope3/trunk/src/zope/interface/verify.py?content-type=text%2Fplain&rev=27687
283+# but modified to report all interface violations rather than just the first.
284+
285+##############################################################################
286+#
287+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
288+# All Rights Reserved.
289+#
290+# This software is subject to the provisions of the Zope Public License,
291+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
292+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
293+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
294+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
295+# FOR A PARTICULAR PURPOSE.
296+#
297+##############################################################################
298+"""Verify interface implementations
299+
300+$Id$
301+"""
302+from zope.interface.exceptions import BrokenImplementation, DoesNotImplement
303+from zope.interface.exceptions import BrokenMethodImplementation
304+from types import FunctionType, MethodType
305+from zope.interface.interface import fromMethod, fromFunction, Method
306+
307+# This will be monkey-patched when running under Zope 2, so leave this
308+# here:
309+MethodTypes = (MethodType, )
310+
311+
312+def _verify(iface, candidate, tentative=0, vtype=None):
313+    """Verify that 'candidate' might correctly implements 'iface'.
314+
315+    This involves:
316+
317+      o Making sure the candidate defines all the necessary methods
318+
319+      o Making sure the methods have the correct signature
320+
321+      o Making sure the candidate asserts that it implements the interface
322+
323+    Note that this isn't the same as verifying that the class does
324+    implement the interface.
325+
326+    If optional tentative is true, suppress the "is implemented by" test.
327+    """
328+
329+    if vtype == 'c':
330+        tester = iface.implementedBy
331+    else:
332+        tester = iface.providedBy
333+
334+    violations = []
335+    def format(e):
336+        return "    " + str(e).strip() + "\n"
337+
338+    if not tentative and not tester(candidate):
339+        violations.append(format(DoesNotImplement(iface)))
340+
341+    # Here the `desc` is either an `Attribute` or `Method` instance
342+    for name, desc in iface.namesAndDescriptions(1):
343+        if not hasattr(candidate, name):
344+            if (not isinstance(desc, Method)) and vtype == 'c':
345+                # We can't verify non-methods on classes, since the
346+                # class may provide attrs in it's __init__.
347+                continue
348+
349+            if isinstance(desc, Method):
350+                violations.append("    The %r method was not provided.\n" % (name,))
351+            else:
352+                violations.append("    The %r attribute was not provided.\n" % (name,))
353+            continue
354+
355+        attr = getattr(candidate, name)
356+        if not isinstance(desc, Method):
357+            # If it's not a method, there's nothing else we can test
358+            continue
359+
360+        if isinstance(attr, FunctionType):
361+            # should never get here, since classes should not provide functions
362+            meth = fromFunction(attr, iface, name=name)
363+        elif (isinstance(attr, MethodTypes)
364+              and type(attr.im_func) is FunctionType):
365+            meth = fromMethod(attr, iface, name)
366+        else:
367+            if not callable(attr):
368+                violations.append(format(BrokenMethodImplementation(name, "Not a method")))
369+            # sigh, it's callable, but we don't know how to intrspect it, so
370+            # we have to give it a pass.
371+            continue
372+
373+        # Make sure that the required and implemented method signatures are
374+        # the same.
375+        desc = desc.getSignatureInfo()
376+        meth = meth.getSignatureInfo()
377+
378+        mess = _incompat(desc, meth)
379+        if mess:
380+            violations.append(format(BrokenMethodImplementation(name, mess)))
381+
382+    if violations:
383+        raise Exception("".join(violations))
384+    return True
385+
386+def verifyClass(iface, candidate, tentative=0):
387+    return _verify(iface, candidate, tentative, vtype='c')
388+
389+def verifyObject(iface, candidate, tentative=0):
390+    return _verify(iface, candidate, tentative, vtype='o')
391+
392+def _incompat(required, implemented):
393+    #if (required['positional'] !=
394+    #    implemented['positional'][:len(required['positional'])]
395+    #    and implemented['kwargs'] is None):
396+    #    return 'imlementation has different argument names'
397+    if len(implemented['required']) > len(required['required']):
398+        return 'implementation requires too many arguments'
399+    if ((len(implemented['positional']) < len(required['positional']))
400+        and not implemented['varargs']):
401+        return "implementation doesn't allow enough arguments"
402+    if required['kwargs'] and not implemented['kwargs']:
403+        return "implementation doesn't support keyword arguments"
404+    if required['varargs'] and not implemented['varargs']:
405+        return "implementation doesn't support variable arguments"
406+
407+
408+check()
409}
410
411Context:
412
413[Make platform-detection code tolerate linux-3.0, patch by zooko.
414Brian Warner <warner@lothar.com>**20110915202620
415 Ignore-this: af63cf9177ae531984dea7a1cad03762
416 
417 Otherwise address-autodetection can't find ifconfig. refs #1536
418]
419[test_web.py: fix a bug in _count_leases that was causing us to check only the lease count of one share file, not of all share files as intended.
420david-sarah@jacaranda.org**20110915185126
421 Ignore-this: d96632bc48d770b9b577cda1bbd8ff94
422]
423[docs: insert a newline at the beginning of known_issues.rst to see if this makes it render more nicely in trac
424zooko@zooko.com**20110914064728
425 Ignore-this: aca15190fa22083c5d4114d3965f5d65
426]
427[docs: remove the coding: utf-8 declaration at the to of known_issues.rst, since the trac rendering doesn't hide it
428zooko@zooko.com**20110914055713
429 Ignore-this: 941ed32f83ead377171aa7a6bd198fcf
430]
431[docs: more cleanup of known_issues.rst -- now it passes "rst2html --verbose" without comment
432zooko@zooko.com**20110914055419
433 Ignore-this: 5505b3d76934bd97d0312cc59ed53879
434]
435[docs: more formatting improvements to known_issues.rst
436zooko@zooko.com**20110914051639
437 Ignore-this: 9ae9230ec9a38a312cbacaf370826691
438]
439[docs: reformatting of known_issues.rst
440zooko@zooko.com**20110914050240
441 Ignore-this: b8be0375079fb478be9d07500f9aaa87
442]
443[docs: fix formatting error in docs/known_issues.rst
444zooko@zooko.com**20110914045909
445 Ignore-this: f73fe74ad2b9e655aa0c6075acced15a
446]
447[merge Tahoe-LAFS v1.8.3 release announcement with trunk
448zooko@zooko.com**20110913210544
449 Ignore-this: 163f2c3ddacca387d7308e4b9332516e
450]
451[docs: release notes for Tahoe-LAFS v1.8.3
452zooko@zooko.com**20110913165826
453 Ignore-this: 84223604985b14733a956d2fbaeb4e9f
454]
455[tests: bump up the timeout in this test that fails on FreeStorm's CentOS in order to see if it is just very slow
456zooko@zooko.com**20110913024255
457 Ignore-this: 6a86d691e878cec583722faad06fb8e4
458]
459[interfaces: document that the 'fills-holes-with-zero-bytes' key should be used to detect whether a storage server has that behavior. refs #1528
460david-sarah@jacaranda.org**20110913002843
461 Ignore-this: 1a00a6029d40f6792af48c5578c1fd69
462]
463[CREDITS: more CREDITS for Kevan and David-Sarah
464zooko@zooko.com**20110912223357
465 Ignore-this: 4ea8f0d6f2918171d2f5359c25ad1ada
466]
467[merge NEWS about the mutable file bounds fixes with NEWS about work-in-progress
468zooko@zooko.com**20110913205521
469 Ignore-this: 4289a4225f848d6ae6860dd39bc92fa8
470]
471[doc: add NEWS item about fixes to potential palimpsest issues in mutable files
472zooko@zooko.com**20110912223329
473 Ignore-this: 9d63c95ddf95c7d5453c94a1ba4d406a
474 ref. #1528
475]
476[merge the NEWS about the security fix (#1528) with the work-in-progress NEWS
477zooko@zooko.com**20110913205153
478 Ignore-this: 88e88a2ad140238c62010cf7c66953fc
479]
480[doc: add NEWS entry about the issue which allows unauthorized deletion of shares
481zooko@zooko.com**20110912223246
482 Ignore-this: 77e06d09103d2ef6bb51ea3e5d6e80b0
483 ref. #1528
484]
485[doc: add entry in known_issues.rst about the issue which allows unauthorized deletion of shares
486zooko@zooko.com**20110912223135
487 Ignore-this: b26c6ea96b6c8740b93da1f602b5a4cd
488 ref. #1528
489]
490[storage: more paranoid handling of bounds and palimpsests in mutable share files
491zooko@zooko.com**20110912222655
492 Ignore-this: a20782fa423779ee851ea086901e1507
493 * storage server ignores requests to extend shares by sending a new_length
494 * storage server fills exposed holes (created by sending a write vector whose offset begins after the end of the current data) with 0 to avoid "palimpsest" exposure of previous contents
495 * storage server zeroes out lease info at the old location when moving it to a new location
496 ref. #1528
497]
498[storage: test that the storage server ignores requests to extend shares by sending a new_length, and that the storage server fills exposed holes with 0 to avoid "palimpsest" exposure of previous contents
499zooko@zooko.com**20110912222554
500 Ignore-this: 61ebd7b11250963efdf5b1734a35271
501 ref. #1528
502]
503[immutable: prevent clients from reading past the end of share data, which would allow them to learn the cancellation secret
504zooko@zooko.com**20110912222458
505 Ignore-this: da1ebd31433ea052087b75b2e3480c25
506 Declare explicitly that we prevent this problem in the server's version dict.
507 fixes #1528 (there are two patches that are each a sufficient fix to #1528 and this is one of them)
508]
509[storage: remove the storage server's "remote_cancel_lease" function
510zooko@zooko.com**20110912222331
511 Ignore-this: 1c32dee50e0981408576daffad648c50
512 We're removing this function because it is currently unused, because it is dangerous, and because the bug described in #1528 leaks the cancellation secret, which allows anyone who knows a file's storage index to abuse this function to delete shares of that file.
513 fixes #1528 (there are two patches that are each a sufficient fix to #1528 and this is one of them)
514]
515[storage: test that the storage server does *not* have a "remote_cancel_lease" function
516zooko@zooko.com**20110912222324
517 Ignore-this: 21c652009704652d35f34651f98dd403
518 We're removing this function because it is currently unused, because it is dangerous, and because the bug described in #1528 leaks the cancellation secret, which allows anyone who knows a file's storage index to abuse this function to delete shares of that file.
519 ref. #1528
520]
521[immutable: test whether the server allows clients to read past the end of share data, which would allow them to learn the cancellation secret
522zooko@zooko.com**20110912221201
523 Ignore-this: 376e47b346c713d37096531491176349
524 Also test whether the server explicitly declares that it prevents this problem.
525 ref #1528
526]
527[Retrieve._activate_enough_peers: rewrite Verify logic
528Brian Warner <warner@lothar.com>**20110909181150
529 Ignore-this: 9367c11e1eacbf025f75ce034030d717
530]
531[Retrieve: implement/test stopProducing
532Brian Warner <warner@lothar.com>**20110909181150
533 Ignore-this: 47b2c3df7dc69835e0a066ca12e3c178
534]
535[move DownloadStopped from download.common to interfaces
536Brian Warner <warner@lothar.com>**20110909181150
537 Ignore-this: 8572acd3bb16e50341dbed8eb1d90a50
538]
539[retrieve.py: remove vestigal self._validated_readers
540Brian Warner <warner@lothar.com>**20110909181150
541 Ignore-this: faab2ec14e314a53a2ffb714de626e2d
542]
543[Retrieve: rewrite flow-control: use a top-level loop() to catch all errors
544Brian Warner <warner@lothar.com>**20110909181150
545 Ignore-this: e162d2cd53b3d3144fc6bc757e2c7714
546 
547 This ought to close the potential for dropped errors and hanging downloads.
548 Verify needs to be examined, I may have broken it, although all tests pass.
549]
550[Retrieve: merge _validate_active_prefixes into _add_active_peers
551Brian Warner <warner@lothar.com>**20110909181150
552 Ignore-this: d3ead31e17e69394ae7058eeb5beaf4c
553]
554[Retrieve: remove the initial prefix-is-still-good check
555Brian Warner <warner@lothar.com>**20110909181150
556 Ignore-this: da66ee51c894eaa4e862e2dffb458acc
557 
558 This check needs to be done with each fetch from the storage server, to
559 detect when someone has changed the share (i.e. our servermap goes stale).
560 Doing it just once at the beginning of retrieve isn't enough: a write might
561 occur after the first segment but before the second, etc.
562 
563 _try_to_validate_prefix() was not removed: it will be used by the future
564 check-with-each-fetch code.
565 
566 test_mutable.Roundtrip.test_corrupt_all_seqnum_late was disabled, since it
567 fails until this check is brought back. (the corruption it applies only
568 touches the prefix, not the block data, so the check-less retrieve actually
569 tolerates it). Don't forget to re-enable it once the check is brought back.
570]
571[MDMFSlotReadProxy: remove the queue
572Brian Warner <warner@lothar.com>**20110909181150
573 Ignore-this: 96673cb8dda7a87a423de2f4897d66d2
574 
575 This is a neat trick to reduce Foolscap overhead, but the need for an
576 explicit flush() complicates the Retrieve path and makes it prone to
577 lost-progress bugs.
578 
579 Also change test_mutable.FakeStorageServer to tolerate multiple reads of the
580 same share in a row, a limitation exposed by turning off the queue.
581]
582[rearrange Retrieve: first step, shouldn't change order of execution
583Brian Warner <warner@lothar.com>**20110909181149
584 Ignore-this: e3006368bfd2802b82ea45c52409e8d6
585]
586[CLI: test_cli.py -- remove an unnecessary call in test_mkdir_mutable_type. refs #1527
587david-sarah@jacaranda.org**20110906183730
588 Ignore-this: 122e2ffbee84861c32eda766a57759cf
589]
590[CLI: improve test for 'tahoe mkdir --mutable-type='. refs #1527
591david-sarah@jacaranda.org**20110906183020
592 Ignore-this: f1d4598e6c536f0a2b15050b3bc0ef9d
593]
594[CLI: make the --mutable-type option value for 'tahoe put' and 'tahoe mkdir' case-insensitive, and change --help for these commands accordingly. fixes #1527
595david-sarah@jacaranda.org**20110905020922
596 Ignore-this: 75a6df0a2df9c467d8c010579e9a024e
597]
598[cli: make --mutable-type imply --mutable in 'tahoe put'
599Kevan Carstensen <kevan@isnotajoke.com>**20110903190920
600 Ignore-this: 23336d3c43b2a9554e40c2a11c675e93
601]
602[SFTP: add a comment about a subtle interaction between OverwriteableFileConsumer and GeneralSFTPFile, and test the case it is commenting on.
603david-sarah@jacaranda.org**20110903222304
604 Ignore-this: 980c61d4dd0119337f1463a69aeebaf0
605]
606[improve the storage/mutable.py asserts even more
607warner@lothar.com**20110901160543
608 Ignore-this: 5b2b13c49bc4034f96e6e3aaaa9a9946
609]
610[storage/mutable.py: special characters in struct.foo arguments indicate standard as opposed to native sizes, we should be using these characters in these asserts
611wilcoxjg@gmail.com**20110901084144
612 Ignore-this: 28ace2b2678642e4d7269ddab8c67f30
613]
614[test_mutable.Version: consolidate some tests, reduce runtime from 19s to 15s
615warner@lothar.com**20110831050451
616 Ignore-this: 64815284d9e536f8f3798b5f44cf580c
617]
618[mutable/retrieve: handle the case where self._read_length is 0.
619Kevan Carstensen <kevan@isnotajoke.com>**20110830210141
620 Ignore-this: fceafbe485851ca53f2774e5a4fd8d30
621 
622 Note that the downloader will still fetch a segment for a zero-length
623 read, which is wasteful. Fixing that isn't specifically required to fix
624 #1512, but it should probably be fixed before 1.9.
625]
626[NEWS: added summary of all changes since 1.8.2. Needs editing.
627Brian Warner <warner@lothar.com>**20110830163205
628 Ignore-this: 273899b37a899fc6919b74572454b8b2
629]
630[test_mutable.Update: only upload the files needed for each test. refs #1500
631Brian Warner <warner@lothar.com>**20110829072717
632 Ignore-this: 4d2ab4c7523af9054af7ecca9c3d9dc7
633 
634 This first step shaves 15% off the runtime: from 139s to 119s on my laptop.
635 It also fixes a couple of places where a Deferred was being dropped, which
636 would cause two tests to run in parallel and also confuse error reporting.
637]
638[Let Uploader retain History instead of passing it into upload(). Fixes #1079.
639Brian Warner <warner@lothar.com>**20110829063246
640 Ignore-this: 3902c58ec12bd4b2d876806248e19f17
641 
642 This consistently records all immutable uploads in the Recent Uploads And
643 Downloads page, regardless of code path. Previously, certain webapi upload
644 operations (like PUT /uri/$DIRCAP/newchildname) failed to pass the History
645 object and were left out.
646]
647[Fix mutable publish/retrieve timing status displays. Fixes #1505.
648Brian Warner <warner@lothar.com>**20110828232221
649 Ignore-this: 4080ce065cf481b2180fd711c9772dd6
650 
651 publish:
652 * encrypt and encode times are cumulative, not just current-segment
653 
654 retrieve:
655 * same for decrypt and decode times
656 * update "current status" to include segment number
657 * set status to Finished/Failed when download is complete
658 * set progress to 1.0 when complete
659 
660 More improvements to consider:
661 * progress is currently 0% or 100%: should calculate how many segments are
662   involved (remembering retrieve can be less than the whole file) and set it
663   to a fraction
664 * "fetch" time is fuzzy: what we want is to know how much of the delay is not
665   our own fault, but since we do decode/decrypt work while waiting for more
666   shares, it's not straightforward
667]
668[Teach 'tahoe debug catalog-shares about MDMF. Closes #1507.
669Brian Warner <warner@lothar.com>**20110828080931
670 Ignore-this: 56ef2951db1a648353d7daac6a04c7d1
671]
672[debug.py: remove some dead comments
673Brian Warner <warner@lothar.com>**20110828074556
674 Ignore-this: 40e74040dd4d14fd2f4e4baaae506b31
675]
676[hush pyflakes
677Brian Warner <warner@lothar.com>**20110828074254
678 Ignore-this: bef9d537a969fa82fe4decc4ba2acb09
679]
680[MutableFileNode.set_downloader_hints: never depend upon order of dict.values()
681Brian Warner <warner@lothar.com>**20110828074103
682 Ignore-this: caaf1aa518dbdde4d797b7f335230faa
683 
684 The old code was calculating the "extension parameters" (a list) from the
685 downloader hints (a dictionary) with hints.values(), which is not stable, and
686 would result in corrupted filecaps (with the 'k' and 'segsize' hints
687 occasionally swapped). The new code always uses [k,segsize].
688]
689[layout.py: fix MDMF share layout documentation
690Brian Warner <warner@lothar.com>**20110828073921
691 Ignore-this: 3f13366fed75b5e31b51ae895450a225
692]
693[teach 'tahoe debug dump-share' about MDMF and offsets. refs #1507
694Brian Warner <warner@lothar.com>**20110828073834
695 Ignore-this: 3a9d2ef9c47a72bf1506ba41199a1dea
696]
697[test_mutable.Version.test_debug: use splitlines() to fix buildslaves
698Brian Warner <warner@lothar.com>**20110828064728
699 Ignore-this: c7f6245426fc80b9d1ae901d5218246a
700 
701 Any slave running in a directory with spaces in the name was miscounting
702 shares, causing the test to fail.
703]
704[test_mutable.Version: exercise 'tahoe debug find-shares' on MDMF. refs #1507
705Brian Warner <warner@lothar.com>**20110828005542
706 Ignore-this: cb20bea1c28bfa50a72317d70e109672
707 
708 Also changes NoNetworkGrid to put shares in storage/shares/ .
709]
710[test_mutable.py: oops, missed a .todo
711Brian Warner <warner@lothar.com>**20110828002118
712 Ignore-this: fda09ae86481352b7a627c278d2a3940
713]
714[test_mutable: merge davidsarah's patch with my Version refactorings
715warner@lothar.com**20110827235707
716 Ignore-this: b5aaf481c90d99e33827273b5d118fd0
717]
718[test_mutable.Version: factor out some expensive uploads, save 25% runtime
719Brian Warner <warner@lothar.com>**20110827232737
720 Ignore-this: ea37383eb85ea0894b254fe4dfb45544
721]
722[SDMF: update filenode with correct k/N after Retrieve. Fixes #1510.
723Brian Warner <warner@lothar.com>**20110827225031
724 Ignore-this: b50ae6e1045818c400079f118b4ef48
725 
726 Without this, we get a regression when modifying a mutable file that was
727 created with more shares (larger N) than our current tahoe.cfg . The
728 modification attempt creates new versions of the (0,1,..,newN-1) shares, but
729 leaves the old versions of the (newN,..,oldN-1) shares alone (and throws a
730 assertion error in SDMFSlotWriteProxy.finish_publishing in the process).
731 
732 The mixed versions that result (some shares with e.g. N=10, some with N=20,
733 such that both versions are recoverable) cause problems for the Publish code,
734 even before MDMF landed. Might be related to refs #1390 and refs #1042.
735]
736[layout.py: annotate assertion to figure out 'tahoe backup' failure
737Brian Warner <warner@lothar.com>**20110827195253
738 Ignore-this: 9b92b954e3ed0d0f80154fff1ff674e5
739]
740[Add 'tahoe debug dump-cap' support for MDMF, DIR2-CHK, DIR2-MDMF. refs #1507.
741Brian Warner <warner@lothar.com>**20110827195048
742 Ignore-this: 61c6af5e33fc88e0251e697a50addb2c
743 
744 This also adds tests for all those cases, and fixes an omission in uri.py
745 that broke parsing of DIR2-MDMF-Verifier and DIR2-CHK-Verifier.
746]
747[MDMF: more writable/writeable consistentifications
748warner@lothar.com**20110827190602
749 Ignore-this: 22492a9e20c1819ddb12091062888b55
750]
751[MDMF: s/Writable/Writeable/g, for consistency with existing SDMF code
752warner@lothar.com**20110827183357
753 Ignore-this: 9dd312acedbdb2fc2f7bef0d0fb17c0b
754]
755[test_mutable.Update: increase timeout from 120s to 400s, slaves are failing
756Brian Warner <warner@lothar.com>**20110825230140
757 Ignore-this: 101b1924a30cdbda9b2e419e95ca15ec
758]
759[tests: fix check_memory test
760zooko@zooko.com**20110825201116
761 Ignore-this: 4d66299fa8cb61d2ca04b3f45344d835
762 fixes #1503
763]
764[docs/write_coordination.rst: fix formatting and add more specific warning about access via sshfs.
765david-sarah@jacaranda.org**20110831232148
766 Ignore-this: cd9c851d3eb4e0a1e088f337c291586c
767]
768[setup.cfg: remove no-longer-supported test_mac_diskimage alias. refs #1479
769david-sarah@jacaranda.org**20110826230345
770 Ignore-this: 40e908b8937322a290fb8012bfcad02a
771]
772[TAG allmydata-tahoe-1.9.0a1
773warner@lothar.com**20110825161122
774 Ignore-this: 3cbf49f00dbda58189f893c427f65605
775]
776[touch NEWS to trigger buildslaves
777warner@lothar.com**20110825161026
778 Ignore-this: 3d444737d005a9051780d15604166401
779]
780[test_mutable.Update: remove .timeout overrides, otherwise tests ERROR
781Brian Warner <warner@lothar.com>**20110825022455
782 Ignore-this: 140ea1f7207ffd68be40e112f6e3d310
783]
784[blacklist.py: add read() method too, for completeness
785warner@lothar.com**20110825021902
786 Ignore-this: c79a429f311b01732eba2a71119e84
787]
788[Additional tests for MDMF URIs and for zero-length files. refs #393
789david-sarah@jacaranda.org**20110823011532
790 Ignore-this: a7cc0c09d1d2d72413f9cd227c47a9d5
791]
792[Additional tests for zero-length partial reads and updates to mutable versions. refs #393
793david-sarah@jacaranda.org**20110822014111
794 Ignore-this: 5fc6f4d06e11910124e4a277ec8a43ea
795]
796[Implementation, tests and docs for blacklists. This version allows listing directories containing a blacklisted child. Inclusion of blacklist.py fixed. fixes #1425
797david-sarah@jacaranda.org**20110824155928
798 Ignore-this: a306f36bb6640eaf046e66dc4beeb11c
799]
800[Make the immutable/read-only constraint checking for MDMF URIs identical to that for SSK URIs. refs #393
801david-sarah@jacaranda.org**20110823012720
802 Ignore-this: e1f59d7ff2007c81dbef2aeb14abd721
803]
804[mutable/layout.py: fix unused import. refs #393
805david-sarah@jacaranda.org**20110816225043
806 Ignore-this: 7c9d6d91521ceb9a7abd14b2c60c0604
807]
808[mutable/retrieve.py: cosmetics and remove a stale comment. refs #393
809david-sarah@jacaranda.org**20110816214612
810 Ignore-this: 916e60c9dff1ef85595822e609ff34b7
811]
812[mutable/filenode.py: don't fetch more segments than necesasry to update the file
813Kevan Carstensen <kevan@isnotajoke.com>**20110813210005
814 Ignore-this: 2b0ad0533baa6f19f18851317dfc9f15
815]
816[test/test_mutable: test for incorrect div_ceil equations
817Kevan Carstensen <kevan@isnotajoke.com>**20110813183936
818 Ignore-this: 74e6061ab2ec5e706a1235611f87d5d6
819]
820[mutable/retrieve.py: use floor division to calculate segment boundaries, don't fetch more segments than necessary
821Kevan Carstensen <kevan@isnotajoke.com>**20110813183833
822 Ignore-this: 3e272249107afd3fbc1dd30c6a4f1e31
823]
824[mdmf: clean up boolean expressions, correct typos, remove self._paused, and don't unconditionally initialize block hash trees, asll as suggested by davidsarahs' review comments
825Kevan Carstensen <kevan@isnotajoke.com>**20110813183710
826 Ignore-this: cc6ad9f98b64f379151aa58b77b6c4e5
827]
828[now that tests pass with full-size keys, return test-keys to normal (522bit)
829warner@lothar.com**20110811175418
830 Ignore-this: dbce8a6699ba9a90d91cffbc8aa87900
831]
832[fix SHARE_HASH_CHAIN_SIZE computation
833warner@lothar.com**20110811175350
834 Ignore-this: 4508359d2207c8c1b7552b546697264
835]
836[More idiomatic resolution of the conflict between ticket393-MDMF-2 and trunk. refs #393
837david-sarah@jacaranda.org**20110810202942
838 Ignore-this: 7fc54a30ab0bc6ce75b7d819800c1182
839]
840[Replace the hard-coded 522-bit RSA key size used for tests with a TEST_RSA_KEY_SIZE constant defined in test/common.py (part 2). refs #393
841david-sarah@jacaranda.org**20110810202310
842 Ignore-this: 7fbd4d004279599bbcb10f7b31fb010f
843]
844[Replace the hard-coded 522-bit RSA key size used for tests with a TEST_RSA_KEY_SIZE constant defined in test/common.py (part 1). refs #393
845david-sarah@jacaranda.org**20110810202243
846 Ignore-this: c58d8130a2f383ff4421c632499b027b
847]
848[merge some minor conflicts in test code from the 393-2 branch and trunk
849zooko@zooko.com**20110810172139
850 Ignore-this: 4a16f13eeae585c7c1dbe18c67072c90
851]
852[doc: eliminate the phrase "rootcap" from doc/frontends/FTP-and-SFTP.rst
853zooko@zooko.com**20110809132601
854 Ignore-this: f7e1dd212daa65c81fb57977bce24304
855 Two different people have asked me for help, saying they couldn't figure out what a "rootcap" is. Hopefully just calling it a "cap" will make it easier for them to find out from the other docs what it is.
856]
857[test_web.py: fix a test failure dependent on whether simplejson.loads returns a unicode or str object.
858david-sarah@jacaranda.org**20110808213925
859 Ignore-this: f7b267be8be56fcabc968e3c89999490
860]
861[immutable/filenode: fix pyflakes warnings
862Kevan Carstensen <kevan@isnotajoke.com>**20110807004514
863 Ignore-this: e8d875bf8b1c5571e31b0eff42ecf64c
864]
865[test: fix assorted tests broken by MDMF changes
866Kevan Carstensen <kevan@isnotajoke.com>**20110807004459
867 Ignore-this: 9a0dc7e5c74bfe840a9fce278619a103
868]
869[uri: add MDMF and MDMF directory caps, add extension hint support
870Kevan Carstensen <kevan@isnotajoke.com>**20110807004436
871 Ignore-this: 6486b7d4dc0e849c6b1e9cdfb6318eac
872]
873[test/test_mutable: tests for MDMF
874Kevan Carstensen <kevan@isnotajoke.com>**20110807004414
875 Ignore-this: 29f9c3a806d67df0ed09c4f0d857d347
876 
877 These are their own patch because they cut across a lot of the changes
878 I've made in implementing MDMF in such a way as to make it difficult to
879 split them up into the other patches.
880]
881[webapi changes for MDMF
882Kevan Carstensen <kevan@isnotajoke.com>**20110807004348
883 Ignore-this: d6d4dac680baa4c99b05882b3828796c
884 
885     - Learn how to create MDMF files and directories through the
886       mutable-type argument.
887     - Operate with the interface changes associated with MDMF and #993.
888     - Learn how to do partial updates of mutable files.
889]
890[mutable/servermap: Rework the servermap to work with MDMF mutable files
891Kevan Carstensen <kevan@isnotajoke.com>**20110807004259
892 Ignore-this: 154b987fa0af716c41185b88ff7ee2e1
893]
894[dirnode: teach dirnode to make MDMF directories
895Kevan Carstensen <kevan@isnotajoke.com>**20110807004224
896 Ignore-this: 765ccd6a07ff752bf6057a3dab9e5abd
897]
898[Fix some test failures caused by #393 patch.
899david-sarah@jacaranda.org**20110802032810
900 Ignore-this: 7f65e5adb5c859af289cea7011216fef
901]
902[docs: amend configuration, webapi documentation to talk about MDMF
903Kevan Carstensen <kevan@isnotajoke.com>**20110802022056
904 Ignore-this: 4cab9b7e4ab79cc1efdabe2d457f27a6
905]
906[cli: teach CLI how to create MDMF mutable files
907Kevan Carstensen <kevan@isnotajoke.com>**20110802021613
908 Ignore-this: 18d0ff98e75be231eed3c53319e76936
909 
910 Specifically, 'tahoe mkdir' and 'tahoe put' now take a --mutable-type
911 argument.
912]
913[frontends/sftpd: Resolve incompatibilities between SFTP frontend and MDMF changes
914Kevan Carstensen <kevan@isnotajoke.com>**20110802021207
915 Ignore-this: 5e0f6e961048f71d4eed6d30210ffd2e
916]
917[mutable/layout: Define MDMF share format, write tools for working with MDMF share format
918Kevan Carstensen <kevan@isnotajoke.com>**20110802021120
919 Ignore-this: fa76ef4800939e19ba3cbc22a2eab4e
920 
921 The changes in layout.py are mostly concerned with the MDMF share
922 format. In particular, we define read and write proxy objects used by
923 retrieval, publishing, and other code to write and read the MDMF share
924 format. We create equivalent proxies for SDMF objects so that these
925 objects can be suitably general.
926]
927[immutable/filenode: implement unified filenode interface
928Kevan Carstensen <kevan@isnotajoke.com>**20110802020905
929 Ignore-this: d9a442fc285157f134f5d1b4607c6a48
930]
931[immutable/literal.py: Implement interface changes in literal nodes.
932Kevan Carstensen <kevan@isnotajoke.com>**20110802020814
933 Ignore-this: 4371e71a50e65ce2607c4d67d3a32171
934]
935[test/common: Alter common test code to work with MDMF.
936Kevan Carstensen <kevan@isnotajoke.com>**20110802015643
937 Ignore-this: e564403182d0030439b168dd9f8726fa
938 
939 This mostly has to do with making the test code implement the new
940 unified filenode interfaces.
941]
942[mutable: train checker and repairer to work with MDMF mutable files
943Kevan Carstensen <kevan@isnotajoke.com>**20110802015140
944 Ignore-this: 8b1928925bed63708b71ab0de8d4306f
945]
946[nodemaker: teach nodemaker about MDMF caps
947Kevan Carstensen <kevan@isnotajoke.com>**20110802014926
948 Ignore-this: 430c73121b6883b99626cfd652fc65c4
949]
950[client: teach client how to create and work with MDMF files
951Kevan Carstensen <kevan@isnotajoke.com>**20110802014811
952 Ignore-this: d72fbc4c2ca63f00d9ab9dc2919098ff
953]
954[mutable/filenode: Modify mutable filenodes for use with MDMF
955Kevan Carstensen <kevan@isnotajoke.com>**20110802014501
956 Ignore-this: 3c230bb0ebe60a94c667b0ee0c3b28e0
957 
958 In particular:
959     - Break MutableFileNode and MutableFileVersion into distinct classes.
960     - Implement the interface modifications made for MDMF.
961     - Be aware of MDMF caps.
962     - Learn how to create and work with MDMF files.
963]
964[nodemaker: teach nodemaker how to create MDMF mutable files
965Kevan Carstensen <kevan@isnotajoke.com>**20110802014258
966 Ignore-this: 2bf1fd4f8c1d1ad0e855c678347b76c2
967]
968[interfaces: change interfaces to work with MDMF
969Kevan Carstensen <kevan@isnotajoke.com>**20110802014119
970 Ignore-this: 2f441022cf888c044bc9e6dd609db139
971 
972 A lot of this work concerns #993, in that it unifies (to an extent) the
973 interfaces of mutable and immutable files.
974]
975[mutable/publish: teach the publisher how to publish MDMF mutable files
976Kevan Carstensen <kevan@isnotajoke.com>**20110802013931
977 Ignore-this: 115217ec2b289452ec774cb725da8a86
978 
979 Like the downloader, the publisher needs some substantial changes to handle multiple segment mutable files.
980]
981[mutable/retrieve: rework the mutable downloader to handle multiple-segment files
982Kevan Carstensen <kevan@isnotajoke.com>**20110802013524
983 Ignore-this: 398d11b5cb993b50e5e4fa6e7a3856dc
984 
985 The downloader needs substantial reworking to handle multiple segment
986 mutable files, which it needs to handle for MDMF.
987]
988[Fix repeated 'the' in license text.
989david-sarah@jacaranda.org**20110819204836
990 Ignore-this: b3bd4e9ec22029fe15533ad2a60003ad
991]
992[Remove Non-Profit Open Software License from the set of 'added permission' licenses. Although it actually does qualify as an Open Source license (because it allows relicensing under plain OSL), its wording is unclear and could easily be misunderstood, and it contributes to incompatible license proliferation.
993david-sarah@jacaranda.org**20110819204742
994 Ignore-this: 7373819a6b5367581356728ea62cabb1
995]
996[docs: change links that pointed to COPYING.TGPPL.html to point to COPYING.TGPPL.rst instead
997zooko@zooko.com**20110819060142
998 Ignore-this: 301652554fd7ab4bfa5aa8f8a2863a9e
999]
1000[docs: formatting: reflow to fill-column 77
1001zooko@zooko.com**20110819060110
1002 Ignore-this: ed1317c126f07c63b944bd2fa6aa2d21
1003]
1004[docs: formatting: M-x whitespace-cleanup
1005zooko@zooko.com**20110819060041
1006 Ignore-this: 8554b16a25067094d0dc4dc71e1b3950
1007]
1008[licensing: add to the list of licenses that we grant the added permission for
1009zooko@zooko.com**20110819054656
1010 Ignore-this: eb1490416ac6b7414a27f150a8a8a047
1011 Added: most of the ones listed on the FSF's "List of Free Software, GPL Incompatible Licenses", plus the Non-Profit Open Software License.
1012]
1013[docs: reflow the added text at the top of COPYING.GPL to fill-column 77
1014zooko@zooko.com**20110819053059
1015 Ignore-this: e994ed6ffbcc12656406f11cb862ce99
1016]
1017[docs: reformat COPYING.TGPPL.html to COPYING.TGPPL.rst
1018zooko@zooko.com**20110819052753
1019 Ignore-this: 34ddf623e0a6de008ba859ca9c92b2fd
1020]
1021[docs: reflow docs/logging.rst to fill-column 77
1022zooko@zooko.com**20110819044103
1023 Ignore-this: a6901f2244995f278ddf8d75d29410bf
1024]
1025[doc: fix formatting error in docs/logging.rst
1026zooko@zooko.com**20110819043946
1027 Ignore-this: fa182dbbe7f4fda15e0a8bfcf7f00051
1028]
1029[Cleanups for suppression of UserWarnings. refs #1435
1030david-sarah@jacaranda.org**20110818040749
1031 Ignore-this: 3863ef399c1c382a1365d51f000d314c
1032]
1033[suppress warning emitted by newer zope.interface with Nevow 0.10
1034zooko@zooko.com**20110817203134
1035 Ignore-this: b86d4ce0ed1c0da76d1f9eaf8d08d9c4
1036 refs #1435
1037]
1038[doc: formatting: reflow to fill-column=77
1039zooko@zooko.com**20110809132510
1040 Ignore-this: 2d6d2e203d52925968b4451f36364792
1041]
1042[_auto_deps.py: change the requirement for zope.interface to <= 3.6.2, >= 3.6.6. fixes #1435
1043david-sarah@jacaranda.org**20110815025347
1044 Ignore-this: 17a88c0f6573f044fbcd6b666667bd37
1045]
1046[allmydata/__init__.py, test_version.py: make version parsing understand '<=', with test. refs #1435
1047david-sarah@jacaranda.org**20110815035153
1048 Ignore-this: 8c3a75f4a2b42b56bac48b5053c5e9c2
1049]
1050[Makefile and setup.py: remove setup.py commands that we no longer need, and their uses in the Makefile. Delete a stale and incorrect comment about updating _version.py. Also fix some coding style checks in the Makefile to operate on all source files.
1051david-sarah@jacaranda.org**20110801031952
1052 Ignore-this: 80a435dee3bc6e29058d4b37ff579922
1053]
1054[remove misc/debian[_helpers], rely upon official packaging instead. fixes #1454
1055warner@lothar.com**20110811182705
1056 Ignore-this: 79673cafc7c108db49b5ab908d7b4668
1057]
1058[Makefile: remove targets that used misc/debian[_helpers] which no longer exist. Also change docs/debian.rst to reflect the fact that we no longer support building .debs using those targets. refs #1454
1059david-sarah@jacaranda.org**20110801031857
1060 Ignore-this: 347cbeff45757db630ce34d0cfb84f92
1061]
1062[replace tabs with spaces in the #1441 'tahoe debug' synopsis
1063warner@lothar.com**20110811173704
1064 Ignore-this: 513fbfb18a3dd93119ea3700118df7ee
1065]
1066[Correct the information printed by '/usr/bin/tahoe debug --help' on Debian/Ubuntu. fixes #1441
1067david-sarah@jacaranda.org**20110724162530
1068 Ignore-this: 30d4b8c20e420e9a9d1b73eba1113ae
1069]
1070[doc: edit the explanation of K-of-N tradeoffs
1071zooko@zooko.com**20110804193409
1072 Ignore-this: ab6f4e35a995c2099340b5c9c5d30f40
1073]
1074[doc: clean up formatting of doc/configuration.rst
1075zooko@zooko.com**20110804192722
1076 Ignore-this: 7a98a3a8afb7e5441ff1f534211199ba
1077 reflow to 77 chars line width, M-x white-space cleanup, blank link between name and definition
1078]
1079[Add test for webopen. fixes #1149
1080david-sarah@jacaranda.org**20110724211659
1081 Ignore-this: 1e22853f7eb05e24c3141d56a513f661
1082]
1083[test_client.py: relax a check in test_create_drop_uploader so that it should pass on Python 2.4.x. refs #1429
1084david-sarah@jacaranda.org**20110810052504
1085 Ignore-this: 1380749ceaf33c30e26c50d57476616c
1086]
1087[test/common_util.py: correct fix to mkdir_nonascii. refs #1472
1088david-sarah@jacaranda.org**20110810051906
1089 Ignore-this: 93c0c33370bc47d95c26c4cce8e05290
1090]
1091[test/common_util.py: fix a typo. refs #1472
1092david-sarah@jacaranda.org**20110810044235
1093 Ignore-this: f88643d7c82cb3577686d77bbff9e2bc
1094]
1095[test_client.py, test_drop_upload.py: fix pyflakes warnings.
1096david-sarah@jacaranda.org**20110810034505
1097 Ignore-this: 1e2d71bf2f43d63cbb423d32a6f96793
1098]
1099[Factor out methods dealing with non-ASCII directories and filenames from test_drop_upload.py into common_util.py. refs #1429, #1472
1100david-sarah@jacaranda.org**20110810031558
1101 Ignore-this: 3de8f945fa7a58fc318a1184bad0fd1a
1102]
1103[test_client.py: add a test that the drop-uploader is initialized correctly by client.py. Also give the DropUploader service a name, which is necessary for the test. refs #1429
1104david-sarah@jacaranda.org**20110810030538
1105 Ignore-this: 13d511ea9bbe9da2dcffe4a91ce94eae
1106]
1107[drop-upload: rename 'start' method to 'startService', which is what you're supposed to use to start a Service. refs #1429
1108david-sarah@jacaranda.org**20110810030345
1109 Ignore-this: d1f5e5c63937ea37be37324e2f1ae99d
1110]
1111[test_drop_upload.py: add comment explaining why we don't use FilePath.setContent. refs #1429
1112david-sarah@jacaranda.org**20110810025942
1113 Ignore-this: b95358030b63cb467d1d7f1b9a9b6978
1114]
1115[test_drop_upload.py: fix some grammatical and spelling nits. refs #1429
1116david-sarah@jacaranda.org**20110809221231
1117 Ignore-this: fd331acddd9f754173f274a34fe62f03
1118]
1119[drop-upload: report the configured local directory being absent differently from it being a file
1120zooko@zooko.com**20110809220930
1121 Ignore-this: a08879100f5f20e609be3f0ffa3b25cc
1122 refs #1429
1123]
1124[drop-upload: rename the 'upload.uri' parameter to 'upload.dircap', and a couple of cleanups to error messages. refs #1429
1125zooko@zooko.com**20110809220508
1126 Ignore-this: 4846368cbe331e8653bdce1f314e276b
1127 I rerecorded this patch, originally by David-Sarah, to use "darcs replace" instead of editing to do the renames. This uncovered one missed rename in Client.init_drop_uploader. (Which also means that code isn't exercised by the current unit tests.)
1128 refs #1429
1129]
1130[drop-upload test for non-existent local dir separately from test for non-directory local dir
1131zooko@zooko.com**20110809220115
1132 Ignore-this: cd85f345c02f5cb71b1c1527bd4ebddc
1133 A candidate patch for #1429 has a bug when it is using FilePath.is_dir() to detect whether the configured local dir exists and is a directory. FilePath.is_dir() raises exception, instead of returning False, if the thing doesn't exist. This test is to make sure that DropUploader.__init__ raise different exceptions for those two cases.
1134 refs #1429
1135]
1136[drop-upload: unit tests for the configuration options being named "cap" instead of "uri"
1137zooko@zooko.com**20110809215913
1138 Ignore-this: 958c78fffb3d76b3e4817647f824e7f9
1139 This is a subset of a patch that David-Sarah attached to #1429. This is just the unit-tests part of that patch, and uses darcs record instead of hunks to change the names.
1140 refs #1429
1141]
1142[src/allmydata/storage/server.py: use the filesystem of storage/shares/, rather than storage/, to calculate remaining space. fixes #1384
1143david-sarah@jacaranda.org**20110719022752
1144 Ignore-this: a4781043cfd453dbb66ae4f108d80bea
1145]
1146[test_storage.py: test that we are using the filesystem of storage/shares/, rather than storage/, to calculate remaining space, and that the HTML status output reflects the values returned by fileutil.get_disk_stats. This version works with older versions of the mock library. refs #1384
1147david-sarah@jacaranda.org**20110809190722
1148 Ignore-this: db447caca37a459ca49563efa58db58c
1149]
1150[Work around ref #1472 by having test_drop_upload delete the non-ASCII directories it creates.
1151david-sarah@jacaranda.org**20110809012334
1152 Ignore-this: 5881fd5db419ba8ad12e0b2a82f6c4f0
1153]
1154[Remove all trailing whitespace from .py files.
1155david-sarah@jacaranda.org**20110809001117
1156 Ignore-this: d2658b5ce44af70cc606ae4d3085b7cc
1157]
1158[test_drop_upload.py: fix unused imports. refs #1429
1159david-sarah@jacaranda.org**20110808235422
1160 Ignore-this: 834f6b946bfea699d7d8c743edd66671
1161]
1162[Documentation for drop-upload frontend. refs #1429
1163david-sarah@jacaranda.org**20110808182146
1164 Ignore-this: b33110834e586c0b784d1736c2af5779
1165]
1166[Drop-upload frontend, rerecorded for 1.9 beta (and correcting a minor mistake). Includes some fixes for Windows but not the Windows inotify implementation. fixes #1429
1167david-sarah@jacaranda.org**20110808234049
1168 Ignore-this: 67f824c7f554e9a3a85f9fd2e1123d97
1169]
1170[node.py: ensure that client and introducer nodes record their port number and use that port on the next restart, fixing a regression caused by #1385. fixes #1469.
1171david-sarah@jacaranda.org**20110806221934
1172 Ignore-this: 1aa9d340b6570320ab2f9edc89c9e0a8
1173]
1174[test_runner.py: fix a race condition in the test when NODE_URL_FILE is written before PORTNUM_FILE. refs #1469
1175david-sarah@jacaranda.org**20110806231842
1176 Ignore-this: ab01ae7cec3a073e29eec473e64052a0
1177]
1178[test_runner.py: cleanups of HOTLINE_FILE writing and removal.
1179david-sarah@jacaranda.org**20110806231652
1180 Ignore-this: 25f5c5d6f5d8faebb26a4ce80110a335
1181]
1182[test_runner.py: remove an unused constant.
1183david-sarah@jacaranda.org**20110806221416
1184 Ignore-this: eade2695cbabbea9cafeaa8debe410bb
1185]
1186[node.py: fix the error path for a missing config option so that it works for a Unicode base directory.
1187david-sarah@jacaranda.org**20110806221007
1188 Ignore-this: 4eb9cc04b2ce05182a274a0d69dafaf3
1189]
1190[test_runner.py: test that client and introducer nodes record their port number and use that port on the next restart. This tests for a regression caused by ref #1385.
1191david-sarah@jacaranda.org**20110806220635
1192 Ignore-this: 40a0c040b142dbddd47e69b3c3712f5
1193]
1194[test_runner.py: fix a bug in CreateNode.do_create introduced in changeset [5114] when the tahoe.cfg file has been written with CRLF line endings. refs #1385
1195david-sarah@jacaranda.org**20110804003032
1196 Ignore-this: 7b7afdcf99da6671afac2d42828883eb
1197]
1198[test_client.py: repair Basic.test_error_on_old_config_files. refs #1385
1199david-sarah@jacaranda.org**20110803235036
1200 Ignore-this: 31e2a9c3febe55948de7e144353663e
1201]
1202[test_checker.py: increase timeout for TooParallel.test_immutable again. The ARM buildslave took 38 seconds, so 40 seconds is too close to the edge; make it 80.
1203david-sarah@jacaranda.org**20110803214042
1204 Ignore-this: 2d8026a6b25534e01738f78d6c7495cb
1205]
1206[test_runner.py: fix RunNode.test_introducer to not rely on the mtime of introducer.furl to detect when the node has restarted. Instead we detect when node.url has been written. refs #1385
1207david-sarah@jacaranda.org**20110803180917
1208 Ignore-this: 11ddc43b107beca42cb78af88c5c394c
1209]
1210[Further improve error message about old config files. refs #1385
1211david-sarah@jacaranda.org**20110803174546
1212 Ignore-this: 9d6cc3c288d9863dce58faafb3855917
1213]
1214[Slightly improve error message about old config files (avoid unnecessary Unicode escaping). refs #1385
1215david-sarah@jacaranda.org**20110803163848
1216 Ignore-this: a3e3930fba7ccf90b8db3d2ed5829df4
1217]
1218[test_checker.py: increase timeout for TooParallel.test_immutable (was consistently failing on ARM buildslave).
1219david-sarah@jacaranda.org**20110803163213
1220 Ignore-this: d0efceaf12628e8791862b80c85b5d56
1221]
1222[Fix the bug that prevents an introducer from starting when introducer.furl already exists. Also remove some dead code that used to read old config files, and rename 'warn_about_old_config_files' to reflect that it's not a warning. refs #1385
1223david-sarah@jacaranda.org**20110803013212
1224 Ignore-this: 2d6cd14bd06a7493b26f2027aff78f4d
1225]
1226[test_runner.py: modify RunNode.test_introducer to test that starting an introducer works when the introducer.furl file already exists. refs #1385
1227david-sarah@jacaranda.org**20110803012704
1228 Ignore-this: 8cf7f27ac4bfbb5ad8ca4a974106d437
1229]
1230[verifier: correct a bug introduced in changeset [5106] that caused us to only verify the first block of a file. refs #1395
1231david-sarah@jacaranda.org**20110802172437
1232 Ignore-this: 87fb77854a839ff217dce73544775b11
1233]
1234[test_repairer: add a deterministic test of share data corruption that always flips the bits of the last byte of the share data. refs #1395
1235david-sarah@jacaranda.org**20110802175841
1236 Ignore-this: 72f54603785007e88220c8d979e08be7
1237]
1238[verifier: serialize the fetching of blocks within a share so that we don't use too much RAM
1239zooko@zooko.com**20110802063703
1240 Ignore-this: debd9bac07dcbb6803f835a9e2eabaa1
1241 
1242 Shares are still verified in parallel, but within a share, don't request a
1243 block until the previous block has been verified and the memory we used to hold
1244 it has been freed up.
1245 
1246 Patch originally due to Brian. This version has a mockery-patchery-style test
1247 which is "low tech" (it implements the patching inline in the test code instead
1248 of using an extension of the mock.patch() function from the mock library) and
1249 which unpatches in case of exception.
1250 
1251 fixes #1395
1252]
1253[add docs about timing-channel attacks
1254Brian Warner <warner@lothar.com>**20110802044541
1255 Ignore-this: 73114d5f5ed9ce252597b707dba3a194
1256]
1257['test-coverage' now needs PYTHONPATH=. to find TOP/twisted/plugins/
1258Brian Warner <warner@lothar.com>**20110802041952
1259 Ignore-this: d40f1f4cb426ea1c362fc961baedde2
1260]
1261[remove nodeid from WriteBucketProxy classes and customers
1262warner@lothar.com**20110801224317
1263 Ignore-this: e55334bb0095de11711eeb3af827e8e8
1264 refs #1363
1265]
1266[remove get_serverid() from ReadBucketProxy and customers, including Checker
1267warner@lothar.com**20110801224307
1268 Ignore-this: 837aba457bc853e4fd413ab1a94519cb
1269 and debug.py dump-share commands
1270 refs #1363
1271]
1272[reject old-style (pre-Tahoe-LAFS-v1.3) configuration files
1273zooko@zooko.com**20110801232423
1274 Ignore-this: b58218fcc064cc75ad8f05ed0c38902b
1275 Check for the existence of any of them and if any are found raise exception which will abort the startup of the node.
1276 This is a backwards-incompatible change for anyone who is still using old-style configuration files.
1277 fixes #1385
1278]
1279[whitespace-cleanup
1280zooko@zooko.com**20110725015546
1281 Ignore-this: 442970d0545183b97adc7bd66657876c
1282]
1283[tests: use fileutil.write() instead of open() to ensure timely close even without CPython-style reference counting
1284zooko@zooko.com**20110331145427
1285 Ignore-this: 75aae4ab8e5fa0ad698f998aaa1888ce
1286 Some of these already had an explicit close() but I went ahead and replaced them with fileutil.write() as well for the sake of uniformity.
1287]
1288[Address Kevan's comment in #776 about Options classes missed when adding 'self.command_name'. refs #776, #1359
1289david-sarah@jacaranda.org**20110801221317
1290 Ignore-this: 8881d42cf7e6a1d15468291b0cb8fab9
1291]
1292[docs/frontends/webapi.rst: change some more instances of 'delete' or 'remove' to 'unlink', change some section titles, and use two blank lines between all sections. refs #776, #1104
1293david-sarah@jacaranda.org**20110801220919
1294 Ignore-this: 572327591137bb05c24c44812d4b163f
1295]
1296[cleanup: implement rm as a synonym for unlink rather than vice-versa. refs #776
1297david-sarah@jacaranda.org**20110801220108
1298 Ignore-this: 598dcbed870f4f6bb9df62de9111b343
1299]
1300[docs/webapi.rst: address Kevan's comments about use of 'delete' on ref #1104
1301david-sarah@jacaranda.org**20110801205356
1302 Ignore-this: 4fbf03864934753c951ddeff64392491
1303]
1304[docs: some changes of 'delete' or 'rm' to 'unlink'. refs #1104
1305david-sarah@jacaranda.org**20110713002722
1306 Ignore-this: 304d2a330d5e6e77d5f1feed7814b21c
1307]
1308[WUI: change the label of the button to unlink a file from 'del' to 'unlink'. Also change some internal names to 'unlink', and allow 't=unlink' as a synonym for 't=delete' in the web-API interface. Incidentally, improve a test to check for the rename button as well as the unlink button. fixes #1104
1309david-sarah@jacaranda.org**20110713001218
1310 Ignore-this: 3eef6b3f81b94a9c0020a38eb20aa069
1311]
1312[src/allmydata/web/filenode.py: delete a stale comment that was made incorrect by changeset [3133].
1313david-sarah@jacaranda.org**20110801203009
1314 Ignore-this: b3912e95a874647027efdc97822dd10e
1315]
1316[fix typo introduced during rebasing of 'remove get_serverid from
1317Brian Warner <warner@lothar.com>**20110801200341
1318 Ignore-this: 4235b0f585c0533892193941dbbd89a8
1319 DownloadStatus.add_dyhb_request and customers' patch, to fix test failure.
1320]
1321[remove get_serverid from DownloadStatus.add_dyhb_request and customers
1322zooko@zooko.com**20110801185401
1323 Ignore-this: db188c18566d2d0ab39a80c9dc8f6be6
1324 This patch is a rebase of a patch originally written by Brian. I didn't change any of the intent of Brian's patch, just ported it to current trunk.
1325 refs #1363
1326]
1327[remove get_serverid from DownloadStatus.add_block_request and customers
1328zooko@zooko.com**20110801185344
1329 Ignore-this: 8bfa8201d6147f69b0fbe31beea9c1e
1330 This is a rebase of a patch Brian originally wrote. I haven't changed the intent of that patch, just ported it to trunk.
1331 refs #1363
1332]
1333[apply zooko's advice: storage_client get_known_servers() returns a frozenset, caller sorts
1334warner@lothar.com**20110801174452
1335 Ignore-this: 2aa13ea6cbed4e9084bd604bf8633692
1336 refs #1363
1337]
1338[test_immutable.Test: rewrite to use NoNetworkGrid, now takes 2.7s not 97s
1339warner@lothar.com**20110801174444
1340 Ignore-this: 54f30b5d7461d2b3514e2a0172f3a98c
1341 remove now-unused ShareManglingMixin
1342 refs #1363
1343]
1344[DownloadStatus.add_known_share wants to be used by Finder, web.status
1345warner@lothar.com**20110801174436
1346 Ignore-this: 1433bcd73099a579abe449f697f35f9
1347 refs #1363
1348]
1349[replace IServer.name() with get_name(), and get_longname()
1350warner@lothar.com**20110801174428
1351 Ignore-this: e5a6f7f6687fd7732ddf41cfdd7c491b
1352 
1353 This patch was originally written by Brian, but was re-recorded by Zooko to use
1354 darcs replace instead of hunks for any file in which it would result in fewer
1355 total hunks.
1356 refs #1363
1357]
1358[upload.py: apply David-Sarah's advice rename (un)contacted(2) trackers to first_pass/second_pass/next_pass
1359zooko@zooko.com**20110801174143
1360 Ignore-this: e36e1420bba0620a0107bd90032a5198
1361 This patch was written by Brian but was re-recorded by Zooko (with David-Sarah looking on) to use darcs replace instead of editing to rename the three variables to their new names.
1362 refs #1363
1363]
1364[Coalesce multiple Share.loop() calls, make downloads faster. Closes #1268.
1365Brian Warner <warner@lothar.com>**20110801151834
1366 Ignore-this: 48530fce36c01c0ff708f61c2de7e67a
1367]
1368[src/allmydata/_auto_deps.py: 'i686' is another way of spelling x86.
1369david-sarah@jacaranda.org**20110801034035
1370 Ignore-this: 6971e0621db2fba794d86395b4d51038
1371]
1372[tahoe_rm.py: better error message when there is no path. refs #1292
1373david-sarah@jacaranda.org**20110122064212
1374 Ignore-this: ff3bb2c9f376250e5fd77eb009e09018
1375]
1376[test_cli.py: Test for error message when 'tahoe rm' is invoked without a path. refs #1292
1377david-sarah@jacaranda.org**20110104105108
1378 Ignore-this: 29ec2f2e0251e446db96db002ad5dd7d
1379]
1380[src/allmydata/__init__.py: suppress a spurious warning from 'bin/tahoe --version[-and-path]' about twisted-web and twisted-core packages.
1381david-sarah@jacaranda.org**20110801005209
1382 Ignore-this: 50e7cd53cca57b1870d9df0361c7c709
1383]
1384[test_cli.py: use to_str on fields loaded using simplejson.loads in new tests. refs #1304
1385david-sarah@jacaranda.org**20110730032521
1386 Ignore-this: d1d6dfaefd1b4e733181bf127c79c00b
1387]
1388[cli: make 'tahoe cp' overwrite mutable files in-place
1389Kevan Carstensen <kevan@isnotajoke.com>**20110729202039
1390 Ignore-this: b2ad21a19439722f05c49bfd35b01855
1391]
1392[SFTP: write an error message to standard error for unrecognized shell commands. Change the existing message for shell sessions to be written to standard error, and refactor some duplicated code. Also change the lines of the error messages to end in CRLF, and take into account Kevan's review comments. fixes #1442, #1446
1393david-sarah@jacaranda.org**20110729233102
1394 Ignore-this: d2f2bb4664f25007d1602bf7333e2cdd
1395]
1396[src/allmydata/scripts/cli.py: fix pyflakes warning.
1397david-sarah@jacaranda.org**20110728021402
1398 Ignore-this: 94050140ddb99865295973f49927c509
1399]
1400[Fix the help synopses of CLI commands to include [options] in the right place. fixes #1359, fixes #636
1401david-sarah@jacaranda.org**20110724225440
1402 Ignore-this: 2a8e488a5f63dabfa9db9efd83768a5
1403]
1404[encodingutil: argv and output encodings are always the same on all platforms. Lose the unnecessary generality of them being different. fixes #1120
1405david-sarah@jacaranda.org**20110629185356
1406 Ignore-this: 5ebacbe6903dfa83ffd3ff8436a97787
1407]
1408[docs/man/tahoe.1: add man page. fixes #1420
1409david-sarah@jacaranda.org**20110724171728
1410 Ignore-this: fc7601ec7f25494288d6141d0ae0004c
1411]
1412[Update the dependency on zope.interface to fix an incompatiblity between Nevow and zope.interface 3.6.4. fixes #1435
1413david-sarah@jacaranda.org**20110721234941
1414 Ignore-this: 2ff3fcfc030fca1a4d4c7f1fed0f2aa9
1415]
1416[frontends/ftpd.py: remove the check for IWriteFile.close since we're now guaranteed to be using Twisted >= 10.1 which has it.
1417david-sarah@jacaranda.org**20110722000320
1418 Ignore-this: 55cd558b791526113db3f83c00ec328a
1419]
1420[Update the dependency on Twisted to >= 10.1. This allows us to simplify some documentation: it's no longer necessary to install pywin32 on Windows, or apply a patch to Twisted in order to use the FTP frontend. fixes #1274, #1438. refs #1429
1421david-sarah@jacaranda.org**20110721233658
1422 Ignore-this: 81b41745477163c9b39c0b59db91cc62
1423]
1424[misc/build_helpers/run_trial.py: undo change to block pywin32 (it didn't work because run_trial.py is no longer used). refs #1334
1425david-sarah@jacaranda.org**20110722035402
1426 Ignore-this: 5d03f544c4154f088e26c7107494bf39
1427]
1428[misc/build_helpers/run_trial.py: ensure that pywin32 is not on the sys.path when running the test suite. Includes some temporary debugging printouts that will be removed. refs #1334
1429david-sarah@jacaranda.org**20110722024907
1430 Ignore-this: 5141a9f83a4085ed4ca21f0bbb20bb9c
1431]
1432[docs/running.rst: use 'tahoe run ~/.tahoe' instead of 'tahoe run' (the default is the current directory, unlike 'tahoe start').
1433david-sarah@jacaranda.org**20110718005949
1434 Ignore-this: 81837fbce073e93d88a3e7ae3122458c
1435]
1436[docs/running.rst: say to put the introducer.furl in tahoe.cfg.
1437david-sarah@jacaranda.org**20110717194315
1438 Ignore-this: 954cc4c08e413e8c62685d58ff3e11f3
1439]
1440[README.txt: say that quickstart.rst is in the docs directory.
1441david-sarah@jacaranda.org**20110717192400
1442 Ignore-this: bc6d35a85c496b77dbef7570677ea42a
1443]
1444[setup: remove the dependency on foolscap's "secure_connections" extra, add a dependency on pyOpenSSL
1445zooko@zooko.com**20110717114226
1446 Ignore-this: df222120d41447ce4102616921626c82
1447 fixes #1383
1448]
1449[test_sftp.py cleanup: remove a redundant definition of failUnlessReallyEqual.
1450david-sarah@jacaranda.org**20110716181813
1451 Ignore-this: 50113380b368c573f07ac6fe2eb1e97f
1452]
1453[docs: add missing link in NEWS.rst
1454zooko@zooko.com**20110712153307
1455 Ignore-this: be7b7eb81c03700b739daa1027d72b35
1456]
1457[contrib: remove the contributed fuse modules and the entire contrib/ directory, which is now empty
1458zooko@zooko.com**20110712153229
1459 Ignore-this: 723c4f9e2211027c79d711715d972c5
1460 Also remove a couple of vestigial references to figleaf, which is long gone.
1461 fixes #1409 (remove contrib/fuse)
1462]
1463[add Protovis.js-based download-status timeline visualization
1464Brian Warner <warner@lothar.com>**20110629222606
1465 Ignore-this: 477ccef5c51b30e246f5b6e04ab4a127
1466 
1467 provide status overlap info on the webapi t=json output, add decode/decrypt
1468 rate tooltips, add zoomin/zoomout buttons
1469]
1470[add more download-status data, fix tests
1471Brian Warner <warner@lothar.com>**20110629222555
1472 Ignore-this: e9e0b7e0163f1e95858aa646b9b17b8c
1473]
1474[prepare for viz: improve DownloadStatus events
1475Brian Warner <warner@lothar.com>**20110629222542
1476 Ignore-this: 16d0bde6b734bb501aa6f1174b2b57be
1477 
1478 consolidate IDownloadStatusHandlingConsumer stuff into DownloadNode
1479]
1480[docs: fix error in crypto specification that was noticed by Taylor R Campbell <campbell+tahoe@mumble.net>
1481zooko@zooko.com**20110629185711
1482 Ignore-this: b921ed60c1c8ba3c390737fbcbe47a67
1483]
1484[setup.py: don't make bin/tahoe.pyscript executable. fixes #1347
1485david-sarah@jacaranda.org**20110130235809
1486 Ignore-this: 3454c8b5d9c2c77ace03de3ef2d9398a
1487]
1488[Makefile: remove targets relating to 'setup.py check_auto_deps' which no longer exists. fixes #1345
1489david-sarah@jacaranda.org**20110626054124
1490 Ignore-this: abb864427a1b91bd10d5132b4589fd90
1491]
1492[Makefile: add 'make check' as an alias for 'make test'. Also remove an unnecessary dependency of 'test' on 'build' and 'src/allmydata/_version.py'. fixes #1344
1493david-sarah@jacaranda.org**20110623205528
1494 Ignore-this: c63e23146c39195de52fb17c7c49b2da
1495]
1496[Rename test_package_initialization.py to (much shorter) test_import.py .
1497Brian Warner <warner@lothar.com>**20110611190234
1498 Ignore-this: 3eb3dbac73600eeff5cfa6b65d65822
1499 
1500 The former name was making my 'ls' listings hard to read, by forcing them
1501 down to just two columns.
1502]
1503[tests: fix tests to accomodate [20110611153758-92b7f-0ba5e4726fb6318dac28fb762a6512a003f4c430]
1504zooko@zooko.com**20110611163741
1505 Ignore-this: 64073a5f39e7937e8e5e1314c1a302d1
1506 Apparently none of the two authors (stercor, terrell), three reviewers (warner, davidsarah, terrell), or one committer (me) actually ran the tests. This is presumably due to #20.
1507 fixes #1412
1508]
1509[wui: right-align the size column in the WUI
1510zooko@zooko.com**20110611153758
1511 Ignore-this: 492bdaf4373c96f59f90581c7daf7cd7
1512 Thanks to Ted "stercor" Rolle Jr. and Terrell Russell.
1513 fixes #1412
1514]
1515[docs: three minor fixes
1516zooko@zooko.com**20110610121656
1517 Ignore-this: fec96579eb95aceb2ad5fc01a814c8a2
1518 CREDITS for arc for stats tweak
1519 fix link to .zip file in quickstart.rst (thanks to ChosenOne for noticing)
1520 English usage tweak
1521]
1522[docs/running.rst: fix stray HTML (not .rst) link noticed by ChosenOne.
1523david-sarah@jacaranda.org**20110609223719
1524 Ignore-this: fc50ac9c94792dcac6f1067df8ac0d4a
1525]
1526[server.py:  get_latencies now reports percentiles _only_ if there are sufficient observations for the interpretation of the percentile to be unambiguous.
1527wilcoxjg@gmail.com**20110527120135
1528 Ignore-this: 2e7029764bffc60e26f471d7c2b6611e
1529 interfaces.py:  modified the return type of RIStatsProvider.get_stats to allow for None as a return value
1530 NEWS.rst, stats.py: documentation of change to get_latencies
1531 stats.rst: now documents percentile modification in get_latencies
1532 test_storage.py:  test_latencies now expects None in output categories that contain too few samples for the associated percentile to be unambiguously reported.
1533 fixes #1392
1534]
1535[docs: revert link in relnotes.txt from NEWS.rst to NEWS, since the former did not exist at revision 5000.
1536david-sarah@jacaranda.org**20110517011214
1537 Ignore-this: 6a5be6e70241e3ec0575641f64343df7
1538]
1539[docs: convert NEWS to NEWS.rst and change all references to it.
1540david-sarah@jacaranda.org**20110517010255
1541 Ignore-this: a820b93ea10577c77e9c8206dbfe770d
1542]
1543[docs: remove out-of-date docs/testgrid/introducer.furl and containing directory. fixes #1404
1544david-sarah@jacaranda.org**20110512140559
1545 Ignore-this: 784548fc5367fac5450df1c46890876d
1546]
1547[scripts/common.py: don't assume that the default alias is always 'tahoe' (it is, but the API of get_alias doesn't say so). refs #1342
1548david-sarah@jacaranda.org**20110130164923
1549 Ignore-this: a271e77ce81d84bb4c43645b891d92eb
1550]
1551[setup: don't catch all Exception from check_requirement(), but only PackagingError and ImportError
1552zooko@zooko.com**20110128142006
1553 Ignore-this: 57d4bc9298b711e4bc9dc832c75295de
1554 I noticed this because I had accidentally inserted a bug which caused AssertionError to be raised from check_requirement().
1555]
1556[M-x whitespace-cleanup
1557zooko@zooko.com**20110510193653
1558 Ignore-this: dea02f831298c0f65ad096960e7df5c7
1559]
1560[docs: fix typo in running.rst, thanks to arch_o_median
1561zooko@zooko.com**20110510193633
1562 Ignore-this: ca06de166a46abbc61140513918e79e8
1563]
1564[relnotes.txt: don't claim to work on Cygwin (which has been untested for some time). refs #1342
1565david-sarah@jacaranda.org**20110204204902
1566 Ignore-this: 85ef118a48453d93fa4cddc32d65b25b
1567]
1568[relnotes.txt: forseeable -> foreseeable. refs #1342
1569david-sarah@jacaranda.org**20110204204116
1570 Ignore-this: 746debc4d82f4031ebf75ab4031b3a9
1571]
1572[replace remaining .html docs with .rst docs
1573zooko@zooko.com**20110510191650
1574 Ignore-this: d557d960a986d4ac8216d1677d236399
1575 Remove install.html (long since deprecated).
1576 Also replace some obsolete references to install.html with references to quickstart.rst.
1577 Fix some broken internal references within docs/historical/historical_known_issues.txt.
1578 Thanks to Ravi Pinjala and Patrick McDonald.
1579 refs #1227
1580]
1581[docs: FTP-and-SFTP.rst: fix a minor error and update the information about which version of Twisted fixes #1297
1582zooko@zooko.com**20110428055232
1583 Ignore-this: b63cfb4ebdbe32fb3b5f885255db4d39
1584]
1585[munin tahoe_files plugin: fix incorrect file count
1586francois@ctrlaltdel.ch**20110428055312
1587 Ignore-this: 334ba49a0bbd93b4a7b06a25697aba34
1588 fixes #1391
1589]
1590[corrected "k must never be smaller than N" to "k must never be greater than N"
1591secorp@allmydata.org**20110425010308
1592 Ignore-this: 233129505d6c70860087f22541805eac
1593]
1594[Fix a test failure in test_package_initialization on Python 2.4.x due to exceptions being stringified differently than in later versions of Python. refs #1389
1595david-sarah@jacaranda.org**20110411190738
1596 Ignore-this: 7847d26bc117c328c679f08a7baee519
1597]
1598[tests: add test for including the ImportError message and traceback entry in the summary of errors from importing dependencies. refs #1389
1599david-sarah@jacaranda.org**20110410155844
1600 Ignore-this: fbecdbeb0d06a0f875fe8d4030aabafa
1601]
1602[allmydata/__init__.py: preserve the message and last traceback entry (file, line number, function, and source line) of ImportErrors in the package versions string. fixes #1389
1603david-sarah@jacaranda.org**20110410155705
1604 Ignore-this: 2f87b8b327906cf8bfca9440a0904900
1605]
1606[remove unused variable detected by pyflakes
1607zooko@zooko.com**20110407172231
1608 Ignore-this: 7344652d5e0720af822070d91f03daf9
1609]
1610[allmydata/__init__.py: Nicer reporting of unparseable version numbers in dependencies. fixes #1388
1611david-sarah@jacaranda.org**20110401202750
1612 Ignore-this: 9c6bd599259d2405e1caadbb3e0d8c7f
1613]
1614[update FTP-and-SFTP.rst: the necessary patch is included in Twisted-10.1
1615Brian Warner <warner@lothar.com>**20110325232511
1616 Ignore-this: d5307faa6900f143193bfbe14e0f01a
1617]
1618[control.py: remove all uses of s.get_serverid()
1619warner@lothar.com**20110227011203
1620 Ignore-this: f80a787953bd7fa3d40e828bde00e855
1621]
1622[web: remove some uses of s.get_serverid(), not all
1623warner@lothar.com**20110227011159
1624 Ignore-this: a9347d9cf6436537a47edc6efde9f8be
1625]
1626[immutable/downloader/fetcher.py: remove all get_serverid() calls
1627warner@lothar.com**20110227011156
1628 Ignore-this: fb5ef018ade1749348b546ec24f7f09a
1629]
1630[immutable/downloader/fetcher.py: fix diversity bug in server-response handling
1631warner@lothar.com**20110227011153
1632 Ignore-this: bcd62232c9159371ae8a16ff63d22c1b
1633 
1634 When blocks terminate (either COMPLETE or CORRUPT/DEAD/BADSEGNUM), the
1635 _shares_from_server dict was being popped incorrectly (using shnum as the
1636 index instead of serverid). I'm still thinking through the consequences of
1637 this bug. It was probably benign and really hard to detect. I think it would
1638 cause us to incorrectly believe that we're pulling too many shares from a
1639 server, and thus prefer a different server rather than asking for a second
1640 share from the first server. The diversity code is intended to spread out the
1641 number of shares simultaneously being requested from each server, but with
1642 this bug, it might be spreading out the total number of shares requested at
1643 all, not just simultaneously. (note that SegmentFetcher is scoped to a single
1644 segment, so the effect doesn't last very long).
1645]
1646[immutable/downloader/share.py: reduce get_serverid(), one left, update ext deps
1647warner@lothar.com**20110227011150
1648 Ignore-this: d8d56dd8e7b280792b40105e13664554
1649 
1650 test_download.py: create+check MyShare instances better, make sure they share
1651 Server objects, now that finder.py cares
1652]
1653[immutable/downloader/finder.py: reduce use of get_serverid(), one left
1654warner@lothar.com**20110227011146
1655 Ignore-this: 5785be173b491ae8a78faf5142892020
1656]
1657[immutable/offloaded.py: reduce use of get_serverid() a bit more
1658warner@lothar.com**20110227011142
1659 Ignore-this: b48acc1b2ae1b311da7f3ba4ffba38f
1660]
1661[immutable/upload.py: reduce use of get_serverid()
1662warner@lothar.com**20110227011138
1663 Ignore-this: ffdd7ff32bca890782119a6e9f1495f6
1664]
1665[immutable/checker.py: remove some uses of s.get_serverid(), not all
1666warner@lothar.com**20110227011134
1667 Ignore-this: e480a37efa9e94e8016d826c492f626e
1668]
1669[add remaining get_* methods to storage_client.Server, NoNetworkServer, and
1670warner@lothar.com**20110227011132
1671 Ignore-this: 6078279ddf42b179996a4b53bee8c421
1672 MockIServer stubs
1673]
1674[upload.py: rearrange _make_trackers a bit, no behavior changes
1675warner@lothar.com**20110227011128
1676 Ignore-this: 296d4819e2af452b107177aef6ebb40f
1677]
1678[happinessutil.py: finally rename merge_peers to merge_servers
1679warner@lothar.com**20110227011124
1680 Ignore-this: c8cd381fea1dd888899cb71e4f86de6e
1681]
1682[test_upload.py: factor out FakeServerTracker
1683warner@lothar.com**20110227011120
1684 Ignore-this: 6c182cba90e908221099472cc159325b
1685]
1686[test_upload.py: server-vs-tracker cleanup
1687warner@lothar.com**20110227011115
1688 Ignore-this: 2915133be1a3ba456e8603885437e03
1689]
1690[happinessutil.py: server-vs-tracker cleanup
1691warner@lothar.com**20110227011111
1692 Ignore-this: b856c84033562d7d718cae7cb01085a9
1693]
1694[upload.py: more tracker-vs-server cleanup
1695warner@lothar.com**20110227011107
1696 Ignore-this: bb75ed2afef55e47c085b35def2de315
1697]
1698[upload.py: fix var names to avoid confusion between 'trackers' and 'servers'
1699warner@lothar.com**20110227011103
1700 Ignore-this: 5d5e3415b7d2732d92f42413c25d205d
1701]
1702[refactor: s/peer/server/ in immutable/upload, happinessutil.py, test_upload
1703warner@lothar.com**20110227011100
1704 Ignore-this: 7ea858755cbe5896ac212a925840fe68
1705 
1706 No behavioral changes, just updating variable/method names and log messages.
1707 The effects outside these three files should be minimal: some exception
1708 messages changed (to say "server" instead of "peer"), and some internal class
1709 names were changed. A few things still use "peer" to minimize external
1710 changes, like UploadResults.timings["peer_selection"] and
1711 happinessutil.merge_peers, which can be changed later.
1712]
1713[storage_client.py: clean up test_add_server/test_add_descriptor, remove .test_servers
1714warner@lothar.com**20110227011056
1715 Ignore-this: efad933e78179d3d5fdcd6d1ef2b19cc
1716]
1717[test_client.py, upload.py:: remove KiB/MiB/etc constants, and other dead code
1718warner@lothar.com**20110227011051
1719 Ignore-this: dc83c5794c2afc4f81e592f689c0dc2d
1720]
1721[test: increase timeout on a network test because Francois's ARM machine hit that timeout
1722zooko@zooko.com**20110317165909
1723 Ignore-this: 380c345cdcbd196268ca5b65664ac85b
1724 I'm skeptical that the test was proceeding correctly but ran out of time. It seems more likely that it had gotten hung. But if we raise the timeout to an even more extravagant number then we can be even more certain that the test was never going to finish.
1725]
1726[docs/configuration.rst: add a "Frontend Configuration" section
1727Brian Warner <warner@lothar.com>**20110222014323
1728 Ignore-this: 657018aa501fe4f0efef9851628444ca
1729 
1730 this points to docs/frontends/*.rst, which were previously underlinked
1731]
1732[web/filenode.py: avoid calling req.finish() on closed HTTP connections. Closes #1366
1733"Brian Warner <warner@lothar.com>"**20110221061544
1734 Ignore-this: 799d4de19933f2309b3c0c19a63bb888
1735]
1736[Add unit tests for cross_check_pkg_resources_versus_import, and a regression test for ref #1355. This requires a little refactoring to make it testable.
1737david-sarah@jacaranda.org**20110221015817
1738 Ignore-this: 51d181698f8c20d3aca58b057e9c475a
1739]
1740[allmydata/__init__.py: .name was used in place of the correct .__name__ when printing an exception. Also, robustify string formatting by using %r instead of %s in some places. fixes #1355.
1741david-sarah@jacaranda.org**20110221020125
1742 Ignore-this: b0744ed58f161bf188e037bad077fc48
1743]
1744[Refactor StorageFarmBroker handling of servers
1745Brian Warner <warner@lothar.com>**20110221015804
1746 Ignore-this: 842144ed92f5717699b8f580eab32a51
1747 
1748 Pass around IServer instance instead of (peerid, rref) tuple. Replace
1749 "descriptor" with "server". Other replacements:
1750 
1751  get_all_servers -> get_connected_servers/get_known_servers
1752  get_servers_for_index -> get_servers_for_psi (now returns IServers)
1753 
1754 This change still needs to be pushed further down: lots of code is now
1755 getting the IServer and then distributing (peerid, rref) internally.
1756 Instead, it ought to distribute the IServer internally and delay
1757 extracting a serverid or rref until the last moment.
1758 
1759 no_network.py was updated to retain parallelism.
1760]
1761[TAG allmydata-tahoe-1.8.2
1762warner@lothar.com**20110131020101]
1763Patch bundle hash:
17645e47ac631fe24f0f7018f900594f95045cff19c8