]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Thu Mar 8 23:17:19 GMT 2012 david-sarah@jacaranda.org
authorDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:45:03 +0000 (17:45 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:45:03 +0000 (17:45 +0100)
  * Update various references to allmydata.org or http://tahoe-lafs.org in comments, to https://tahoe-lafs.org. refs #1682

src/allmydata/__init__.py
src/allmydata/uri.py

index 45484b2ca31426fd7bfb8aaea38776951c41fc66..c342ac5c0c0fd9de76a05ed900acce4c5eb5654e 100644 (file)
@@ -1,7 +1,7 @@
 """
 Decentralized storage grid.
 
-community web site: U{http://tahoe-lafs.org/}
+community web site: U{https://tahoe-lafs.org/}
 """
 
 class PackagingError(EnvironmentError):
@@ -29,7 +29,7 @@ except ImportError:
 
 # __full_version__ is the one that you ought to use when identifying yourself in the
 # "application" part of the Tahoe versioning scheme:
-# http://allmydata.org/trac/tahoe-lafs/wiki/Versioning
+# https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Versioning
 __full_version__ = __appname__ + '/' + str(__version__)
 
 import os, platform, re, subprocess, sys, traceback
@@ -156,15 +156,14 @@ def get_package_versions_and_locations():
     # must import the packages in order to check their versions and paths.
 
     # This warning is generated by twisted, PyRex, and possibly other packages,
-    # but can happen at any time, not only when they are imported. See
-    # http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1129 .
+    # but can happen at any time, not only when they are imported. See ticket #1129.
     warnings.filterwarnings("ignore", category=DeprecationWarning,
         message="BaseException.message has been deprecated as of Python 2.6",
         append=True)
 
     # This is to suppress various DeprecationWarnings and UserWarnings that
     # occur when modules are imported.  See #859, #1435 and
-    # http://divmod.org/trac/ticket/2994 .
+    # http://divmod.org/trac/ticket/2994 [broken link].
 
     for msg in deprecation_messages:
         warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True)
index 8cb9d10f23aa0cb1ef4b890b974c58580ee57064..ee9c86aaa52ff0f4b2d636fbb252d7e7600f6d66 100644 (file)
@@ -834,7 +834,7 @@ def from_string(u, deep_immutable=False, name=u"<unknown name>"):
     # on all URIs, even though we would only strictly need to do so for caps of
     # new formats (post Tahoe-LAFS 1.6). URIs that are not consistent with their
     # prefix are treated as unknown. This should be revisited when we add the
-    # new cap formats. See <http://allmydata.org/trac/tahoe-lafs/ticket/833#comment:31>.
+    # new cap formats. See ticket #833 comment:31.
     s = u
     can_be_mutable = can_be_writeable = not deep_immutable
     if s.startswith(ALLEGED_IMMUTABLE_PREFIX):