You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by jw...@apache.org on 2005/05/17 10:29:45 UTC

svn commit: r170549 - /lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java

Author: jwkaltz
Date: Tue May 17 01:29:44 2005
New Revision: 170549

URL: http://svn.apache.org/viewcvs?rev=170549&view=rev
Log:
[minor change] added gregor's explanation on blog entry structuring to comments

Modified:
    lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java

Modified: lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java?rev=170549&r1=170548&r2=170549&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java (original)
+++ lenya/trunk/src/webapp/lenya/pubs/blog/java/src/org/apache/lenya/cms/authoring/NewBlogEntryCreator.java Tue May 17 01:29:44 2005
@@ -64,7 +64,27 @@
     }
 
     /**
-     * Implementation note: ignores parentId; blog has a specific site structure, not depending on parent
+     * The blog publication has a specific site structuring: 
+     * it uses the filesystem hierarchy to group nodes by date.
+     * In particular, the new URI of a blog entry is not dependent upon a "parent", so parameter <code>parentId</code> is unused.
+     *
+     * <p>Example structuring of blog entries:</p>
+     * <ul>
+     *  <li>2004</li>
+     *  <li>2005</li>
+     *    <ul>
+     *      <li>01</li>
+     *      <li>02</li>
+     *      <ul>
+     *        <li>23</li>
+     *        <li>24</li>
+     *          <ul>
+     *            <li>article-one</li>
+     *            <li>article-two</li>
+     *          </ul>
+     *      </ul>
+     *    </ul>
+     * </ul>
      * 
      * @see org.apache.lenya.cms.authoring.NodeCreatorInterface#getNewDocumentURI(String, String, String, String)
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org