Thu Mar 8 15:17:19 PST 2012 david-sarah@jacaranda.org
* Update various references to allmydata.org or http://tahoe-lafs.org in comments, to https://tahoe-lafs.org. refs #1682
diff -rN -u old-tahoe-lafs/src/allmydata/__init__.py new-tahoe-lafs/src/allmydata/__init__.py
old
|
new
|
|
1 | 1 | """ |
2 | 2 | Decentralized storage grid. |
3 | 3 | |
4 | | community web site: U{http://tahoe-lafs.org/} |
| 4 | community web site: U{https://tahoe-lafs.org/} |
5 | 5 | """ |
6 | 6 | |
7 | 7 | class PackagingError(EnvironmentError): |
… |
… |
|
29 | 29 | |
30 | 30 | # __full_version__ is the one that you ought to use when identifying yourself in the |
31 | 31 | # "application" part of the Tahoe versioning scheme: |
32 | | # http://allmydata.org/trac/tahoe-lafs/wiki/Versioning |
| 32 | # https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Versioning |
33 | 33 | __full_version__ = __appname__ + '/' + str(__version__) |
34 | 34 | |
35 | 35 | import os, platform, re, subprocess, sys, traceback |
… |
… |
|
156 | 156 | # must import the packages in order to check their versions and paths. |
157 | 157 | |
158 | 158 | # This warning is generated by twisted, PyRex, and possibly other packages, |
159 | | # but can happen at any time, not only when they are imported. See |
160 | | # http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1129 . |
| 159 | # but can happen at any time, not only when they are imported. See ticket #1129. |
161 | 160 | warnings.filterwarnings("ignore", category=DeprecationWarning, |
162 | 161 | message="BaseException.message has been deprecated as of Python 2.6", |
163 | 162 | append=True) |
164 | 163 | |
165 | 164 | # This is to suppress various DeprecationWarnings and UserWarnings that |
166 | 165 | # occur when modules are imported. See #859, #1435 and |
167 | | # http://divmod.org/trac/ticket/2994 . |
| 166 | # http://divmod.org/trac/ticket/2994 [broken link]. |
168 | 167 | |
169 | 168 | for msg in deprecation_messages: |
170 | 169 | warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True) |
diff -rN -u old-tahoe-lafs/src/allmydata/uri.py new-tahoe-lafs/src/allmydata/uri.py
old
|
new
|
|
834 | 834 | # on all URIs, even though we would only strictly need to do so for caps of |
835 | 835 | # new formats (post Tahoe-LAFS 1.6). URIs that are not consistent with their |
836 | 836 | # prefix are treated as unknown. This should be revisited when we add the |
837 | | # new cap formats. See <http://allmydata.org/trac/tahoe-lafs/ticket/833#comment:31>. |
| 837 | # new cap formats. See ticket #833 comment:31. |
838 | 838 | s = u |
839 | 839 | can_be_mutable = can_be_writeable = not deep_immutable |
840 | 840 | if s.startswith(ALLEGED_IMMUTABLE_PREFIX): |