You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/03/24 03:14:13 UTC

[sling-org-apache-sling-app-cms] branch master updated (08b4e8e -> 5a9ae00)

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git.


    from 08b4e8e  Updating the document title based on the currently active breacrumb item
     new 5b16794  Adding a service to update the page / file last modified user / date when content resources are updated
     new 3c07da7  Adding search and recent content boxes to the home page
     new 5a9ae00  Fixing where there was a popup when adding or deleting a component from a container

The 425 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java/org/apache/sling/cms/CMSConstants.java    |   6 +
 .../main/java/org/apache/sling/cms/Component.java  |   7 +
 .../core/internal/filters/EditIncludeFilter.java   | 157 +++++++++----------
 .../internal/listeners/AutoVersioningListener.java |   4 +-
 .../cms/core/internal/models/ComponentImpl.java    |  11 ++
 .../operations/TouchLastModifiedPostOperation.java |  94 ++++++++++++
 .../apache/sling/cms/core/models/StartContent.java | 128 ++++++++++++++++
 .../apache/sling/cms/core/models/package-info.java |   2 +-
 ui/src/main/frontend/gulpfile.js                   |   7 +-
 ui/src/main/frontend/package.json                  |  60 ++++----
 ui/src/main/frontend/src/js/cms.js                 |   3 +-
 ui/src/main/frontend/src/js/editor.js              |   2 +
 .../components/cms/startcontent/search.jsp         |  51 +++++++
 .../components/cms/startcontent/startcontent.jsp   |  71 +++++++++
 .../sling-cms/components/general/container.json    |   5 +
 .../components/general/container/container.jsp     |  48 +++---
 .../components/general/richtext/edit.json          |  28 ++--
 .../jcr_root/libs/sling-cms/content/start.json     |   4 +
 .../resources/jcr_root/libs/sling-cms/i18n.json    |  30 ++++
 .../resources/jcr_root/oak%3Aindex/published.json  |  14 +-
 .../jcr_root/oak%3Aindex/slingAssetLucene.json     |  57 -------
 .../jcr_root/oak%3Aindex/slingFileLucene.json      |  61 ++++++++
 .../jcr_root/oak%3Aindex/slingPageLucene.json      | 166 +++++++++++----------
 .../jcr_root/oak%3Aindex/slingTaxonomy.json        |  58 +++----
 24 files changed, 745 insertions(+), 329 deletions(-)
 create mode 100644 core/src/main/java/org/apache/sling/cms/core/internal/operations/TouchLastModifiedPostOperation.java
 create mode 100644 core/src/main/java/org/apache/sling/cms/core/models/StartContent.java
 create mode 100644 ui/src/main/resources/jcr_root/libs/sling-cms/components/cms/startcontent/search.jsp
 create mode 100644 ui/src/main/resources/jcr_root/libs/sling-cms/components/cms/startcontent/startcontent.jsp
 create mode 100644 ui/src/main/resources/jcr_root/libs/sling-cms/components/general/container.json
 delete mode 100644 ui/src/main/resources/jcr_root/oak%3Aindex/slingAssetLucene.json
 create mode 100644 ui/src/main/resources/jcr_root/oak%3Aindex/slingFileLucene.json