Skip to content

Commit 3cd1b10

Browse files
committed
docs.plone.org -> 5.docs.plone.org
1 parent 0dc4856 commit 3cd1b10

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

docs/backend/security.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ myst:
1313

1414
From Zope, Plone provides various built-in security facilities.
1515

16-
[Security](https://docs.plone.org/develop/plone/security)
16+
[Security](https://5.docs.plone.org/develop/plone/security)
1717

1818

1919
(backend-security-permissions-label)=
2020

2121
## Permissions
2222

23-
[Available Permissions In Plone](https://docs.plone.org/develop/plone/security/permission_lists)
23+
[Available Permissions In Plone](https://5.docs.plone.org/develop/plone/security/permission_lists)
2424

2525

2626
(backend-security-roles-label)=
@@ -37,7 +37,7 @@ From Zope, Plone provides various built-in security facilities.
3737

3838
### Local Roles
3939

40-
[Local Roles](https://docs.plone.org/develop/plone/security/local_roles.html)
40+
[Local Roles](https://5.docs.plone.org/develop/plone/security/local_roles.html)
4141

4242

4343
(backend-security-sharing-label)=

docs/classic-ui/views.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -691,17 +691,17 @@ However, in most cases:
691691
Replace links to Plone 5.2 docs with links to Plone 6 docs.
692692
Specifically:
693693
694-
- [TAL page template](https://docs.plone.org/adapt-and-extend/theming/templates_css/template_basics)
695-
- [interface](https://docs.plone.org/develop/addons/components/interfaces)
694+
- [TAL page template](https://5.docs.plone.org/adapt-and-extend/theming/templates_css/template_basics)
695+
- [interface](https://5.docs.plone.org/develop/addons/components/interfaces)
696696
```
697697

698698
- Full Plone page views are a subclass of [`Products.Five.browser.BrowserView`](https://github.com/zopefoundation/Zope/blob/d1814d0a6bddb615629b552de10e9aa5ad30a6da/src/Products/Five/browser/__init__.py#L20) which is a wrapper class.
699699
It wraps [`zope.publisher.browser.BrowserView`](https://github.com/zopefoundation/zope.publisher/blob/dea3d4757390d04f6a5b53e696f08d0cab5f6023/src/zope/publisher/browser.py#L958) and adds an acquisition (parent traversal) support for it.
700-
- Views have an attribute `index` which points to a [TAL page template](https://docs.plone.org/adapt-and-extend/theming/templates_css/template_basics) responsible for rendering the HTML code.
700+
- Views have an attribute `index` which points to a [TAL page template](https://5.docs.plone.org/adapt-and-extend/theming/templates_css/template_basics) responsible for rendering the HTML code.
701701
You get the HTML output by doing `self.index()`.
702702
The page template gets a context argument `view` pointing to the view class instance.
703703
The `index` value is usually an instance of [`Products.Five.browser.pagetemplate.ViewPageTemplateFile`](https://github.com/zopefoundation/Zope/blob/d1814d0a6bddb615629b552de10e9aa5ad30a6da/src/Products/Five/browser/pagetemplatefile.py#L35) for full Plone pages or [`zope.pagetemplate.pagetemplatefile.PageTemplateFile`](https://github.com/zopefoundation/zope.pagetemplate/blob/14ba59c98e12517b9f8abcdb24bc882bb435ed7c/src/zope/pagetemplate/pagetemplatefile.py#L43) for HTML snippets without using acquisition.
704-
- View classes should implement the [interface](https://docs.plone.org/develop/addons/components/interfaces)
704+
- View classes should implement the [interface](https://5.docs.plone.org/develop/addons/components/interfaces)
705705
[`zope.browser.interfaces.IBrowserView`](https://github.com/zopefoundation/zope.browser/blob/1239c75e4e190df992bf34a88b4ead2c952afe86/src/zope/browser/interfaces.py#L27).
706706
707707
Views that render page snippets and parts can be direct subclasses of `zope.publisher.browser.BrowserView`, as snippets might not need acquisition support which adds some overhead to the rendering process.
@@ -722,13 +722,13 @@ As such, you can call view methods directly from a page template, not only from
722722
Replace links to Plone 5.2 docs with links to Plone 6 docs.
723723
Specifically:
724724

725-
- [Helper views and tools](https://docs.plone.org/develop/plone/misc/context)
726-
- [Expressions](https://docs.plone.org/develop/plone/functionality/expressions)
725+
- [Helper views and tools](https://5.docs.plone.org/develop/plone/misc/context)
726+
- [Expressions](https://5.docs.plone.org/develop/plone/functionality/expressions)
727727
```
728728
729729
```{seealso}
730-
- [Helper views and tools](https://docs.plone.org/develop/plone/misc/context)
731-
- [Expressions](https://docs.plone.org/develop/plone/functionality/expressions)
730+
- [Helper views and tools](https://5.docs.plone.org/develop/plone/misc/context)
731+
- [Expressions](https://5.docs.plone.org/develop/plone/functionality/expressions)
732732
```
733733
734734
@@ -974,11 +974,11 @@ def viewURLFor(item):
974974
Replace links to Plone 5.2 docs to Plone 6 docs.
975975
Specifically:
976976
977-
- [Helper views and tools](https://docs.plone.org/develop/plone/misc/context)
977+
- [Helper views and tools](https://5.docs.plone.org/develop/plone/misc/context)
978978
```
979979
980980
```{seealso}
981-
- [Helper views and tools](https://docs.plone.org/develop/plone/misc/context)
981+
- [Helper views and tools](https://5.docs.plone.org/develop/plone/misc/context)
982982
- [URL to content view](https://web.archive.org/web/20110529043150/http://plone.293351.n2.nabble.com/URL-to-content-view-td6028204.html)
983983
```
984984

docs/glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Solr
114114
[Solr](https://solr.apache.org/) is a popular, blazing-fast, open source enterprise search platform built on Apache Lucene.
115115
116116
ZCML
117-
The [Zope Configuration Mark-up Language](https://docs.plone.org/develop/addons/components/zcml.html).
117+
The [Zope Configuration Mark-up Language](https://5.docs.plone.org/develop/addons/components/zcml.html).
118118
119119
Diazo
120120
[Diazo theme engine guide](https://docs.diazo.org/en/latest/).
@@ -554,7 +554,7 @@ REST
554554
REST stands for [Representational State Transfer](https://en.wikipedia.org/wiki/Representational_state_transfer). It is a software architectural principle to create loosely coupled web APIs.
555555
556556
workflow
557-
A concept in Plone (and other CMS's) whereby a content object can be in a number of states (private, public, etcetera) and uses transitions to change between them (e.g. "publish", "approve", "reject", "retract"). See the [Plone docs on Workflow](https://docs.plone.org/working-with-content/collaboration-and-workflow/)
557+
A concept in Plone (and other CMS's) whereby a content object can be in a number of states (private, public, etcetera) and uses transitions to change between them (e.g. "publish", "approve", "reject", "retract"). See the [Plone docs on Workflow](https://5.docs.plone.org/working-with-content/collaboration-and-workflow/)
558558
559559
HTTP-Request
560560
HTTP Request

0 commit comments

Comments
 (0)