Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move wtforms to the pallets-eco organization #854

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Released 2024-01-06

- Fix :class:`~fields.SelectMultipleField` value coercion on validation.
:issue:`822` :pr:`823`
- Move the repository to the pallets-eco organization.

Version 3.1.1
-------------
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ with frameworks even better.

.. _Flask-WTF: https://flask-wtf.readthedocs.io/
.. _WTForms-Alchemy: https://wtforms-alchemy.readthedocs.io/
.. _WTForms-SQLAlchemy: https://github.com/wtforms/wtforms-sqlalchemy
.. _WTForms-AppEngine: https://github.com/wtforms/wtforms-appengine
.. _WTForms-Django: https://github.com/wtforms/wtforms-django
.. _WTForms-SQLAlchemy: https://github.com/pallets-eco/wtforms-sqlalchemy
.. _WTForms-AppEngine: https://github.com/pallets-eco/wtforms-appengine
.. _WTForms-Django: https://github.com/pallets-eco/wtforms-django
.. _WTForms-Bootstrap5: https://github.com/LaunchPlatform/wtforms-bootstrap5
.. _Starlette-WTF: https://github.com/muicss/starlette-wtf
.. _Bootstrap-Flask: https://github.com/helloflask/bootstrap-flask
Expand All @@ -61,7 +61,7 @@ Links

- Documentation: https://wtforms.readthedocs.io/
- Releases: https://pypi.org/project/WTForms/
- Code: https://github.com/wtforms/wtforms
- Issue tracker: https://github.com/wtforms/wtforms/issues
- Code: https://github.com/pallets-eco/wtforms
- Issue tracker: https://github.com/pallets-eco/wtforms/issues
- Discord Chat: https://discord.gg/F65P7Z9
- Translation: https://hosted.weblate.org/projects/wtforms/wtforms/
- Translation: https://hosted.weblate.org/projects/pallets-eco/wtforms/
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
}
issues_github_path = "wtforms/wtforms"
issues_github_path = "pallets-eco/wtforms"

# HTML -----------------------------------------------------------------

html_theme = "werkzeug"
html_context = {
"project_links": [
ProjectLink("PyPI Releases", "https://pypi.org/project/WTForms/"),
ProjectLink("Source Code", "https://github.com/wtforms/wtforms/"),
ProjectLink("Source Code", "https://github.com/pallets-eco/wtforms/"),
ProjectLink(
"Discord Chat",
"https://discord.gg/F65P7Z9",
),
ProjectLink("Issue Tracker", "https://github.com/wtforms/wtforms/issues/"),
ProjectLink("Issue Tracker", "https://github.com/pallets-eco/wtforms/issues/"),
]
}
html_sidebars = {
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ How to Contribute
WTForms is now on `GitHub`_, so all contributions should be either associated
with a pull request or with a ticket & patch.

.. _GitHub: https://github.com/wtforms/wtforms
.. _GitHub: https://github.com/pallets-eco/wtforms


Contribution Guidelines
Expand All @@ -38,7 +38,7 @@ Code submitted should:
advantage of `Github Actions`_ for running tests on all supported Python
versions.

.. _Github Actions: https://github.com/wtforms/wtforms/actions
.. _Github Actions: https://github.com/pallets-eco/wtforms/actions
.. _PEP8: https://www.python.org/dev/peps/pep-0008/


Expand Down
6 changes: 3 additions & 3 deletions docs/ext.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Extensions

All WTForms extensions were removed in WTForms 3.0.

* ``wtforms.ext.appengine`` was extracted to `WTForms-Appengine <https://github.com/wtforms/wtforms-appengine>`_
* ``wtforms.ext.appengine`` was extracted to `WTForms-Appengine <https://github.com/pallets-eco/wtforms-appengine>`_
* ``wtforms.ext.csrf`` was integrated into WTForms core. See :doc:`CSRF Docs <csrf>`
* ``wtforms.ext.django`` was extracted to `WTForms-Django <https://github.com/wtforms/wtforms-django>`_
* ``wtforms.ext.django`` was extracted to `WTForms-Django <https://github.com/pallets-eco/wtforms-django>`_
* ``wtforms.ext.i18n`` was integrated into WTForms core. See :doc:`i18n`
* ``wtforms.ext.sqlalchemy`` was extracted to `WTForms-SQLAlchemy <https://github.com/wtforms/wtforms-sqlalchemy>`_
* ``wtforms.ext.sqlalchemy`` was extracted to `WTForms-SQLAlchemy <https://github.com/pallets-eco/wtforms-sqlalchemy>`_
10 changes: 5 additions & 5 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ but if it's not listed, it doesn't mean it won't work.
Special support is there for `SQLAlchemy`_, `Google App Engine`_, and `Django`_
collections via companion packages.

.. _SQLAlchemy: https://github.com/wtforms/wtforms-sqlalchemy
.. _Google App Engine: https://github.com/wtforms/wtforms-appengine
.. _WTForms-Django: https://github.com/wtforms/wtforms-django
.. _Django: https://github.com/wtforms/wtforms-django
.. _SQLAlchemy: https://github.com/pallets-eco/wtforms-sqlalchemy
.. _Google App Engine: https://github.com/pallets-eco/wtforms-appengine
.. _WTForms-Django: https://github.com/pallets-eco/wtforms-django
.. _Django: https://github.com/pallets-eco/wtforms-django

Does WTForms support unicode?
-----------------------------
Expand All @@ -67,7 +67,7 @@ WTForms is not that scary. Really. We try to keep it as succinct and readable as
possible. For bugs and feature requests, you can file a
ticket on the `project page`_.

.. _project page: https://github.com/wtforms/wtforms
.. _project page: https://github.com/pallets-eco/wtforms


How do I mark in a template when a field is required?
Expand Down
4 changes: 2 additions & 2 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ the new API's unless it needs to work across both WTForms 1.x and 2.x

.. _WTForms-Alchemy: https://pypi.org/project/WTForms-Alchemy/
.. _WTForms-Alchemy-docs: https://wtforms-alchemy.readthedocs.io/
.. _WTForms-Appengine: https://github.com/wtforms/wtforms-appengine
.. _WTForms-Django: https://github.com/wtforms/wtforms-django
.. _WTForms-Appengine: https://github.com/pallets-eco/wtforms-appengine
.. _WTForms-Django: https://github.com/pallets-eco/wtforms-django


Low-level Changes
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dynamic = ["version"]
[project.urls]
Documentation = "https://wtforms.readthedocs.io"
Changes = "https://wtforms.readthedocs.io/changes"
"Source Code" = "https://github.com/wtforms/wtforms/"
"Issue Tracker" = "https://github.com/wtforms/wtforms/issues"
"Source Code" = "https://github.com/pallets-eco/wtforms/"
"Issue Tracker" = "https://github.com/pallets-eco/wtforms/issues"
Chat = "https://discord.gg/pallets"

[project.optional-dependencies]
Expand Down
Loading