Added update 6.5.3-6.5.4 to update.xml which I forgot in r1796 or so.

git-svn-id: https://svn.libreccm.org/ccm/trunk@259 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2009-08-29 21:03:52 +00:00
parent c547cf3086
commit ab16357718
15 changed files with 22 additions and 45 deletions

View File

@ -1,4 +1,5 @@
<upgrade> <upgrade>
<version from="6.0.0" to="6.0.1"> <version from="6.0.0" to="6.0.1">
<script sql="ccm-cms/upgrade/::database::-6.0.0-6.0.1.sql"/> <script sql="ccm-cms/upgrade/::database::-6.0.0-6.0.1.sql"/>
</version> </version>

View File

@ -55,16 +55,11 @@ import java.util.List;
* that can be used by content types to reduce code duplication. * that can be used by content types to reduce code duplication.
* *
* @author Rafael H. Schloming &lt;rhs@mit.edu&gt; * @author Rafael H. Schloming &lt;rhs@mit.edu&gt;
* @version $Revision: #12 $ $Date: 2004/08/17 $ * @version $Revision: #754 $ $Date: 2005/09/02 $ $Author: sskracic $
**/ **/
public abstract class AbstractContentTypeLoader extends PackageLoader { public abstract class AbstractContentTypeLoader extends PackageLoader {
public final static String versionId =
"$Id: AbstractContentTypeLoader.java 754 2005-09-02 13:26:17Z sskracic $" +
" by $Author: sskracic $, " +
"$DateTime: 2004/08/17 23:15:09 $";
public void run(final ScriptContext ctx) { public void run(final ScriptContext ctx) {
new KernelExcursion() { new KernelExcursion() {
protected void excurse() { protected void excurse() {

View File

@ -36,12 +36,10 @@ import java.math.BigDecimal;
* *
* @author Randy Graebner (randyg@redhat.com) * @author Randy Graebner (randyg@redhat.com)
* *
* @version $Revision: #9 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: ContentGroup.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public class ContentGroup extends ContentItem { public class ContentGroup extends ContentItem {
public static final String versionId = "$Id: ContentGroup.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
public static final String BASE_DATA_OBJECT_TYPE = public static final String BASE_DATA_OBJECT_TYPE =
"com.arsdigita.cms.contenttypes.ContentGroup"; "com.arsdigita.cms.contenttypes.ContentGroup";

View File

@ -39,12 +39,10 @@ import com.arsdigita.util.Assert;
* *
* @author Randy Graebner (randyg@redhat.com) * @author Randy Graebner (randyg@redhat.com)
* *
* @version $Revision: #9 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: ContentGroupAssociation.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public class ContentGroupAssociation extends ContentItem { public class ContentGroupAssociation extends ContentItem {
protected static final String versionId = "$Id: ContentGroupAssociation.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
public static final String BASE_DATA_OBJECT_TYPE = public static final String BASE_DATA_OBJECT_TYPE =
"com.arsdigita.cms.contenttypes.ContentGroupAssociation"; "com.arsdigita.cms.contenttypes.ContentGroupAssociation";

View File

@ -48,12 +48,13 @@ import java.math.BigDecimal;
/** /**
* This displays a sortable list of items within a given content group * This displays a sortable list of items within a given content group
*
* @version $Id: ContentGroupItemList.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
class ContentGroupItemList extends SortableList { class ContentGroupItemList extends SortableList {
public static final String versionId = "$Id: ContentGroupItemList.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
private static final org.apache.log4j.Logger s_log = private static final org.apache.log4j.Logger s_log =
org.apache.log4j.Logger.getLogger(ContentGroupItemList.class); org.apache.log4j.Logger.getLogger(ContentGroupItemList.class);

View File

@ -36,11 +36,10 @@ import java.math.BigDecimal;
* be nice about it. * be nice about it.
* *
* @author Hugh Brock (hbrock@redhat.com) * @author Hugh Brock (hbrock@redhat.com)
* @version $Id: ImageDisplay.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public class ImageDisplay extends SimpleComponent { public class ImageDisplay extends SimpleComponent {
public static final String versionId = "$Id: ImageDisplay.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
private final ItemSelectionModel m_item; private final ItemSelectionModel m_item;
/** /**

View File

@ -37,8 +37,11 @@ import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletException; import javax.servlet.ServletException;
/**
*
* @version $Id: BaseAsset.java 1571 2007-04-20 15:57:54Z apevec $
*/
class BaseAsset extends ResourceHandlerImpl { class BaseAsset extends ResourceHandlerImpl {
public static final String versionId = "$Id: BaseAsset.java 1571 2007-04-20 15:57:54Z apevec $ by $Author: apevec $, $DateTime: 2004/08/17 23:15:09 $";
private static final Logger s_log = Logger.getLogger(BaseAsset.class); private static final Logger s_log = Logger.getLogger(BaseAsset.class);

View File

@ -101,15 +101,10 @@ import org.apache.log4j.Logger;
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @author Uday Mathur (umathur@arsdigita.com) * @author Uday Mathur (umathur@arsdigita.com)
* @author Jack Chung (flattop@arsdigita.com) * @author Jack Chung (flattop@arsdigita.com)
* @version $Revision: #26 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: CMSDispatcher.java 1795 2009-02-07 10:47:32Z pboy $
*/ */
public class CMSDispatcher implements Dispatcher, ChainedDispatcher { public class CMSDispatcher implements Dispatcher, ChainedDispatcher {
public static final String versionId =
"$Id: CMSDispatcher.java 1795 2009-02-07 10:47:32Z pboy $" +
" by $Author: pboy $, " +
"$DateTime: 2004/08/17 23:15:09 $";
private static Logger s_log = private static Logger s_log =
Logger.getLogger(CMSDispatcher.class); Logger.getLogger(CMSDispatcher.class);

View File

@ -68,13 +68,9 @@ import org.apache.log4j.Logger;
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @author Uday Mathur (umathur@arsdigita.com) * @author Uday Mathur (umathur@arsdigita.com)
* @version $Revision: #30 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: CMSPage.java 1312 2006-09-04 11:26:55Z sskracic $
*/ */
public class CMSPage extends Page implements ResourceHandler { public class CMSPage extends Page implements ResourceHandler {
public static final String versionId =
"$Id: CMSPage.java 1312 2006-09-04 11:26:55Z sskracic $" +
"$Author: sskracic $" +
"$DateTime: 2004/08/17 23:15:09 $";
private static final Logger s_log = Logger.getLogger(CMSPage.class); private static final Logger s_log = Logger.getLogger(CMSPage.class);
@ -289,7 +285,6 @@ public class CMSPage extends Page implements ResourceHandler {
throw new AccessDeniedException( throw new AccessDeniedException(
"You do not have privileges to administer item " + itemID); "You do not have privileges to administer item " + itemID);
} }
} catch (DataObjectNotFoundException donfe) { } catch (DataObjectNotFoundException donfe) {
s_log.warn("Failed to load content item " + itemID); s_log.warn("Failed to load content item " + itemID);
} }

View File

@ -22,12 +22,10 @@ package com.arsdigita.cms.dispatcher;
* <p>An interface for caching objects.</p> * <p>An interface for caching objects.</p>
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @version $Revision: #6 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: Cache.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public interface Cache { public interface Cache {
public static final String versionId = "$Id: Cache.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
/** /**
* Lookup and fetch a cached object. * Lookup and fetch a cached object.
* *

View File

@ -66,13 +66,11 @@ import org.apache.log4j.Logger;
* </ol> * </ol>
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @version $Revision: #18 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: ContentCenterDispatcher.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public class ContentCenterDispatcher extends LockableImpl public class ContentCenterDispatcher extends LockableImpl
implements Dispatcher { implements Dispatcher {
public static final String versionId = "$Id: ContentCenterDispatcher.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
/** /**
* The path of the file that maps resources. * The path of the file that maps resources.
*/ */

View File

@ -40,12 +40,10 @@ import javax.servlet.http.HttpServletRequest;
* *
* *
* @author Karl Goldstein (karlg@arsdigita.com) * @author Karl Goldstein (karlg@arsdigita.com)
* @version $Revision: #10 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: TemplateResolver.java 287 2005-02-22 00:29:02Z sskracic $
**/ **/
public interface TemplateResolver { public interface TemplateResolver {
public static final String versionId = "$Id: TemplateResolver.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
/** /**
* Returns the JSP template filename relative to the webapp * Returns the JSP template filename relative to the webapp
* root. * root.

View File

@ -50,12 +50,10 @@ import java.util.Map;
* System.</p> * System.</p>
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @version $Revision: 1.1.2.2 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: Utilities.java 1546 2007-03-28 14:28:57Z chrisgilbert23 $
*/ */
public class Utilities { public class Utilities {
public static final String versionId = "$Id: Utilities.java 1546 2007-03-28 14:28:57Z chrisgilbert23 $ by $Author: chrisgilbert23 $, $DateTime: 2004/08/17 23:15:09 $";
public final static String CMS_WORKSPACE = WorkspaceInstaller.PACKAGE_KEY; public final static String CMS_WORKSPACE = WorkspaceInstaller.PACKAGE_KEY;
public final static String CMS_SERVICE = ServiceInstaller.PACKAGE_KEY; public final static String CMS_SERVICE = ServiceInstaller.PACKAGE_KEY;

View File

@ -36,12 +36,10 @@ import com.arsdigita.xml.Element;
* formats it as an XML document.</p> * formats it as an XML document.</p>
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @version $Revision: #6 $ $DateTime: 2004/08/17 23:15:09 $ * @version $Id: XMLGenerator.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public interface XMLGenerator { public interface XMLGenerator {
public static final String versionId = "$Id: XMLGenerator.java 287 2005-02-22 00:29:02Z sskracic $ by $Author: sskracic $, $DateTime: 2004/08/17 23:15:09 $";
/** /**
* Generates the XML to render the content panel. * Generates the XML to render the content panel.
* *

View File

@ -38,5 +38,7 @@
phase becomes active. The duration is the length of time that the phase becomes active. The duration is the length of time that the
phase remains active.</p> phase remains active.</p>
<p>Last modified:<br />$Id: $</p>
</body> </body>
</html> </html>