Skip to content

Commit 8d1a1f4

Browse files
committed
Mailing lists on SourceForge have been closed
1 parent c56742f commit 8d1a1f4

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

docs/install.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,11 @@ When installing Webware for Python 3, the following "extras" can optionally be i
5454
* "dev": extras for developing Webware applications
5555
* "examples": extras for running all Webware examples
5656
* "test": extras needed to test all functions of Webware
57+
* "docs": extras needed to build this documentation
5758

5859
On your development machine, we recommend installing the full "test" environment which also includes the other two environments. To do that, you need to specify the "Extras" name in square brackets when installing Webware for Python 3::
5960

60-
pip install "Webware-for-Python[tests]>=3"
61+
pip install "Webware-for-Python[dev]>=3"
6162

6263

6364
Installation from Source

docs/overview.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,7 @@ This documentation is available online via `GitHub Pages`_ and via `Read the Doc
6262
Feedback, Contributing and Support
6363
----------------------------------
6464

65-
You can use the `discussion mailing list`_ to give feedback, discuss features and get help using Webware.
66-
67-
You can also report issues_ and send in `pull requests`_ using the `GitHub project page`_ of Webware for Python 3.
68-
69-
You can keep up on new releases through the very low traffic `announcement mailing list`_ or subscribing to `releases`_ on GitHub.
65+
You can report issues_ and send in `pull requests`_ using the `GitHub project page`_ of Webware for Python 3. If you want to be notified when new `releases`_ are available, you can use the "Watch" feature of GitHub.
7066

7167
.. _Webware for Python 3: https://webwareforpython.github.io/w4py3/
7268
.. _original project: https://webwareforpython.github.io/w4py/
@@ -79,8 +75,6 @@ You can keep up on new releases through the very low traffic `announcement maili
7975
.. _twill: https://twill-tools.github.io/twill/
8076
.. _WebTest: https://docs.pylonsproject.org/projects/webtest/en/latest/
8177
.. _Python 2 to Python 3: https://docs.python.org/3/howto/pyporting.html
82-
.. _discussion mailing list: https://sourceforge.net/projects/webware/lists/webware-discuss
83-
.. _announcement mailing list: https://sourceforge.net/projects/webware/lists/webware-announce
8478
.. _GitHub project page: https://github.com/WebwareForPython/w4py3
8579
.. _GitHub pages: https://webwareforpython.github.io/w4py3/
8680
.. _Read the Docs: https://webware-for-python-3.readthedocs.io/

webware/SidebarPage.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def writeWebwareSidebarSections(self):
182182
It writes sections such as contexts, e-mails, exits and versions.
183183
"""
184184
self.writeContextsMenu()
185-
self.writeWebwareEmailMenu()
185+
self.writeWebwareDocsMenu()
186186
self.writeWebwareExitsMenu()
187187
self.writeVersions()
188188

@@ -195,10 +195,11 @@ def writeContextsMenu(self):
195195
for context in contexts:
196196
self.menuItem(context, f'{servletPath}/{context}/')
197197

198-
def writeWebwareEmailMenu(self):
199-
self.menuHeading('E-mail')
200-
self.menuItem(
201-
'webware-discuss', 'mailto:[email protected]')
198+
def writeWebwareDocsMenu(self):
199+
docs = 'https://webwareforpython.github.io/w4py3/'
200+
self.menuHeading('Docs')
201+
self.menuItem('Quickstart', f'{docs}quickstart.html')
202+
self.menuItem('Reference', f'{docs}ref/')
202203

203204
def writeWebwareExitsMenu(self):
204205
self.menuHeading('Exits')

webware/Tests/TestEndToEnd/TestExamples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def testStartPage(self):
5151
'<div class="MenuHeading">Examples</div>',
5252
'<div class="MenuHeading">Other</div>',
5353
'<div class="MenuHeading">Contexts</div>',
54-
'<div class="MenuHeading">E-mail</div>', 'webware-discuss',
54+
'<div class="MenuHeading">Docs</div>', 'Quickstart',
5555
'<div class="MenuHeading">Exits</div>',
5656
'<a href="https://webwareforpython.github.io/w4py3/">Webware</a>',
5757
'<a href="https://www.python.org/">Python</a>',

0 commit comments

Comments
 (0)