You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/04/26 14:31:45 UTC

svn commit: r532727 - /lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java

Author: andreas
Date: Thu Apr 26 05:31:43 2007
New Revision: 532727

URL: http://svn.apache.org/viewvc?view=rev&rev=532727
Log:
Removed fake check-in when initializing the revision history of a document. I guess that was some legacy code, creating docs still works fine. This should fix bug 42242.

Modified:
    lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java

Modified: lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java
URL: http://svn.apache.org/viewvc/lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java?view=diff&rev=532727&r1=532726&r2=532727
==============================================================================
--- lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java (original)
+++ lenya/trunk/src/modules/sourcerepository/java/src/org/apache/lenya/cms/repository/SourceNodeRCML.java Thu Apr 26 05:31:43 2007
@@ -82,21 +82,8 @@
         this.manager = manager;
 
         if (!SourceUtil.exists(getRcmlSourceUri(), manager)) {
-            // The rcml file does not yet exist, so we create it now...
-            //
-            long lastModified = 0;
-            if (node.exists()) {
-                lastModified = node.getLastModified();
-            }
-
+            // The rcml file does not yet exist, so we create it now
             initDocument();
-
-            // Create a "fake" checkin entry so it looks like the
-            // system checked the document in. We use the filesystem
-            // modification date as checkin time.
-            //
-            checkOutIn(SourceNodeRCML.ci, RevisionController.systemUsername, lastModified, false);
-
             write();
         }
     }



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