You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/10/08 17:25:34 UTC

[sling-site] branch asf-site updated: Automatic publish of sling site

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

rombert pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/sling-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 561505d  Automatic publish of sling site
561505d is described below

commit 561505d95b6e694839b54a0faa70f0adb57636a5
Author: Robert Munteanu <ro...@gmail.com>
AuthorDate: Sun Oct 8 20:25:29 2017 +0300

    Automatic publish of sling site
---
 documentation/development/release-management.html  |  4 ++--
 .../development/repository-based-development.html  | 28 ++++++++++++++++++++--
 project-information.html                           |  3 ++-
 sitemap.html                                       |  2 +-
 sitemap.xml                                        |  2 +-
 tags/logging.html                                  |  2 +-
 tags/operations.html                               |  2 +-
 7 files changed, 34 insertions(+), 9 deletions(-)

diff --git a/documentation/development/release-management.html b/documentation/development/release-management.html
index 8141982..2c2e01c 100644
--- a/documentation/development/release-management.html
+++ b/documentation/development/release-management.html
@@ -256,7 +256,7 @@ promote the artifacts to the central Maven repository.
     </ol>
   </li>
   <li>Update the releases section on the website at <a href="/releases.html">releases</a>.</li>
-  <li>Update the download page on the website at <a href="/downloads.cgi">downloads</a> to point to the new release.</li>
+  <li>Update the download page on the website at <a href="/downloads.cgi">downloads</a> to point to the new release. For this you need to modify the <a href="https://github.com/apache/sling-site/blob/master/src/main/jbake/templates/downloads.tpl">according Groovy Template</a>.</li>
   <li>If you think that this release is worth a news entry, update the website at <a href="/news.html">news</a></li>
 </ol>
 <p>For the last two tasks, it's better to give the mirrors some time to distribute the uploaded artifacts (one day should be fine). This ensures that once the website (news and download page) is updated, people can actually download the artifacts.</p>
@@ -523,7 +523,7 @@ $ rm the_module-version.jar the_module-version.pom
 </ol>
 <p>For background information about this process see the <a href="http://maven.apache.org/developers/website/deploy-component-reference-documentation.html">Maven components reference documentation</a>.</p></section></div></div>            
             <div class="footer">
-<div class="revisionInfo">Last modified by <span class="author">Carsten Ziegeler</span> on <span class="comment">Wed Oct 4 15:59:45 2017 +0200</span></div>                <p>
+<div class="revisionInfo">Last modified by <span class="author">Konrad Windszus</span> on <span class="comment">Sat Oct 7 12:55:21 2017 +0200</span></div>                <p>
                     Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
                 </p><p>
                     Copyright © 2011-2017 The Apache Software Foundation.
diff --git a/documentation/development/repository-based-development.html b/documentation/development/repository-based-development.html
index b90569c..166c306 100644
--- a/documentation/development/repository-based-development.html
+++ b/documentation/development/repository-based-development.html
@@ -131,9 +131,33 @@
       <td><code>jcr</code>, <code>rep</code> </td>
       <td>A list of namespace prefixes indicating JCR items filtered from being reported as collection members or properties. The default list includes jcr and rep (Jackrabbit internal namespace prefix) items. Do not modify this setting unless you know exactly what you are doing.</td>
     </tr>
+    <tr>
+      <td>Filter Node Types </td>
+      <td>n/a </td>
+      <td>Nodetype names to be used to filter child nodes. A child node can be filtered if the declaring nodetype of its definition is one of the nodetype names specified in the nodetypes Element. E.g. defining rep:root as filtered nodetype would result in <code>jcr:system</code> being hidden but no other child node of the root node, since those are defined by the nodetype nt:unstructered. The default is empty. Do not modify this setting unless you know exactly what you are doing.</td>
+    </tr>
+    <tr>
+      <td>Filter URIs </td>
+      <td>n/a </td>
+      <td>A list of namespace URIs indicating JCR items filtered from being reported as collection members or properties. The default list is empty. Do not modify this setting unless you know exactly what you are doing.</td>
+    </tr>
+    <tr>
+      <td>Collection Primary Type </td>
+      <td><code>sling:Folder</code> </td>
+      <td>The JCR Primary Node Type to assign to nodes created to reflect WebDAV collections. You may name any primary node type here, provided it allows the creation of nodex of this type and the defined Non-Collection Primary Type below it.</td>
+    </tr>
+    <tr>
+      <td>Non-Collection Primary Type </td>
+      <td><code>nt:file</code> </td>
+      <td>The JCR Primary Node Type to assign to nodes created to reflect WebDAV non-collection resources. You may name any primary node type here, provided the node type is allowed to be created below nodes of the type defined for the Collection Primary Type and that a child node with the name <code>jcr:content</code> may be created below the non-collection resource whose type is defined by the Content Primary Type.</td>
+    </tr>
+    <tr>
+      <td>Content Primary Type </td>
+      <td><code>nt:resource</code> </td>
+      <td>The JCR Primary Node Type to assign to the jcr:content child node of a WebDAV non-collection resource. You may name any primary node type here, provided the node type is allowed to be created as the jcr:content child node of the node type defined by the Non-Collection Primary Type. In addition the node type must allow at least the following properties: jcr:data (binary), jcr:lastModified (date), and jcr:mimeType (string).</td>
+    </tr>
   </tbody>
 </table>
-<p>Filter Node Types | -- | Nodetype names to be used to filter child nodes. A child node can be filtered if the declaring nodetype of its definition is one of the nodetype names specified in the nodetypes Element. E.g. defining rep:root as filtered nodetype would result in <code>jcr:system</code> being hidden but no other child node of the root node, since those are defined by the nodetype nt:unstructered. The default is empty. Do not modify this setting unless you know exactly what you [...]
 <h2><a href="#advanced-technical-details" name="advanced-technical-details">Advanced Technical Details</a></h2>
 <p>Since the Jackrabbit Simple WebDAV Servlet is originally configured using an XML configuration file, which provides a great deal of flexibility, the integration into Sling had to assume some simplifications, of which some of the above parameters are part:</p>
 <h3><a href="#iomanager" name="iomanager">IOManager</a></h3>
@@ -149,7 +173,7 @@
 <h1><a href="#eclipse-plugin-for-jcr" name="eclipse-plugin-for-jcr">Eclipse plugin for JCR</a></h1>
 <p>see <a href="/documentation/development/ide-tooling.html">Sling IDE Tooling</a></p></section></div></div>            
             <div class="footer">
-<div class="revisionInfo">Last modified by <span class="author">Bertrand Delacretaz</span> on <span class="comment">Fri Sep 29 15:57:01 2017 +0200</span></div>                <p>
+<div class="revisionInfo">Last modified by <span class="author">Konrad Windszus</span> on <span class="comment">Sat Oct 7 12:39:13 2017 +0200</span></div>                <p>
                     Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
                 </p><p>
                     Copyright © 2011-2017 The Apache Software Foundation.
diff --git a/project-information.html b/project-information.html
index c0ad1c2..948241d 100644
--- a/project-information.html
+++ b/project-information.html
@@ -135,6 +135,7 @@
 <p>The issue tracker can be found at <a href="http://issues.apache.org/jira/browse/SLING">http://issues.apache.org/jira/browse/SLING</a></p>
 <h2><a href="#source-repository" name="source-repository">Source Repository</a></h2>
 <p>This project uses Subversion to manage its source code. Instructions on Subversion use can be found at <a href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</p>
+<p>We are migration to a Git setup, stay tuned for updates.</p>
 <h3><a href="#web-access" name="web-access">Web Access</a></h3>
 <p>The following is a link to the online source repository.</p>
 <pre><code>http://svn.apache.org/viewvc/sling/trunk
@@ -195,7 +196,7 @@ http-proxy-port = 3128
   <li>Watch a <a href="http://s.apache.org/cms-anonymous-tutorial">video tutorial by Rob Weir for anonymous users</a>.</li>
 </ol></section></div></div>            
             <div class="footer">
-<div class="revisionInfo">Last modified by <span class="author">Bertrand Delacretaz</span> on <span class="comment">Fri Sep 29 15:36:08 2017 +0200</span></div>                <p>
+<div class="revisionInfo">Last modified by <span class="author">Robert Munteanu</span> on <span class="comment">Sun Oct 8 20:19:31 2017 +0300</span></div>                <p>
                     Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
                 </p><p>
                     Copyright © 2011-2017 The Apache Software Foundation.
diff --git a/sitemap.html b/sitemap.html
index a0698d6..2bd1396 100644
--- a/sitemap.html
+++ b/sitemap.html
@@ -151,8 +151,8 @@
                         <li><a href="/documentation/development/jsr-305.html">Leveraging JSR-305 null annotations to prevent NullPointerExceptions</a></li>
                         <li><a href="/links.html">Links</a></li>
                         <li><a href="/documentation/bundles/log-tracers.html">Log Tracer</a></li>
-                        <li><a href="/documentation/legacy/logging.html">Logging</a></li>
                         <li><a href="/documentation/development/logging.html">Logging</a></li>
+                        <li><a href="/documentation/legacy/logging.html">Logging</a></li>
                         <li><a href="/documentation/bundles/mime-type-support-commons-mime.html">MIME Type Support (commons.mime and commons.contentdetection)</a></li>
                         <li><a href="/documentation/bundles/managing-permissions-jackrabbit-accessmanager.html">Managing permissions (jackrabbit.accessmanager)</a></li>
                         <li><a href="/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.html">Managing users and groups (jackrabbit.usermanager)</a></li>
diff --git a/sitemap.xml b/sitemap.xml
index f0eb161..3c02ae2 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -149,8 +149,8 @@
                         <li><a href="/documentation/development/jsr-305.html">Leveraging JSR-305 null annotations to prevent NullPointerExceptions</a></li>
                         <li><a href="/links.html">Links</a></li>
                         <li><a href="/documentation/bundles/log-tracers.html">Log Tracer</a></li>
-                        <li><a href="/documentation/legacy/logging.html">Logging</a></li>
                         <li><a href="/documentation/development/logging.html">Logging</a></li>
+                        <li><a href="/documentation/legacy/logging.html">Logging</a></li>
                         <li><a href="/documentation/bundles/mime-type-support-commons-mime.html">MIME Type Support (commons.mime and commons.contentdetection)</a></li>
                         <li><a href="/documentation/bundles/managing-permissions-jackrabbit-accessmanager.html">Managing permissions (jackrabbit.accessmanager)</a></li>
                         <li><a href="/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.html">Managing users and groups (jackrabbit.usermanager)</a></li>
diff --git a/tags/logging.html b/tags/logging.html
index 2603686..043b2fd 100644
--- a/tags/logging.html
+++ b/tags/logging.html
@@ -76,7 +76,7 @@
                 <tags/>
                 
             </div><tableOfContents/>
-<div class="taglinks"><h2>Tagged with 'logging'</h2><div class="taglink"><a href="/documentation/bundles/log-tracers.html">Log Tracer</a></div><div class="taglink"><a href="/documentation/legacy/logging.html">Logging</a></div><div class="taglink"><a href="/documentation/development/logging.html">Logging</a></div><div class="tags"><h2>All tags</h2><span class="allTagsLink"><a href="/tags/adaptTo.html" class="label">adaptTo<span class="badge">1</span></a></span>
+<div class="taglinks"><h2>Tagged with 'logging'</h2><div class="taglink"><a href="/documentation/bundles/log-tracers.html">Log Tracer</a></div><div class="taglink"><a href="/documentation/development/logging.html">Logging</a></div><div class="taglink"><a href="/documentation/legacy/logging.html">Logging</a></div><div class="tags"><h2>All tags</h2><span class="allTagsLink"><a href="/tags/adaptTo.html" class="label">adaptTo<span class="badge">1</span></a></span>
                     <span class="allTagsLink"><a href="/tags/api.html" class="label">api<span class="badge">3</span></a></span>
                     <span class="allTagsLink"><a href="/tags/authentication.html" class="label">authentication<span class="badge">8</span></a></span>
                     <span class="allTagsLink"><a href="/tags/bundles.html" class="label">bundles<span class="badge">3</span></a></span>
diff --git a/tags/operations.html b/tags/operations.html
index 32c9500..34f9735 100644
--- a/tags/operations.html
+++ b/tags/operations.html
@@ -76,7 +76,7 @@
                 <tags/>
                 
             </div><tableOfContents/>
-<div class="taglinks"><h2>Tagged with 'operations'</h2><div class="taglink"><a href="/documentation/development/client-request-logging.html">Client Request Logging</a></div><div class="taglink"><a href="/documentation/tutorials-how-tos/installing-and-upgrading-bundles.html">Installing and Upgrading Bundles</a></div><div class="taglink"><a href="/documentation/legacy/logging.html">Logging</a></div><div class="taglink"><a href="/documentation/development/logging.html">Logging</a></div><div [...]
+<div class="taglinks"><h2>Tagged with 'operations'</h2><div class="taglink"><a href="/documentation/development/client-request-logging.html">Client Request Logging</a></div><div class="taglink"><a href="/documentation/tutorials-how-tos/installing-and-upgrading-bundles.html">Installing and Upgrading Bundles</a></div><div class="taglink"><a href="/documentation/development/logging.html">Logging</a></div><div class="taglink"><a href="/documentation/legacy/logging.html">Logging</a></div><div [...]
                     <span class="allTagsLink"><a href="/tags/api.html" class="label">api<span class="badge">3</span></a></span>
                     <span class="allTagsLink"><a href="/tags/authentication.html" class="label">authentication<span class="badge">8</span></a></span>
                     <span class="allTagsLink"><a href="/tags/bundles.html" class="label">bundles<span class="badge">3</span></a></span>

-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].