diff doc/customizing.txt @ 5367:f3b844fda420

Updated links to handle: http://issues.roundup-tracker.org/issue2550965 I think I have most of them at this point.
author John Rouillard <rouilj@ieee.org>
date Wed, 18 Jul 2018 21:32:24 -0400
parents 979390afb001
children b7fa56ced601 d698d3d843a9
line wrap: on
line diff
--- a/doc/customizing.txt	Wed Jul 18 21:31:12 2018 -0400
+++ b/doc/customizing.txt	Wed Jul 18 21:32:24 2018 -0400
@@ -66,15 +66,18 @@
 automatically register through the email interface, you must grant the
 "Anonymous" Role the "Email Access" Permission.
 
-The following is taken from the `Python Library Reference`__ (May 20, 2004)
+The following is taken from the `Python Library Reference`__ (July 18, 2018)
 section "ConfigParser -- Configuration file parser":
 
- The configuration file consists of sections, led by a "[section]" header
- and followed by "name = value" entries, with line continuations on a
- newline with leading whitespace. Note that leading whitespace is removed
- from values. The optional values can contain format strings which
- refer to other values in the same section. Lines beginning with "#" or ";"
- are ignored and may be used to provide comments. 
+ The configuration file consists of sections, led by a [section] header
+ and followed by name: value entries, with continuations in the style
+ of RFC 822 (see section 3.1.1, “LONG HEADER FIELDS”); name=value is
+ also accepted. Note that leading whitespace is removed from
+ values. The optional values can contain format strings which refer to
+ other values in the same section, or values in a special DEFAULT
+ section. Additional defaults can be provided on initialization and
+ retrieval. Lines beginning with '#' or ';' are ignored and may be
+ used to provide comments.
 
  For example::
 
@@ -85,7 +88,7 @@
  would resolve the "%(dir)s" to the value of "dir" ("frob" in this case)
  resulting in "foodir" being "frob/whatever".
 
-__ http://docs.python.org/lib/module-ConfigParser.html
+__ https://docs.python.org/2/library/configparser.html
 
 Example configuration settings are below.
  
@@ -2694,7 +2697,7 @@
 isset       returns True if the property has been set to a value
 =========== ================================================================
 
-__ http://docs.python.org/lib/module-time.html
+__ https://docs.python.org/2/library/time.html
 
 All of the above functions perform checks for permissions required to
 display or edit the data they are manipulating. The simplest case is
@@ -4325,7 +4328,7 @@
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 A script that reads users from an LDAP store using
-http://python-ldap.sf.net/ and then compares the list to the users in the
+https://pypi.org/project/python-ldap/ and then compares the list to the users in the
 roundup user database would be pretty easy to write. You'd then have it run
 once an hour / day (or on demand if you can work that into your LDAP store
 workflow). See the example `Using a UN*X passwd file as the user database`_

Roundup Issue Tracker: http://roundup-tracker.org/