Skip to content

Commit ce658ba

Browse files
committed
Merge branch 'main' into add-likes
2 parents 98182b0 + ee57e6d commit ce658ba

330 files changed

Lines changed: 5468 additions & 5601 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,15 @@ backend-create-site: ## Create a Plone site with default content
9494
backend-update-example-content: ## Export example content inside package
9595
$(MAKE) -C "./backend/" update-example-content
9696

97+
.PHONY: backend-update-example-content-bug-workaround
98+
backend-update-example-content-bug-workaround: ## Export example content inside package
99+
# portlets.json always changes without any actual content amendments
100+
git checkout origin/main backend/src/kitconcept/intranet/distributions/intranet/content/portlets.json
101+
# RSS block example content is deleted without any actual deletion
102+
git checkout origin/main backend/src/kitconcept/intranet/distributions/intranet/content/content/7c7cf1aae1a9431db3a706615a410cdc/data.json
103+
# "remoteUrl" starts with "http://nohost/" (https://github.com/plone/plone.exportimport/issues/73)
104+
git checkout origin/main backend/src/kitconcept/intranet/distributions/intranet/content/content/195d96ca9952493cbffa69cda040b8b3/data.json
105+
97106
.PHONY: backend-delete-and-create-site
98107
backend-delete-and-create-site: ## Remove all content and create site
99108
$(MAKE) -C "./backend/" remove-data

backend/Dockerfile.acceptance

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ RUN --mount=type=cache,target=/root/.cache \
3535
--no-editable
3636

3737
# Move skeleton files to /app
38+
ENV SITE_DEFAULT_LANGUAGE=en
3839
RUN <<EOT
3940
mv /app_base/* /app
4041
rm -Rf /app_base

backend/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ update-example-content: $(VENV_FOLDER) ## Export example content inside package
104104
.PHONY: cleanup-example-content
105105
cleanup-example-content: $(VENV_FOLDER) ## Remove invalid references to http://nohost/Plone
106106
@echo "$(GREEN)==> Remove invalid references to http://nohost/Plone $(RESET)"
107-
@find $(EXAMPLE_CONTENT_FOLDER)/content -type f -name 'data.json' -exec sed -i 's/http:\/\/nohost\/Plone\//\//' {} \;
107+
@find $(EXAMPLE_CONTENT_FOLDER)/content -type f -name 'data.json' -exec sed -i '' -e 's#http://nohost/Plone/#/#g' {} \;
108108

109109
# QA
110110
.PHONY: lint

backend/news/+core1a22.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed regression in person grid teasers in edit mode. @sneridagh

backend/news/+core1a23.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed slider flag position in simple variant, and calendar block icon. @sneridagh

backend/news/+example_org.internal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add example content for organisational unit. @tisto

backend/news/+german.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Create new sites in German by default. @davisagli

backend/news/+logo.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix setting the logo on the Plone site root `logo` field. @ericof

backend/news/+profilepic.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Change name of person_picture_aspect_ratio setting. @sneridagh

backend/news/+registry.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix registry settings after site creation. @ericof

0 commit comments

Comments
 (0)