Skip to content

Commit 51e1be3

Browse files
committed
Fix redirect links
1 parent c2c0fbc commit 51e1be3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/backend/upgrading/version-specific-migration/p4x-to-p5x-upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ When the email addresses are not unique, for example you have both `joe@example.
7474
It is best is to fix this in your site in Plone 4
7575
Change email addresses or remove no longer needed users.
7676
When there are only a few users, you can do this manually.
77-
To assist you in sites with many users, in Plone 4.1 and higher, you can add the [collective.emaillogin4](https://pypi.python.org/pypi/collective.emaillogin4) package to the eggs of your Plone instance.
77+
To assist you in sites with many users, in Plone 4.1 and higher, you can add the [collective.emaillogin4](https://pypi.org/project/collective.emaillogin4) package to the eggs of your Plone instance.
7878

7979
With that package, even without installing it in the add-ons control panel, you can call the `@@migrate-to-emaillogin` page to look for duplicate email addresses.
8080

@@ -272,7 +272,7 @@ An old style Resource Registry would look like this:
272272
</object>
273273
```
274274

275-
To migrate this to Plone 5, resource registrations are all done in the [Configuration Registry](https://pypi.python.org/pypi/plone.app.registry).
275+
To migrate this to Plone 5, resource registrations are all done in the [Configuration Registry](https://pypi.org/project/plone.app.registry).
276276

277277

278278
#### New style with {file}`registry.xml`

docs/backend/upgrading/version-specific-migration/upgrade-to-51.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ Adding or editing a document is faster, because care was taken to avoid duplicat
279279

280280
#### For Developers
281281

282-
The [collective.indexing](https://pypi.python.org/pypi/collective.indexing) package was merged into the core of Plone.
282+
The [collective.indexing](https://pypi.org/project/collective.indexing) package was merged into the core of Plone.
283283
This makes sure that objects are only indexed once per transaction.
284284

285285
It also gives hooks for calling external indexers, like Solr and Elasticsearch.

docs/backend/upgrading/version-specific-migration/upgrade-to-python3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you want to upgrade add-ons to Python 3, the list of all Plone packages that
2626

2727
- You should support Python 2 and 3 with the same codebase to allow it to be used in existing versions of Plone.
2828
- Plone 5.2 supports Python 2.7, Python 3.6, and Python 3.7.
29-
- We use [six](https://six.readthedocs.io) and [modernize](https://pypi.python.org/pypi/modernize) to do the first steps towards Python 3.
29+
- We use [six](https://six.readthedocs.io) and [modernize](https://pypi.org/project/modernize) to do the first steps towards Python 3.
3030

3131
In general you should follow these steps to port add-ons:
3232

@@ -154,7 +154,7 @@ Check this [Cheat Sheet](http://python-future.org/compatible_idioms.html) with
154154

155155
`python-modernize` adds an import of the compatibility library `six` if needed.
156156
The import is added as the last import, therefore it is often necessary to reorder the imports.
157-
The easiest way is to use [isort](https://pypi.python.org/pypi/isort), which does this for you automatically.
157+
The easiest way is to use [isort](https://pypi.org/project/isort), which does this for you automatically.
158158
Check the [Python style guide for Plone](https://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting) for information about the order of imports and an example configuration for `isort`.
159159

160160
If `six` is used in the code, make sure that `six` is added to the `install_requires` list in the `setup.py` of the package.

0 commit comments

Comments
 (0)