mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-31 08:25:35 +00:00
Update various references to allmydata.org or http://tahoe-lafs.org in comments, to https://tahoe-lafs.org. refs #1682
This commit is contained in:
parent
916d26e710
commit
aebaa838da
@ -1,7 +1,7 @@
|
|||||||
"""
|
"""
|
||||||
Decentralized storage grid.
|
Decentralized storage grid.
|
||||||
|
|
||||||
community web site: U{http://tahoe-lafs.org/}
|
community web site: U{https://tahoe-lafs.org/}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class PackagingError(EnvironmentError):
|
class PackagingError(EnvironmentError):
|
||||||
@ -29,7 +29,7 @@ except ImportError:
|
|||||||
|
|
||||||
# __full_version__ is the one that you ought to use when identifying yourself in the
|
# __full_version__ is the one that you ought to use when identifying yourself in the
|
||||||
# "application" part of the Tahoe versioning scheme:
|
# "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__)
|
__full_version__ = __appname__ + '/' + str(__version__)
|
||||||
|
|
||||||
import os, platform, re, subprocess, sys, traceback
|
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.
|
# must import the packages in order to check their versions and paths.
|
||||||
|
|
||||||
# This warning is generated by twisted, PyRex, and possibly other packages,
|
# This warning is generated by twisted, PyRex, and possibly other packages,
|
||||||
# but can happen at any time, not only when they are imported. See
|
# but can happen at any time, not only when they are imported. See ticket #1129.
|
||||||
# http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1129 .
|
|
||||||
warnings.filterwarnings("ignore", category=DeprecationWarning,
|
warnings.filterwarnings("ignore", category=DeprecationWarning,
|
||||||
message="BaseException.message has been deprecated as of Python 2.6",
|
message="BaseException.message has been deprecated as of Python 2.6",
|
||||||
append=True)
|
append=True)
|
||||||
|
|
||||||
# This is to suppress various DeprecationWarnings and UserWarnings that
|
# This is to suppress various DeprecationWarnings and UserWarnings that
|
||||||
# occur when modules are imported. See #859, #1435 and
|
# 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:
|
for msg in deprecation_messages:
|
||||||
warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True)
|
warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True)
|
||||||
|
@ -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
|
# 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
|
# 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
|
# 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
|
s = u
|
||||||
can_be_mutable = can_be_writeable = not deep_immutable
|
can_be_mutable = can_be_writeable = not deep_immutable
|
||||||
if s.startswith(ALLEGED_IMMUTABLE_PREFIX):
|
if s.startswith(ALLEGED_IMMUTABLE_PREFIX):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user