3 patches for repository zooko@dev.allmydata.org:/home/darcs/tahoe-lafs/trunk: Sun Jan 16 22:54:29 MST 2011 zooko@zooko.com * setup: comment-out build-dependency on setuptools_darcs in order to avoid a bug in Distribute This means you must manuallky install setuptools_darcs before building a distribution such as with "python setup.py sdist" or "python setup.py bdist_egg" or else the resulting distribution will be missing some files (docs, .xhtml files for the WUI, and in general any file that isn't a Python file which is part of the "allmydata" Python package-directory). Mon Jan 17 23:25:21 MST 2011 zooko@zooko.com * setup: bundle a copy of setuptools_darcs-1.2.12 This is to work-around https://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being . refs #1054. Mon Jan 17 23:28:17 MST 2011 zooko@zooko.com * setup: load the setuptools_darcs-1.2.12.egg that is bundled in the root of the source tree at setup.py time, and setup_require it in order to make sure that its "find all package data" plugin works to inform setuptools of all files which are under revision control so that setuptools can include them in a distribution. By the way, this is ugly and horrible. New patches: [setup: comment-out build-dependency on setuptools_darcs in order to avoid a bug in Distribute zooko@zooko.com**20110117055429 Ignore-this: b228853a423fc5b06b822c45287225f5 This means you must manuallky install setuptools_darcs before building a distribution such as with "python setup.py sdist" or "python setup.py bdist_egg" or else the resulting distribution will be missing some files (docs, .xhtml files for the WUI, and in general any file that isn't a Python file which is part of the "allmydata" Python package-directory). ] hunk ./setup.py 152 # http://pypi.python.org/pypi/setuptools_trial setup_requires.extend(['setuptools_trial >= 0.5']) -# setuptools_darcs is required to produce complete distributions (such as -# with "sdist" or "bdist_egg") (unless there is a PKG-INFO file present which -# shows that this is itself a source distribution). For simplicity, and -# because there is some unknown error with setuptools_darcs when building and -# testing tahoe all in one python command on some platforms, we always add it -# to setup_requires. http://pypi.python.org/pypi/setuptools_darcs -setup_requires.append('setuptools_darcs >= 1.1.0') +# setuptools_darcs is required to produce complete distributions (such +# as with "sdist" or "bdist_egg"), unless there is a +# src/allmydata_tahoe.egg-info/SOURCE.txt file, which if present +# contains a complete list of files that should be included. +# http://pypi.python.org/pypi/setuptools_darcs However, requiring it +# runs afoul of a bug in Distribute, which was shipped in Ubuntu +# Lucid, so for now you have to manually install it before building +# sdists or eggs: +# http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being +if False: + setup_requires.append('setuptools_darcs >= 1.1.0') # trialcoverage is required if you want the "trial" unit test runner to have a # "--reporter=bwverbose-coverage" option which produces code-coverage results. [setup: bundle a copy of setuptools_darcs-1.2.12 zooko@zooko.com**20110118062521 Ignore-this: 47e240417e0ff57a66d2f02f416a78fe This is to work-around https://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being . refs #1054. ] { adddir ./setuptools_darcs-1.2.12.egg adddir ./setuptools_darcs-1.2.12.egg/EGG-INFO addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/PKG-INFO hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/PKG-INFO 1 +Metadata-Version: 1.0 +Name: setuptools-darcs +Version: 1.2.12 +Summary: setuptools plugin for darcs +Home-page: http://tahoe-lafs.org/trac/setuptools_darcs +Author: Zooko O'Whielacronx +Author-email: zooko@zooko.com +License: BSD +Description: UNKNOWN +Keywords: distutils setuptools setup darcs +Platform: UNKNOWN +Classifier: Framework :: Setuptools Plugin +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: BSD License +Classifier: License :: DFSG approved +Classifier: Intended Audience :: Developers +Classifier: Operating System :: Microsoft +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: Unix +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: POSIX +Classifier: Operating System :: MacOS :: MacOS X +Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000 +Classifier: Operating System :: OS Independent +Classifier: Natural Language :: English +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.4 +Classifier: Programming Language :: Python :: 2.5 +Classifier: Programming Language :: Python :: 2.6 +Classifier: Topic :: Utilities +Classifier: Topic :: Software Development :: Libraries addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/SOURCES.txt hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/SOURCES.txt 2 +README.txt +setup.cfg +setup.py +setuptools_darcs/__init__.py +setuptools_darcs/_version.py +setuptools_darcs/setuptools_darcs.py +setuptools_darcs.egg-info/PKG-INFO +setuptools_darcs.egg-info/SOURCES.txt +setuptools_darcs.egg-info/dependency_links.txt +setuptools_darcs.egg-info/entry_points.txt +setuptools_darcs.egg-info/not-zip-safe +setuptools_darcs.egg-info/top_level.txt addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/dependency_links.txt hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/dependency_links.txt 1 + addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/entry_points.txt hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/entry_points.txt 1 +[setuptools.file_finders] +darcs = setuptools_darcs.setuptools_darcs:find_files_for_darcs + addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/not-zip-safe hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/not-zip-safe 1 + addfile ./setuptools_darcs-1.2.12.egg/EGG-INFO/top_level.txt hunk ./setuptools_darcs-1.2.12.egg/EGG-INFO/top_level.txt 1 +setuptools_darcs adddir ./setuptools_darcs-1.2.12.egg/setuptools_darcs addfile ./setuptools_darcs-1.2.12.egg/setuptools_darcs/__init__.py hunk ./setuptools_darcs-1.2.12.egg/setuptools_darcs/__init__.py 1 +__version__ = "unknown" +try: + from _version import __version__ +except ImportError: + # We're running in a tree that hasn't run darcsver from the pyutil library, + # and didn't come with a _version.py, so we don't know what our version + # is. This should not happen very often. + pass addfile ./setuptools_darcs-1.2.12.egg/setuptools_darcs/_version.py hunk ./setuptools_darcs-1.2.12.egg/setuptools_darcs/_version.py 1 + +# This is the version of this tree, as created by setup.py darcsver from the Darcs patch +# information: the main version number is taken from the most recent release +# tag. If some patches have been added since the last release, this will have a +# -NN "build number" suffix, or else a -rNN "revision number" suffix. Please see +# pyutil.version_class for a description of what the different fields mean. + +verstr = "1.2.12" +try: + from pyutil.version_class import Version as pyutil_Version + __version__ = pyutil_Version(verstr) +except (ImportError, ValueError): + # Maybe there is no pyutil installed, or this may be an older version of + # pyutil.version_class which does not support SVN-alike revision numbers. + from distutils.version import LooseVersion as distutils_Version + __version__ = distutils_Version(verstr) addfile ./setuptools_darcs-1.2.12.egg/setuptools_darcs/setuptools_darcs.py hunk ./setuptools_darcs-1.2.12.egg/setuptools_darcs/setuptools_darcs.py 1 +import os, re + +from subprocess import Popen, PIPE + +THISDIR_RE=re.compile("What's new in \"(.*)\"") + +def exec_darcs(darcscmd): + cmd = ['darcs'] + darcscmd + try: + p = Popen(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True) + except EnvironmentError: + cmd = ['realdarcs.exe'] + darcscmd + p = Popen(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True) + + output = p.communicate()[0] + return (p.returncode, output) + +def run_darcs_query_manifest(): + return exec_darcs(['query', 'manifest']) + +def run_darcs_whatsnew_dot(): + return exec_darcs(['whatsnew', '.']) + +def find_files_for_darcs(dirname): + try: + unused, whatsnewoutput = run_darcs_whatsnew_dot() + queryretcode, queryoutput = run_darcs_query_manifest() + except EnvironmentError: + if not os.path.exists('PKG-INFO'): + from distutils import log + log.info("Unable to execute darcs -- if you are building a package with 'setup.py sdist', 'setup.py bdist_egg', or other package-building commands, then the resulting package might be missing some files. If you are not building a package then you can ignore this warning.") + # Oh well -- just return None. + return + + if queryretcode != 0: + if not os.path.exists('PKG-INFO'): + from distutils import log + log.warn("Failure to get the list of managed files from darcs -- if you are building a package with 'setup.py sdist', 'setup.py bdist_egg', or other package-building commands, then the resulting package might be missing some files. If you are not building a package then you can ignore this warning.") + # Oh well -- just return None. + return + + # We got output. + mo = THISDIR_RE.search(whatsnewoutput) + if mo: + curdirname = mo.group(1) + while curdirname.endswith('/'): + curdirname = curdirname[:-1] + curdirname += "/" + else: + curdirname = "" + + # Prepend this directory. + rel_to_repo_dirname = curdirname + dirname + + # Normalize rel_to_repo_dirname from local form to the form that setuptools uses to the form that "darcs query manifest" outputs (unix form). + rel_to_repo_dirname = rel_to_repo_dirname.replace('\\', '/') + while rel_to_repo_dirname.endswith('/'): + rel_to_repo_dirname = rel_to_repo_dirname[:-1] + + # Append a '/' to make sure we don't match "foobar" when rel_to_repo_dirname is "foo". + if rel_to_repo_dirname: + rel_to_repo_dirname += '/' + + warn = True + for fn in queryoutput.split('\n'): + if fn == ".": + continue + if fn.startswith('./'): + fn = fn[2:] + if fn.startswith(rel_to_repo_dirname): + fn = fn[len(rel_to_repo_dirname):] + warn = False + # We need to replace "/" by "\\" because setuptools can't includes web/*.xhtml files on Windows, due of path separator + # This correct ticket #1033 + yield fn.replace('/', os.sep) + + if warn and not os.path.exists('PKG-INFO'): + from distutils import log + log.warn("Didn't find any files in directory \"%s\" (full path: \"%s\") that were managed by darcs revision control -- if you are building a package with 'setup.py sdist', 'setup.py bdist_egg', or other package-building commands, then the resulting package might be missing some files. If you are not building a package then you can ignore this warning." % (dirname, os.path.abspath(rel_to_repo_dirname),)) adddir ./setuptools_darcs-1.2.12.egg/share adddir ./setuptools_darcs-1.2.12.egg/share/doc adddir ./setuptools_darcs-1.2.12.egg/share/doc/python-setuptools_darcs addfile ./setuptools_darcs-1.2.12.egg/share/doc/python-setuptools_darcs/README.txt hunk ./setuptools_darcs-1.2.12.egg/share/doc/python-setuptools_darcs/README.txt 1 + +setuptools_darcs Manual +======================= + +About +----- + +This is a plugin for setuptools that integrates darcs. Once +installed, Setuptools can be told to include in a package distribution +all the files tracked by darcs. This is an alternative to explicit +inclusion specifications with `MANIFEST.in`. + +A distribution here refers to a package that you create using +setup.py, ex: + + python setup.py sdist + python setup.py bdist_egg + python setup.py bdist_rpm + +This package was formerly known as setuptools_darcs_plugin. The name +change is the result of an agreement by the setuptools plugin +developers to provide a uniform naming convention. + + +Installation +------------ + +With easy_install: + + easy_install setuptools_darcs + +Alternative manual installation: + + tar -zxvf setuptools_darcs-X.Y.Z.tar.gz + cd setuptools_darcs-X.Y.Z + python setup.py install + +Where X.Y.Z is a version number. + +Alternative to make a specific package use setuptools_darcs without +installing setuptools_darcs into the system: + + Put "setup_requires=['setuptools_darcs']" in the call to setup() in + the package's setup.py file. + + +Usage +----- + +To use this plugin, you must first package your python module with +`setup.py` and use setuptools. The former is well documented in the +distutils manual: + + http://docs.python.org/dist/dist.html + +To use setuptools instead of distutils, just edit `setup.py` and +change + + from distutils.core import setup + +to + + from setuptools import setup + +When setuptools builds a source package, it always includes all files +tracked by your revision control system, if it knows how to learn what +those files are. + +When setuptools builds a binary package, you can ask it to include all +files tracked by your revision control system, by adding this argument +to your invocation of `setup()`: + + setup(..., + include_package_data=True, + ...) + +This plugin lets setuptools know what files are tracked by your darcs +revision control tool. setuptools ships with support for cvs and +subversion. Other plugins like this one are available for bzr, git, +monotone, and mercurial, at least. + +It might happen that you track files with your revision control system +that you don't want to include in your packages. In that case, you +can prevent setuptools from packaging those files with a directive in +your `MANIFEST.in`, ex: + + exclude .darcs-boringfile + recursive-exclude images *.xcf *.blend + +In this example, we prevent setuptools from packaging +`.darcs-boringfile` and the Gimp and Blender source files found under +the `images` directory. + +Alternatively, files to exclude from the package can be listed in the +`setup()` directive: + + setup(..., + exclude_package_data = {'': ['.darcs-boringfile'], + 'images': ['*.xcf', '*.blend']}, + ...) + + +Gotchas +------- + +If someone clones your darcs repository using darcs but does not +install this plugin, then when they run a package building command +they will not get all the right files. On the other hand if someone +gets a source distribution that was created by "./setup.py sdist", +then it will come with a list of all files, so they will not need +darcs in order to build a distribution themselves. + +You can make sure that anyone who uses your setup.py file has this +plugin by adding a `setup_requires` argument. + + setup_requires=[] + # setuptools_darcs is required to produce complete distributions (such as with + # "sdist" or "bdist_egg"), unless there is a ${PKG}.egg-info/SOURCES.txt file + # present which contains a complete list of files that should be included in + # distributions. + # http://pypi.python.org/pypi/setuptools_darcs + setup_requires.append('setuptools_darcs >= 1.1.0') + + setup(..., + setup_requires = setup_requires, + ...) + + +References +---------- + +How to distribute Python modules with Distutils: + + http://docs.python.org/dist/dist.html + + +Setuptools complete manual: + + http://peak.telecommunity.com/DevCenter/setuptools + + +Thanks to Yannick Gingras for providing the prototype for this +README.txt. } [setup: load the setuptools_darcs-1.2.12.egg that is bundled in the root of the source tree at setup.py time, and setup_require it in order to make sure that its "find all package data" plugin works to inform setuptools of all files which are under revision control so that setuptools can include them in a distribution. zooko@zooko.com**20110118062817 Ignore-this: 7dfc31392f4f8225d873e32556b78e46 By the way, this is ugly and horrible. ] < [setup: bundle a copy of setuptools_darcs-1.2.12 zooko@zooko.com**20110118062521 Ignore-this: 47e240417e0ff57a66d2f02f416a78fe This is to work-around https://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being . refs #1054. ] > { hunk ./setup.py 81 sys.path.insert(0, egg) egg = os.path.realpath(glob.glob('darcsver-*.egg')[0]) sys.path.insert(0, egg) +egg = os.path.realpath(glob.glob('setuptools_darcs-*.egg')[0]) +sys.path.insert(0, egg) import setuptools; setuptools.bootstrap_install_from = egg from setuptools import find_packages, setup hunk ./setup.py 158 # as with "sdist" or "bdist_egg"), unless there is a # src/allmydata_tahoe.egg-info/SOURCE.txt file, which if present # contains a complete list of files that should be included. -# http://pypi.python.org/pypi/setuptools_darcs However, requiring it -# runs afoul of a bug in Distribute, which was shipped in Ubuntu -# Lucid, so for now you have to manually install it before building -# sdists or eggs: -# http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being -if False: - setup_requires.append('setuptools_darcs >= 1.1.0') +# http://pypi.python.org/pypi/setuptools_darcs +setup_requires.append('setuptools_darcs >= 1.1.0') # trialcoverage is required if you want the "trial" unit test runner to have a # "--reporter=bwverbose-coverage" option which produces code-coverage results. } Context: [NEWS: default reserved_space for new storage nodes is 1 GiB. refs #1208 david-sarah@jacaranda.org**20110117235930 Ignore-this: 81c898890f51400b7229b4b6de69eb30 ] ['tahoe debug catalog-shares': sort SIs and shnums Brian Warner <warner@lothar.com>**20110117095932 Ignore-this: f2c60da422178dfba6d03ff4957cf80c Without this, SIs or shnums could be emitted in random order, depending upon what the filesystem happens to return. ] [CLI: tests for ref #1305 (v2, remove spurious extra arg to create-alias in test) david-sarah@jacaranda.org**20110114040327 Ignore-this: 770b7117e66b04ced293b7b740b4a27f ] [CLI: make 'tahoe create-alias' and 'tahoe add-alias' accept a trailing colon on the new alias name (v2, minor change not to rely on implicit Unicode conversion). Includes doc changes and news; tests in a separate patch. fixes #1305 david-sarah@jacaranda.org**20110114034414 Ignore-this: 97e8e88d8b0f7c628b77db3adb67fa1b ] [Improve 'tahoe ln' help text. Patch by David-Sarah. Closes #1230. Brian Warner <warner@lothar.com>**20110117081421 Ignore-this: ae0ab1525fd39c95500535d6d015e706 ] [Tolerate Twisted-10.2's endpoints, patch by David-Sarah. Closes #1286. Brian Warner <warner@lothar.com>**20110117074751 Ignore-this: 8875749e4cab0e444a8452e290647bb6 The service generated by strports.service() changed in 10.2, and the ugly private-attribute-reading hack we used to glean a kernel-allocated port number (e.g. when using "tcp:0", especially during unit tests) broke, causing Tahoe to be completely unusable with Twisted-10.2 . The new ugly private-attribute-reading hack starts by figuring out what sort of service was generated, then reads different attributes accordingly. This also hushes a warning when using schemeless strports strings like "0" or "3456", by quietly prepending a "tcp:" scheme, since 10.2 complains about those. It also adds getURL() and getPortnum() accessors to the "webish" service, rather than having unit tests dig through _url and _portnum and such to find out what they are. ] [debian/control: add python-twisted-conch to dependencies. Closes #1095. Brian Warner <warner@lothar.com>**20110117071206 Ignore-this: 74714eeb8bd324d6124824f119468ab5 ] [Test changes to take account of ref #1311. david-sarah@jacaranda.org**20110117060540 Ignore-this: d787405b00a05d98abb34e5133a88b36 ] [create_node.py: add comments to default tahoe.cfg to clarify the meaning of each section. fixes #1311 david-sarah@jacaranda.org**20110117052419 Ignore-this: a2b0bba6b347bb0b0247782ee9ea9419 ] [misc/build_helpers/run_trial.py: fix pyflakes warning. david-sarah@jacaranda.org**20110115080456 Ignore-this: 95760a442fc397526a5d921510ec3843 ] [Set "reserved_space=1G" in newly-created storage nodes. Closes #1208. Brian Warner <warner@lothar.com>**20110116205822 Ignore-this: 2aac3dbb46e181ce7ae5e0af07bbb3bb ] [Makefile: allow tarball upload when either BB_BRANCH=='trunk' or BB_BRANCH==''. david-sarah@jacaranda.org**20110115212211 Ignore-this: 358822b25e69bfe9651a561ec387ca7a ] [misc/build_helpers/test-with-fake-dists.py: clean up directories and files only if they exist. david-sarah@jacaranda.org**20110115053011 Ignore-this: 7aa8fec370e12c62d9b56afcd55d17f ] [misc/build_helpers/test-with-fake-dists.py: wrong arguments in comment. david-sarah@jacaranda.org**20110115045325 Ignore-this: 89322306ed4fb478af4988675fd4c968 ] [Attempt to fix test-with-fake-dist build step. david-sarah@jacaranda.org**20110115022651 Ignore-this: 9d7195dca59b79f93a5f527b1ae9e79e ] [bin/tahoe-script.template: improve the error message if we end up running under Python 3. refs #1302 david-sarah@jacaranda.org**20110112211628 Ignore-this: ee78f8e4bbd197e620cb0cc6b995ac46 ] [Makefile: Fix uploading of tarballs on trunk builds. david-sarah@jacaranda.org**20110109065851 Ignore-this: 864b06e39103f46dbb6ccb74e1e333d3 ] [docs/frontends/CLI.rst: fix the rst syntax to be as actually intended :-) david-sarah@jacaranda.org**20110109014057 Ignore-this: c11331670ba89d8601ba3782ffc4f32c ] [docs/frontends/CLI.rst: really fix rst syntax error this time. david-sarah@jacaranda.org**20110109013914 Ignore-this: 59550154c9ab41488ddfdee8938d7bda ] [docs/frontends/CLI.rst: fix rst syntax error. david-sarah@jacaranda.org**20110109010943 Ignore-this: 427444f5572115059c75fa1bd8371d51 ] [docs/frontends/CLI.rst: discuss commandline/output quoting issues and wildcards. refs #1135 david-sarah@jacaranda.org**20110109010119 Ignore-this: 533938d89be878b404a8540aebdf68ad ] [setup.py: add Python 2.7 trove classifier. david-sarah@jacaranda.org**20110108211212 Ignore-this: b479c0a1adf9b7a2d1fdc54abc6582e6 ] [docs/FTP-and-SFTP.rst: document issue in ref #1297. Remove known issue #1045 which is fixed. Also some cosmetic changes. david-sarah@jacaranda.org**20110108061038 Ignore-this: 8d9aa2e33f1054545f7bed47bf0e647d ] [misc/build_helpers/show-tool-versions.py: remove attempts to show stdout.encoding and stderr.encoding that always printed None due to redirection. Also remove code to show os.path.supports_unicode_filenames which is not useful. refs #1251 david-sarah@jacaranda.org**20110103015144 Ignore-this: 45e11431f7e2e0cebcb58e1841485cf8 ] [NEWS: 'top' for node processes, WUI formatting, removal of GUI apps, documentation updates, foolscap dependency. refs #174, #1219, #1225 david-sarah@jacaranda.org**20110106005727 Ignore-this: f61ac58b4d10e635feb6f7391b1b48fe ] [Makefile: update 'clean' target for files in bin/ david-sarah@jacaranda.org**20110103052738 Ignore-this: 2bdbc4a50e13e508b66d0f65718c79b2 ] [bin/tahoe-script.template: On non-Windows, invoke support/bin/tahoe directly as a script (rather than via python), so that 'top' for example will show it as 'tahoe'. On Windows, simplify some code that set argv[0], which is never used. fixes #174 david-sarah@jacaranda.org**20101127232650 Ignore-this: 42a86f3eecfdc1ea7b76a7cc68626898 ] [test_runner: avoid unnecessary use of non-ASCII. david-sarah@jacaranda.org**20110101100101 Ignore-this: e2ff40dce6bb3b021306f2913d4e75df ] [docs/quickstart.html: fix redundant, badly nested tag. refs #1284 david-sarah@jacaranda.org**20110102175159 Ignore-this: 2ae9cc0b47d2e87b9eb64a0f517c4eef ] [docs/quickstart.html: information about 'troublesome dependencies' and 'verified systems' de-emphasized by smaller italic font. Re-wrap so that the HTML source is readable (just about) as text. Minor wording tweaks. Improve organization by adding 'Windows Caveats' subsection. fixes #1284 david-sarah@jacaranda.org**20110102174212 Ignore-this: e9dc57983974478200856651c5318fee ] [docs: update performance.rst to describe the difference between already-uploaded and not-already-uploaded, to parameterize segment size, and to use "~A" to mean "approximately A" zooko@zooko.com**20110104065455 Ignore-this: 8df0d79a062ee19854c0211bd202f606 ] [NEWS: update entry for removal of Mac and Windows apps. refs #1282 david-sarah@jacaranda.org**20101226042245 Ignore-this: c8099bc6e8235718d042c9a13c1e2425 ] [Move dependency imports from windows/depends.py (which has gone away) into src/allmydata/windows/tahoesvc.py. Also fix a pyflakes warning, and change the service display name from 'Allmydata Tahoe Node' to 'Tahoe-LAFS node'. refs #1282 david-sarah@jacaranda.org**20101226042100 Ignore-this: ee45f324934e1251380206dbee6346d0 ] [Remove unmaintained Windows GUI app, except for windows/tahoesvc.py which is moved to src/allmydata/windows. refs #1282 david-sarah@jacaranda.org**20101226040237 Ignore-this: cae37b6622a7dd5940acc7d3e6a98b90 ] [Remove the Makefile targets relating to the Mac GUI app. refs #1282 david-sarah@jacaranda.org**20101226025859 Ignore-this: 75303be783974b41138744ec62b07965 ] [NEWS: remove unmaintained Mac GUI app. refs #1282 david-sarah@jacaranda.org**20101226020858 Ignore-this: 40474a07f4a550b48563d35350be7ab5 ] [Remove unmaintained Mac GUI app. fixes #1282 david-sarah@jacaranda.org**20101226020508 Ignore-this: b3613bf1abfd284d542bf7c753ec557a ] [Remove src/allmydata/util/find_exe.py which is no longer used. fixes #1150 david-sarah@jacaranda.org**20101226023206 Ignore-this: 7436c9b53bf210aed34a1a973cd9cace ] [status_web_pages_review.darcs.patch freestorm77@gmail.com**20110102034214 Ignore-this: 29f1ecb36177f10f3f846b3d56b313b2 I make some changes on status web pages status.xhtml: - Delete unused webform_css link - Align tables on the left tahoe-css: - Do some minor changes on code synthax - changes table.status-download-events style to look like other tables status.py: - Align table on the left - Changes table header - Add heading tags - Modify google api graph: add image border, calculate height to feet data signed-off-by: zooko@zooko.com fixes #1219 ] [test_storage.py: fix a pyflakes unused import warning. david-sarah@jacaranda.org**20101231220756 Ignore-this: df08231540cb7dff9d2b038e47ab30ee ] [test_storage.py: leave at least 512 MiB free when running test_large_share. refs #1195 david-sarah@jacaranda.org**20101231203215 Ignore-this: b2144c0341c3452b5d4ba219e284ea0e ] [storage: use fileutil's version of get_disk_stats() and get_available_space(), use mockery/fakery in tests, enable large share test on platforms with sparse files and if > 4 GiB of disk space is currently available zooko@zooko.com**20100910173629 Ignore-this: 1304f1164c661de6d5304f993eb9b27b ] [fileutil: copy in the get_disk_stats() and get_available_space() functions from storage/server.py zooko@zooko.com**20100910173520 Ignore-this: 8b15569715f710f4fc5092f7ca109253 ] [Update foolscap version requirement to 0.6.0, to address http://foolscap.lothar.com/trac/ticket/167 david-sarah@jacaranda.org**20101231060039 Ignore-this: 98d2b8086a1a500b9f4565bca5a3810 ] [docs/webapi.rst: typos. david-sarah@jacaranda.org**20101230034422 Ignore-this: d1f5166d72cc711f7e0d9981eac9105e ] [docs/webapi.rst: capitalization, formatting of section on URL character encoding, and a correction about Internet Explorer. david-sarah@jacaranda.org**20101230034049 Ignore-this: b3b9819d2fb264b4cdc5c8afd4e8c48d ] [docs: corrections and clarifications. david-sarah@jacaranda.org**20101227051056 Ignore-this: e33202858c7644c58f3f924b164294b6 ] [docs: more formatting cleanups and corrections. Spell webapi and wapi as web-API. david-sarah@jacaranda.org**20101227050533 Ignore-this: 18b23cbfb780df585d8a722a1ec63e94 ] [docs/debian.rst: bring description of building dependencies from source up-to-date, and change hostname from allmydata.com to tahoe-lafs.org. david-sarah@jacaranda.org**20101212222912 Ignore-this: f38462afc88b4475195610385a28391c ] [docs/architecture.rst: correct rst syntax. david-sarah@jacaranda.org**20101212202003 Ignore-this: 3fbe12feb28bec6f1c63aedbc79aad21 ] [docs/architecture.rst: formatting. david-sarah@jacaranda.org**20101212201719 Ignore-this: 305fa5dfc2939355eaf6d0d2161eb1ff ] [docs: linkification, wording improvements. david-sarah@jacaranda.org**20101212201234 Ignore-this: 4e67287f527a8bc728cfbd93255d2aae ] [docs: formatting. david-sarah@jacaranda.org**20101212201115 Ignore-this: 2e0ed394ac7726651d3a4f2c4b0d3798 ] [docs/configuration.rst: more formatting tweaks; which -> that. david-sarah@jacaranda.org**20101212195522 Ignore-this: a7becb7021854ca5a90edd892b36fdd7 ] [docs/configuration.rst: more changes to formatting. david-sarah@jacaranda.org**20101212194511 Ignore-this: 491aac33e5f5268d224359f1447d10be ] [docs/configuration.rst: changes to formatting (mainly putting commands and filenames in monospace). david-sarah@jacaranda.org**20101212181828 Ignore-this: 8a1480e2d5f43bee678476424615b50f ] [scripts/backupdb.py: more accurate comment about path field. david-sarah@jacaranda.org**20101212170320 Ignore-this: 50e47a2228a85207bbcd188a78a0d4e6 ] [scripts/cli.py: fix missing 'put' in usage example for 'tahoe put'. david-sarah@jacaranda.org**20101212170207 Ignore-this: 2cbadf066fff611fc03d3c0ff97ce6ec ] [docs/frontends/CLI.rst: changes to formatting (mainly putting commands and filenames in monospace), and to command syntax to reflect that DIRCAP/... is accepted. Clarify the syntax of 'tahoe put' and other minor corrections. Tahoe -> Tahoe-LAFS. david-sarah@jacaranda.org**20101212165800 Ignore-this: a123ef6b564aa8624d1e79c97068ea12 ] [docs/frontends/CLI.rst: Unicode arguments to 'tahoe' work on Windows as of v1.7.1. david-sarah@jacaranda.org**20101212063740 Ignore-this: 3977a99dfa86ac33a44171deaf43aaab ] [docs/known_issues.rst: fix title and linkify another URL. refs #1225 david-sarah@jacaranda.org**20101212062817 Ignore-this: cc91287f7fb51c23440b3d2fe79c449c ] [docs/known_issues.rst: fix an external link. refs #1225 david-sarah@jacaranda.org**20101212062435 Ignore-this: b8cbf12f353131756c358965c48060ec ] [Fix a link from uri.rst to dirnodes.rst. refs #1225 david-sarah@jacaranda.org**20101212054502 Ignore-this: af6205299f5c9a33229cab259c00f9d5 ] [Fix a link from webapi.rst to FTP-and-SFTP.rst. refs #1225 david-sarah@jacaranda.org**20101212053435 Ignore-this: 2b9f88678c3447ea860d6b61e8799858 ] [More specific hyperlink to architecture.rst from helper.rst. refs #1225 david-sarah@jacaranda.org**20101212052607 Ignore-this: 50424c768fca481252fabf58424852dc ] [Update hyperlinks between docs, and linkify some external references. refs #1225 david-sarah@jacaranda.org**20101212051459 Ignore-this: cd43a4c3d3de1f832abfa88d5fc4ace1 ] [docs/specifications/dirnodes.rst: fix references to mutable.rst. refs #1225 david-sarah@jacaranda.org**20101212012720 Ignore-this: 6819b4b4e06e947ee48b365e840db37d ] [docs/specifications/mutable.rst: correct the magic string for v1 mutable containers. refs #1225 david-sarah@jacaranda.org**20101212011400 Ignore-this: 99a5fcdd40cef83dbb08f323f6cdaaca ] [Move .txt files in docs/frontends and docs/specifications to .rst. refs #1225 david-sarah@jacaranda.org**20101212010251 Ignore-this: 8796d35d928370f7dc6ad2dafdc1c0fe ] [Convert docs/frontends and docs/specifications to reStructuredText format (not including file moves). david-sarah@jacaranda.org**20101212004632 Ignore-this: e3ceb2d832d73875abe48624ddbb5622 ] [scripts/cli.py: remove the disclaimer in the help for 'tahoe cp' that it does not handle non-ASCII filenames well. (At least, we intend to handle them.) david-sarah@jacaranda.org**20101130002145 Ignore-this: 94c003efaa20b9eb4a83503d79844ca ] [relnotes.txt: fifth -> sixth labor-of-love release zooko@zooko.com**20101129045647 Ignore-this: 21c245015268b38916e3a138d256c09d ] [Makefile: BB_BRANCH is set to the empty string for trunk, not the string 'trunk'. david-sarah@jacaranda.org**20101128233512 Ignore-this: 5a7ef8eb10475636d21b91e25b56c369 ] [relnotes.txt: eleventh -> twelfth release. david-sarah@jacaranda.org**20101128223321 Ignore-this: 1e26410156a665271c1170803dea2c0d ] [relnotes.tst: point to known_issues.rst, not known_issues.txt. david-sarah@jacaranda.org**20101128222918 Ignore-this: 60194eb4544cac446fe4f60b3e34b887 ] [quickstart.html: fix link to point to allmydata-tahoe-1.8.1.zip. david-sarah@jacaranda.org**20101128221728 Ignore-this: 7b3ee86f8256aa12f5d862f689f3ee29 ] [TAG allmydata-tahoe-1.8.1 david-sarah@jacaranda.org**20101128212336 Ignore-this: 9c18bdeaef4822f590d2a0d879e00621 ] Patch bundle hash: 79908e8b70b0693613896df0c2d755ec4d58eca4