Release number bumped, in sync with TUV r1798
git-svn-id: https://svn.libreccm.org/ccm/trunk@80 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
0ac3d69922
commit
43ab4f38c0
|
|
@ -3,7 +3,7 @@
|
|||
name="ccm-cms"
|
||||
prettyName="Red Hat CCM Content Management System"
|
||||
version="6.5.5"
|
||||
release="1"
|
||||
release="2"
|
||||
webapp="ROOT">
|
||||
<ccm:dependencies>
|
||||
<ccm:requires name="ccm-core" version="6.5.5" relation="ge"/>
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ import com.arsdigita.util.parameter.StringArrayParameter;
|
|||
import com.arsdigita.util.parameter.StringParameter;
|
||||
import com.arsdigita.util.parameter.URLParameter;
|
||||
import com.arsdigita.util.StringUtils;
|
||||
|
||||
/**
|
||||
* A record containing server-session scoped configuration properties.
|
||||
*
|
||||
|
|
@ -274,7 +275,8 @@ public final class ContentSectionConfig extends AbstractConfig {
|
|||
Parameter.OPTIONAL, new Boolean(false));
|
||||
|
||||
m_hideAdditionalResourceFields = new BooleanParameter
|
||||
("com.arsdigita.cms.contentassets.ui.RelatedLinkPropertyForm.hideAdditionalResourceFields",
|
||||
("com.arsdigita.cms.contentassets.ui."+
|
||||
"RelatedLinkPropertyForm.hideAdditionalResourceFields",
|
||||
Parameter.REQUIRED, new Boolean(false));
|
||||
|
||||
m_disableFileAssetExtraction = new BooleanParameter
|
||||
|
|
@ -302,13 +304,16 @@ public final class ContentSectionConfig extends AbstractConfig {
|
|||
Parameter.REQUIRED,
|
||||
ItemCategoryExtension.class,
|
||||
ItemCategoryExtension.class);
|
||||
|
||||
m_hideResetLifecycleLink = new BooleanParameter
|
||||
("com.arsdigita.cms.hide_reset_lifecycle_link",
|
||||
Parameter.OPTIONAL, new Boolean(true));
|
||||
|
||||
m_keywordWeight = new IntegerParameter
|
||||
("com.arsdigita.cms.search.intermedia.keyword_weight",
|
||||
Parameter.OPTIONAL,
|
||||
new Integer(1));
|
||||
|
||||
m_titleWeight = new IntegerParameter
|
||||
("com.arsdigita.cms.search.intermedia.title_weight",
|
||||
Parameter.OPTIONAL,
|
||||
|
|
@ -341,6 +346,7 @@ public final class ContentSectionConfig extends AbstractConfig {
|
|||
m_deleteExpiryNotificationsWhenSent = new BooleanParameter
|
||||
("com.arsdigita.cms.delete_expiry_notification_when_sent",
|
||||
Parameter.OPTIONAL, new Boolean(false));
|
||||
|
||||
m_deleteWorkflowNotificationsWhenSent = new BooleanParameter
|
||||
("com.arsdigita.cms.delete_workflow_notification_when_sent",
|
||||
Parameter.OPTIONAL, new Boolean(false));
|
||||
|
|
@ -696,8 +702,8 @@ public final class ContentSectionConfig extends AbstractConfig {
|
|||
}
|
||||
return skipSteps;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* May be used by any content type creation form to decide whether to validate
|
||||
* description field
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
name="ccm-core"
|
||||
prettyName="Core"
|
||||
version="6.5.6"
|
||||
release="1"
|
||||
release="2"
|
||||
webapp="ROOT"
|
||||
buildHooks="build-hooks.xml">
|
||||
<ccm:dependencies>
|
||||
|
|
|
|||
Loading…
Reference in New Issue