This is an automated email from the ASF dual-hosted git repository.
jeb pushed a change to branch SLING-7900
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git.
discard d9e8f10 SLING-7900 UI dynamic file actions
discard b234f54 removed additional '}'
discard 4912da2 UI Updates - Content Browsing
discard 43b079f SLING-7900 set core to java 8
discard c6efb33 SLING-7900 UI changes
discard c05d366 table updates and modals
discard c56383e initial refactoring of content breadcrumbs and content table
discard df8ec3a initial changes
add 4e5861e FIxing the gradient to display full height
add 3b46e9e Fixing where the search button wasn't appearing for the
pathfield
add ab9804e [maven-release-plugin] prepare release
org.apache.sling.cms-0.10.0
add f865067 [maven-release-plugin] prepare for next development iteration
add 2df5b51 Updating to have the label class
add 3ad152a Fixed an issue where the ComponentManagerImpl didn't
implement ComponentManager
new 4fe0394 initial changes
new bea0d8c initial refactoring of content breadcrumbs and content table
new 47570a2 table updates and modals
new e478489 SLING-7900 UI changes
new 5abf31c SLING-7900 set core to java 8
new 9778217 UI Updates - Content Browsing
new 53610e9 removed additional '}'
new 4953d51 SLING-7900 UI dynamic file actions
new 62f5632 SLING-7900 UI Updates
new 0eb5a05 side navigation
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (d9e8f10)
\
N -- N -- N refs/heads/SLING-7900 (0eb5a05)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 10 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:
api/pom.xml | 6 +-
builder/pom.xml | 2 +-
core/pom.xml | 12 +-
.../core/internal/models/ComponentManagerImpl.java | 8 +-
.../apache/sling/cms/core/models/BaseModel.java | 86 ++++++
.../{AvailableActions.java => Action.java} | 62 +++--
.../{AvailableActions.java => Actions.java} | 95 +++----
.../cms/core/models/components/Breadcrumbs.java | 37 +--
.../cms/core/models/components/ContentTable.java | 7 +-
.../models/components/column/LastModified.java | 63 +++++
.../components/{SiteNav.java => column/Name.java} | 63 +++--
pom.xml | 6 +-
reference/pom.xml | 8 +-
ui/pom.xml | 8 +-
ui/src/main/frontend/src/scss/cms.scss | 2 +-
ui/src/main/resources/jcr_root/conf/global.json | 276 +++++++++----------
ui/src/main/resources/jcr_root/content.json | 7 -
.../content/sling-cms/errorhandling/401.json | 34 +--
.../content/sling-cms/errorhandling/403.json | 34 +--
.../content/sling-cms/errorhandling/404.json | 34 +--
.../content/sling-cms/errorhandling/default.json | 34 +--
.../jcr_root/libs/sling-cms/actions/nt%3Afile.json | 7 +-
.../{sling%3ASite.json => sling%3AConfig.json} | 10 +-
.../libs/sling-cms/actions/sling%3AFile.json | 7 +-
.../libs/sling-cms/actions/sling%3AFolder.json | 4 +-
.../libs/sling-cms/actions/sling%3AMapping.json | 1 +
.../sling-cms/actions/sling%3AOrderedFolder.json | 6 +-
.../libs/sling-cms/actions/sling%3APage.json | 3 +-
.../libs/sling-cms/actions/sling%3ASite.json | 4 +-
.../{sling%3AFolder.json => sling%3ATaxonomy.json} | 9 +-
.../availablecomponenttypes.jsp | 2 +-
.../breadcrumbmenu.jsp} | 2 -
.../edit.json | 0
.../components/cms/columns/actions/actions.jsp | 35 +--
.../cms/columns/lastmodified/lastmodified.jsp | 10 +-
.../sling-cms/components/cms/columns/name/name.jsp | 5 +-
.../cms/contentactions/contentactions.jsp | 32 ++-
.../editconfig.jsp => resource/action/action.jsp} | 11 +-
.../components/cms/staticnav/staticnav.jsp | 6 +-
.../components/editor/fields/path/path.jsp | 2 +-
.../libs/sling-cms/components/pages/base/nav.jsp | 1 -
.../sling-cms/content/actions/create/config.json | 5 -
.../content/actions/create/sitegroup.json | 129 +++++----
.../sling-cms/content/actions/create/taxonomy.json | 5 -
.../sling-cms/content/actions/create/template.json | 5 -
.../libs/sling-cms/content/actions/edit/site.json | 121 ++++----
.../sling-cms/content/actions/edit/sitegroup.json | 5 -
.../sling-cms/content/actions/edit/taxonomy.json | 2 +-
.../content/actions/optimize/optimize.json | 7 +-
.../libs/sling-cms/content/config/edit.json | 46 ++--
.../libs/sling-cms/content/config/list.json | 12 +-
.../libs/sling-cms/content/mappings/list.json | 304 ++++++++++-----------
.../libs/sling-cms/content/site/content.json | 11 +-
.../libs/sling-cms/content/site/sites.json | 21 +-
.../libs/sling-cms/content/siteconfig/editor.json | 71 ++---
.../libs/sling-cms/content/static/content.json | 9 +-
.../libs/sling-cms/content/taxonomy/list.json | 24 +-
57 files changed, 938 insertions(+), 880 deletions(-)
create mode 100644
core/src/main/java/org/apache/sling/cms/core/models/BaseModel.java
copy
core/src/main/java/org/apache/sling/cms/core/models/components/{AvailableActions.java
=> Action.java} (50%)
rename
core/src/main/java/org/apache/sling/cms/core/models/components/{AvailableActions.java
=> Actions.java} (68%)
create mode 100644
core/src/main/java/org/apache/sling/cms/core/models/components/column/LastModified.java
copy
core/src/main/java/org/apache/sling/cms/core/models/components/{SiteNav.java =>
column/Name.java} (63%)
delete mode 100644 ui/src/main/resources/jcr_root/content.json
copy ui/src/main/resources/jcr_root/libs/sling-cms/actions/{sling%3ASite.json
=> sling%3AConfig.json} (69%)
create mode 100644
ui/src/main/resources/jcr_root/libs/sling-cms/actions/sling%3AMapping.json
copy
ui/src/main/resources/jcr_root/libs/sling-cms/actions/{sling%3AFolder.json =>
sling%3ATaxonomy.json} (69%)
copy
ui/src/main/resources/jcr_root/libs/sling-cms/components/cms/{contentbreadcrumb/contentbreadcrumb.jsp
=> breadcrumbmenu/breadcrumbmenu.jsp} (96%)
copy
ui/src/main/resources/jcr_root/libs/sling-cms/components/cms/{contentbreadcrumb
=> breadcrumbmenu}/edit.json (100%)
copy
ui/src/main/resources/jcr_root/libs/sling-cms/components/cms/{editconfig/editconfig.jsp
=> resource/action/action.jsp} (69%)