Skip to content

Commit b5d0e80

Browse files
authored
Merge branch '6-dev' into issue#1460_1
2 parents b41073a + 6dfe914 commit b5d0e80

File tree

22 files changed

+651
-298
lines changed

22 files changed

+651
-298
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: Test Plone 6 documentation
22

3-
on:
4-
push:
5-
branches-ignore:
6-
- "master"
7-
3+
on: [push, pull_request]
84
jobs:
95
test:
6+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
107
runs-on: ubuntu-latest
118
steps:
129
- uses: actions/checkout@v1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PAPER ?=
1010
SPHINXBUILD = $(realpath bin/sphinx-build)
1111
SPHINXAUTOBUILD = $(realpath bin/sphinx-autobuild)
1212
DOCS_DIR = ./docs/
13-
BUILDDIR = ../_build/
13+
BUILDDIR = ../_build
1414
PAPEROPT_a4 = -D latex_paper_size=a4
1515
PAPEROPT_letter = -D latex_paper_size=letter
1616
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .

coredev/agreement.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,11 @@ A common way to start contributing is to participate in a [Plone sprint](https:/
5353

5454
## Dealing with pull requests on GitHub
5555

56-
Before we can merge a pull request, we have to check that the author has signed the contributor's agreement.
56+
Before we can merge a pull request, we must ensure that the author has signed the Plone Contributor Agreement.
5757

58-
If they're listed in <https://github.com/orgs/plone/teams/developers/members>, the author has signed so we can go ahead and merge.
58+
If they're listed in either the [Developers](https://github.com/orgs/plone/teams/developers/members) or [Contributors](https://github.com/orgs/plone/teams/contributors/members) team, the author has signed the Plone Contributor Agreement, so we can go ahead and merge.
5959

60-
If they aren't listed there, there's still a chance they have signed the contributor's agreement.
60+
If they aren't listed there, they may have signed and returned the Plone Contributor Agreement, but they were not yet added to a team.
61+
You can ask [email protected] to verify.
6162

62-
If they have signed before the move to GitHub, you can ask <[email protected]> to check.
63-
64-
Pull requests without contributor's agreement can only be merged in trivial cases, and only by the release manager.
63+
Pull requests without a signed Plone Contributor Agreement can only be merged in trivial cases, and only by the release manager.

docs/_static/custom.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,4 +461,8 @@ div.viewcode-block:target {
461461
#main-content ol > li > p:nth-child(n+2),
462462
#main-content ul > li > p:nth-child(n+2) {
463463
margin-top: 1em;
464-
}
464+
}
465+
466+
video {
467+
width: 100%;
468+
}

docs/conf.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
r"http://yoursite",
8181
r"https://www.linode.com",
8282
r"https://vhs-ehrenamtsportal.de", # SSLError(SSLCertVerificationError
83-
r"https://github.com/orgs/plone/teams/developers", # requires auth
83+
r"https://github.com/orgs/plone/teams/", # requires auth
8484
r"https://github.com/plone/documentation/issues/new/choose", # requires auth
8585
# Ignore specific anchors
8686
r"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors#Identifying_the_issue",
@@ -100,8 +100,6 @@
100100
r"^/_static/",
101101
]
102102
linkcheck_anchors = True
103-
# linkcheck_timeout = 10
104-
# linkcheck_retries = 2
105103
linkcheck_timeout = 5
106104
linkcheck_retries = 1
107105

@@ -325,7 +323,7 @@ def source_replace(app, docname, source):
325323
# Dict of replacements.
326324
source_replacements = {
327325
"{PLONE_BACKEND_MINOR_VERSION}": "6.0",
328-
"{PLONE_BACKEND_PATCH_VERSION}": "6.0.2",
326+
"{PLONE_BACKEND_PATCH_VERSION}": "6.0.3",
329327
"{NVM_VERSION}": "0.39.3",
330328
}
331329

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)