Commit 9c56e9cd authored by Julien Muchembled's avatar Julien Muchembled

doc: mention HTTPS URLs when possible

parent e2e2d895
...@@ -202,9 +202,9 @@ Developers interested in NEO may refer to ...@@ -202,9 +202,9 @@ Developers interested in NEO may refer to
`NEO Web site <https://neo.nexedi.com/>`_ and subscribe to following mailing `NEO Web site <https://neo.nexedi.com/>`_ and subscribe to following mailing
lists: lists:
- `neo-users <http://mail.tiolive.com/mailman/listinfo/neo-users>`_: - `neo-users <https://mail.tiolive.com/mailman/listinfo/neo-users>`_:
users discussion users discussion
- `neo-dev <http://mail.tiolive.com/mailman/listinfo/neo-dev>`_: - `neo-dev <https://mail.tiolive.com/mailman/listinfo/neo-dev>`_:
developers discussion developers discussion
Automated test results are published at Automated test results are published at
......
...@@ -46,7 +46,7 @@ class ClientCache(object): ...@@ -46,7 +46,7 @@ class ClientCache(object):
"""In-memory pickle cache based on Multi-Queue cache algorithm """In-memory pickle cache based on Multi-Queue cache algorithm
Multi-Queue algorithm for Second Level Buffer Caches: Multi-Queue algorithm for Second Level Buffer Caches:
http://www.usenix.org/event/usenix01/full_papers/zhou/zhou_html/index.html https://www.usenix.org/event/usenix01/full_papers/zhou/zhou_html/index.html
Quick description: Quick description:
- There are multiple "regular" queues, plus a history queue - There are multiple "regular" queues, plus a history queue
......
...@@ -59,7 +59,7 @@ def packTID(higher, lower): ...@@ -59,7 +59,7 @@ def packTID(higher, lower):
# seconds (e.g. TZ=right/UTC), then the best we can do is to use # seconds (e.g. TZ=right/UTC), then the best we can do is to use
# TID_LOW_MAX, because TID format was not designed to support them. # TID_LOW_MAX, because TID format was not designed to support them.
# For more information about leap seconds on Unix, see: # For more information about leap seconds on Unix, see:
# http://en.wikipedia.org/wiki/Unix_time # https://en.wikipedia.org/wiki/Unix_time
# http://www.madore.org/~david/computers/unix-leap-seconds.html # http://www.madore.org/~david/computers/unix-leap-seconds.html
return pack('!LL', packed_higher, min(lower, TID_LOW_MAX)) return pack('!LL', packed_higher, min(lower, TID_LOW_MAX))
......
...@@ -62,7 +62,7 @@ class SQLiteDatabaseManager(DatabaseManager): ...@@ -62,7 +62,7 @@ class SQLiteDatabaseManager(DatabaseManager):
"""This class manages a database on SQLite. """This class manages a database on SQLite.
CAUTION: Make sure we never use statement journal files, as explained at CAUTION: Make sure we never use statement journal files, as explained at
http://www.sqlite.org/tempfiles.html for more information. https://www.sqlite.org/tempfiles.html for more information.
In other words, temporary files (by default in /var/tmp !) must In other words, temporary files (by default in /var/tmp !) must
never be used for small requests. never be used for small requests.
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment