Skip to content

Commit 125d3ae

Browse files
committed
Update some more links
1 parent da0c311 commit 125d3ae

9 files changed

Lines changed: 22 additions & 18 deletions

File tree

DBUtils/PersistentDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
For this, you have to set MinServerThreads = MaxServerThreads in Webware.
2424
2525
For the Python DB-API 2 specification, see:
26-
http://www.python.org/peps/pep-0249.html
26+
https://www.python.org/dev/peps/pep-0249/
2727
For information on Webware for Python, see:
28-
http://www.webwareforpython.org
28+
https://cito.github.io/w4py/
2929
3030
3131
Usage:

DBUtils/PersistentPg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
For this, you have to set MinServerThreads = MaxServerThreads in Webware.
2424
2525
For more information on PostgreSQL, see:
26-
http://www.postgresql.org
26+
https://www.postgresql.org/
2727
For more information on PyGreSQL, see:
2828
http://www.pygresql.org
2929
For more information on Webware for Python, see:
30-
http://www.webwareforpython.org
30+
https://cito.github.io/w4py/
3131
3232
3333
Usage:

DBUtils/PooledDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
but you can also request dedicated connections in case you need them.
2222
2323
For the Python DB-API 2 specification, see:
24-
http://www.python.org/peps/pep-0249.html
24+
https://www.python.org/dev/peps/pep-0249/
2525
For information on Webware for Python, see:
26-
http://www.webwareforpython.org
26+
https://cito.github.io/w4py/
2727
2828
2929
Usage:

DBUtils/PooledPg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
is not thread-safe at the connection level.
2121
2222
For more information on PostgreSQL, see:
23-
http://www.postgresql.org
23+
https://www.postgresql.org/
2424
For more information on PyGreSQL, see:
2525
http://www.pygresql.org
2626
For more information on Webware for Python, see:
27-
http://www.webwareforpython.org
27+
https://cito.github.io/w4py/
2828
2929
3030
Usage:

DBUtils/SimplePooledDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
such as the "Webware for Python" AppServer.
88
99
For more information on the DB-API 2, see:
10-
http://www.python.org/peps/pep-0249.html
10+
https://www.python.org/dev/peps/pep-0249/
1111
For more information on Webware for Python, see:
12-
http://www.webwareforpython.org
12+
https://cito.github.io/w4py/
1313
1414
Measures are taken to make the pool of connections threadsafe
1515
regardless of whether the DB-API 2 module used is threadsafe

DBUtils/SimplePooledPg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
such as the "Webware for Python" AppServer.
99
1010
For more information on PostgreSQL, see:
11-
http://www.postgresql.org
11+
https://www.postgresql.org/
1212
For more information on PyGreSQL, see:
1313
http://www.pygresql.org
1414
For more information on Webware for Python, see:
15-
http://www.webwareforpython.org
15+
https://cito.github.io/w4py/
1616
1717
Measures are taken to make the pool of connections threadsafe
1818
regardless of the fact that the PyGreSQL pg module itself is

DBUtils/SteadyDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
thread-safe (depending on the used DB-API module).
3434
3535
For the Python DB-API 2 specification, see:
36-
http://www.python.org/peps/pep-0249.html
36+
https://www.python.org/dev/peps/pep-0249/
3737
For information on Webware for Python, see:
38-
http://www.webwareforpython.org
38+
https://cito.github.io/w4py/
3939
4040
Usage:
4141

DBUtils/SteadyPg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
Note, however, that the connections themselves are not thread-safe.
2626
2727
For more information on PostgreSQL, see:
28-
http://www.postgresql.org
28+
https://www.postgresql.org/
2929
For more information on PyGreSQL, see:
3030
http://www.pygresql.org
3131
For more information on Webware for Python, see:
32-
http://www.webwareforpython.org
32+
https://cito.github.io/w4py/
3333
3434
3535
Usage:

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,18 @@
5252
'Intended Audience :: Developers',
5353
'License :: OSI Approved :: MIT License',
5454
'Programming Language :: Python',
55+
'Programming Language :: Python :: 2.3',
56+
'Programming Language :: Python :: 2.4',
57+
'Programming Language :: Python :: 2.5',
58+
'Programming Language :: Python :: 2.6',
59+
'Programming Language :: Python :: 2.7',
5560
'Topic :: Database',
5661
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
5762
'Topic :: Software Development :: Libraries :: Python Modules'
5863
],
5964
author='Christoph Zwerschke',
6065
author_email='cito@online.de',
61-
url='http://www.webwareforpython.org/DBUtils',
62-
download_url='http://www.webwareforpython.org/downloads/DBUtils/',
66+
url='https://github.com/Cito/DBUtils',
6367
platforms=['any'],
6468
license='MIT License',
6569
packages=['DBUtils', 'DBUtils.Examples', 'DBUtils.Tests'],

0 commit comments

Comments
 (0)