Skip to content

Commit 3cd615a

Browse files
committed
update project links
1 parent 8d95015 commit 3cd615a

3 files changed

Lines changed: 26 additions & 18 deletions

File tree

README.rst

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ project layout. It is up to the developer to choose the tools and
1212
libraries they want to use. There are many extensions provided by the
1313
community that make adding new functionality easy.
1414

15+
.. _WSGI: https://wsgi.readthedocs.io/
16+
.. _Werkzeug: https://werkzeug.palletsprojects.com/
17+
.. _Jinja: https://jinja.palletsprojects.com/
18+
1519

1620
Installing
1721
----------
@@ -22,6 +26,8 @@ Install and update using `pip`_:
2226
2327
$ pip install -U Flask
2428
29+
.. _pip: https://pip.pypa.io/en/stable/quickstart/
30+
2531

2632
A Simple Example
2733
----------------
@@ -60,21 +66,17 @@ it uses. In order to grow the community of contributors and users, and
6066
allow the maintainers to devote more time to the projects, `please
6167
donate today`_.
6268

63-
.. _please donate today: https://psfmember.org/civicrm/contribute/transact?reset=1&id=20
69+
.. _please donate today: https://palletsprojects.com/donate
6470

6571

6672
Links
6773
-----
6874

69-
* Website: https://palletsprojects.com/p/flask/
70-
* Documentation: https://flask.palletsprojects.com/
71-
* Releases: https://pypi.org/project/Flask/
72-
* Code: https://github.com/pallets/flask
73-
* Issue tracker: https://github.com/pallets/flask/issues
74-
* Test status: https://dev.azure.com/pallets/flask/_build
75-
* Official chat: https://discord.gg/pallets
76-
77-
.. _WSGI: https://wsgi.readthedocs.io
78-
.. _Werkzeug: https://www.palletsprojects.com/p/werkzeug/
79-
.. _Jinja: https://www.palletsprojects.com/p/jinja/
80-
.. _pip: https://pip.pypa.io/en/stable/quickstart/
75+
- Documentation: https://flask.palletsprojects.com/
76+
- Changes: https://flask.palletsprojects.com/changes/
77+
- PyPI Releases: https://pypi.org/project/Flask/
78+
- Source Code: https://github.com/pallets/flask/
79+
- Issue Tracker: https://github.com/pallets/flask/issues/
80+
- Website: https://palletsprojects.com/p/flask/
81+
- Twitter: https://twitter.com/PalletsTeam
82+
- Chat: https://discord.gg/pallets

docs/conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@
3838
html_theme_options = {"index_sidebar_logo": False}
3939
html_context = {
4040
"project_links": [
41-
ProjectLink("Donate to Pallets", "https://palletsprojects.com/donate"),
42-
ProjectLink("Flask Website", "https://palletsprojects.com/p/flask/"),
43-
ProjectLink("PyPI releases", "https://pypi.org/project/Flask/"),
41+
ProjectLink("Donate", "https://palletsprojects.com/donate"),
42+
ProjectLink("PyPI Releases", "https://pypi.org/project/Flask/"),
4443
ProjectLink("Source Code", "https://github.com/pallets/flask/"),
4544
ProjectLink("Issue Tracker", "https://github.com/pallets/flask/issues/"),
45+
ProjectLink("Website", "https://palletsprojects.com/p/flask/"),
46+
ProjectLink("Twitter", "https://twitter.com/PalletsTeam"),
47+
ProjectLink("Chat", "https://discord.gg/pallets"),
4648
]
4749
}
4850
html_sidebars = {

setup.cfg

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ name = Flask
33
# Version needs regex in setup.py.
44
url = https://palletsprojects.com/p/flask
55
project_urls =
6+
Donate = https://palletsprojects.com/donate
67
Documentation = https://flask.palletsprojects.com/
7-
Code = https://github.com/pallets/flask
8-
Issue tracker = https://github.com/pallets/flask/issues
8+
Changes = https://flask.palletsprojects.com/changes/
9+
Source Code = https://github.com/pallets/flask/
10+
Issue Tracker = https://github.com/pallets/flask/issues/
11+
Twitter = https://twitter.com/PalletsTeam
12+
Chat = https://discord.gg/pallets
913
license = BSD-3-Clause
1014
author = Armin Ronacher
1115
author_email = [email protected]

0 commit comments

Comments
 (0)