]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
minor: remove unused interface declaration, change allmydata.org to tahoe-lafs.org...
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 30 Sep 2010 15:37:08 +0000 (08:37 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 30 Sep 2010 15:37:08 +0000 (08:37 -0700)
relnotes.txt
setup.py
src/allmydata/interfaces.py

index 7145dd3af61bc1941d082ad944492747b3c95d8a..b2f586d4118cedfdc3b8062d713075e2d642440e 100644 (file)
@@ -14,7 +14,7 @@ unique security and fault-tolerance properties:
 
 http://tahoe-lafs.org/source/tahoe/trunk/docs/about.html
 
-The current stable release of Tahoe-LAFS is v1.7.1, which was
+The previous stable release of Tahoe-LAFS was v1.7.1, which was
 released July 18, 2010 [1].
 
 v1.8.0 offers greatly improved performance and fault-tolerance
index 0a66d321026b256b0b7506a7cf343011c012583e..267c8c7161dfd9a3639fb5198134de2897a6e866 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -349,7 +349,7 @@ setup(name=APPNAME,
       description='secure, decentralized, fault-tolerant filesystem',
       long_description=open('README.txt', 'rU').read(),
       author='the Tahoe-LAFS project',
-      author_email='tahoe-dev@allmydata.org',
+      author_email='tahoe-dev@tahoe-lafs.org',
       url='http://tahoe-lafs.org/',
       license='GNU GPL', # see README.txt -- there is an alternative licence
       cmdclass={"show_supportlib": ShowSupportLib,
index bf10a35a56b339ffde29afdfc54203443a38b31c..696c2f510456da457bec616b624effac1f0cab5d 100644 (file)
@@ -1432,14 +1432,6 @@ class IDownloadTarget(Interface):
         called. Whatever it returns will be returned to the invoker of
         Downloader.download.
         """
-    # The following methods are just because that target might be a
-    # repairer.DownUpConnector, and just because the current CHKUpload object
-    # expects to find the storage index and encoding parameters in its
-    # Uploadable.
-    def set_storageindex(storageindex):
-        """ Set the storage index. """
-    def set_encodingparams(encodingparams):
-        """ Set the encoding parameters. """
 
 class IDownloader(Interface):
     def download(uri, target):