Skip to content

Commit 5ef47e5

Browse files
committed
Move repo from Cito/w4py3 to WebwareForPython/w4py3
1 parent 8efd654 commit 5ef47e5

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Webware for Python is a well prooven and platform-independent suite of Python pa
44

55
Webware for Python 3 is the latest version of the suite, which has been adapted to use Python 3 instead of Python 2 and the WSGI standard instead of the custom Webware threaded application server and various adapters, but otherwise kept compatible with the legacy version.
66

7-
The current project **homepage** can be found here: <https://github.com/Cito/w4py3>
7+
The current project **homepage** can be found here: <https://github.com/WebwareForPython/w4py3>
88

9-
The current **documentation** is published at: <https://cito.github.io/w4py3/>
9+
The current **documentation** is published at: <https://webwareforpython.github.io/w4py3/>
1010

11-
You can still find the **legacy version** of Webware for Python at: <https://cito.github.io/w4py/>
11+
You can still find the **legacy version** of Webware for Python at: <https://webwareforpython.github.io/w4py/>

docs/migrate.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Regarding the API, we tried to stay compatible with Webware for Python 2 as much
1010
Check which Webware plug-ins you were using
1111
-------------------------------------------
1212

13-
First you should check whether the plug-ins your application is using are still available as built-ins plugin of Webware for Python 3 (`w4py3 <https://github.com/cito/w4py3>`_) or as externally provided plug-ins. PSP is still provided as a built-in plug-in. MiddleKit is now provided as an external plug-in on GitHub (`w4py3-middlekit <https://github.com/PeaceWorksTechnologySolutions/w4py3-middlekit>`_). The "COMKit", "CGIWrapper" and "KidKit" built-in plug-ins have been discontinued. Other external plug-ins that have been developed for Webware for Python 2 must first be ported to Webware for Python 3 before you can use them. See the section on :ref:`plug-ins` for details on how to write plug-ins for Webware for Python 3.
13+
First you should check whether the plug-ins your application is using are still available as built-ins plugin of Webware for Python 3 (`w4py3 <https://github.com/WebwareForPython/w4py3>`_) or as externally provided plug-ins. PSP is still provided as a built-in plug-in. MiddleKit is now provided as an external plug-in on GitHub (`w4py3-middlekit <https://github.com/PeaceWorksTechnologySolutions/w4py3-middlekit>`_). The "COMKit", "CGIWrapper" and "KidKit" built-in plug-ins have been discontinued. Other external plug-ins that have been developed for Webware for Python 2 must first be ported to Webware for Python 3 before you can use them. See the section on :ref:`plug-ins` for details on how to write plug-ins for Webware for Python 3.
1414

1515
.. _MiddleKit: https://github.com/PeaceWorksTechnologySolutions/w4py3-middlekit
1616

docs/overview.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ You can also report issues_ and send in `pull requests`_ using the `GitHub proje
6767

6868
You can keep up on new releases through the very low traffic `announcement mailing list`_ or subscribing to `releases`_ on GitHub.
6969

70-
.. _Webware for Python 3: https://cito.github.io/w4py3/
71-
.. _original project: https://cito.github.io/w4py/
70+
.. _Webware for Python 3: https://webwareforpython.github.io/w4py3/
71+
.. _original project: https://webwareforpython.github.io/w4py/
7272
.. _waitress: https://docs.pylonsproject.org/projects/waitress/
7373
.. _gil: https://realpython.com/python-gil/
7474
.. _wsgi: https://www.fullstackpython.com/wsgi-servers.html
@@ -79,9 +79,9 @@ You can keep up on new releases through the very low traffic `announcement maili
7979
.. _Python 2 to Python 3: https://docs.python.org/3/howto/pyporting.html
8080
.. _discussion mailing list: https://sourceforge.net/projects/webware/lists/webware-discuss
8181
.. _announcement mailing list: https://sourceforge.net/projects/webware/lists/webware-announce
82-
.. _GitHub project page: https://github.com/Cito/w4py3/
83-
.. _GitHub pages: https://cito.github.io/w4py3/
82+
.. _GitHub project page: https://github.com/WebwareForPython/w4py3/
83+
.. _GitHub pages: https://webwareforpython.github.io/w4py3/
8484
.. _Read the Docs: https://webware-for-python-3.readthedocs.io/
85-
.. _issues: https://github.com/Cito/w4py3/issues
86-
.. _pull requests: https://github.com/Cito/w4py3/pulls
87-
.. _releases: https://github.com/Cito/w4py3/releases
85+
.. _issues: https://github.com/WebwareForPython/w4py3/issues
86+
.. _pull requests: https://github.com/WebwareForPython/w4py3/pulls
87+
.. _releases: https://github.com/WebwareForPython/w4py3/releases

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
long_description=long_description,
3535
long_description_content_type='text/markdown',
3636
keywords='web framework servlets',
37-
url='https://cito.github.io/w4py3/',
37+
url='https://webwareforpython.github.io/w4py3/',
3838
packages=setuptools.find_packages(),
3939
include_package_data=True,
4040
classifiers=[

webware/Examples/AjaxSuggest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Ajax "Suggest" Example
33
#
44
# Written by Robert Forkel based on
5-
# https://cito.github.io/w4py-olde-wiki/ajaxinwebware.html
5+
# https://webwareforpython.github.io/w4py-olde-wiki/ajaxinwebware.html
66
# and http://www.dynamicajax.com/fr/AJAX_Suggest_Tutorial-271_290_312.html,
77
# with minor changes made by Christoph Zwerschke.
88
#

webware/MiscUtils/DBPool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
become invalid are not automatically recovered. For a more sophisticated
3131
solution, please have a look at the DBUtils_ package.
3232
33-
.. _DBUtils: https://cito.github.io/dbutils/
33+
.. _DBUtils: https://webwareforpython.github.io/dbutils/
3434
3535
3636
CREDIT

webware/SidebarPage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def writeWebwareEmailMenu(self):
205205

206206
def writeWebwareExitsMenu(self):
207207
self.menuHeading('Exits')
208-
self.menuItem('Webware', 'https://cito.github.io/w4py3/')
208+
self.menuItem('Webware', 'https://webwareforpython.github.io/w4py3/')
209209
self.menuItem('Python', 'https://www.python.org/')
210210

211211
def writeVersions(self):

webware/Tests/TestEndToEnd/TestExamples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def testStartPage(self):
3737
'<div class="MenuHeading">Contexts</div>',
3838
'<div class="MenuHeading">E-mail</div>', 'webware-discuss',
3939
'<div class="MenuHeading">Exits</div>',
40-
'<a href="https://cito.github.io/w4py3/">Webware</a>',
40+
'<a href="https://webwareforpython.github.io/w4py3/">Webware</a>',
4141
'<a href="https://www.python.org/">Python</a>',
4242
'<div class="MenuHeading">Versions</div>',
4343
f'>Webware {webwareVersion}<', f'>Python {pythonVersion}<',

0 commit comments

Comments
 (0)