Diverser Kleinkram.
git-svn-id: https://svn.libreccm.org/ccm/trunk@1742 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
de45a6eb0c
commit
0e02200d73
|
|
@ -35,9 +35,12 @@ import java.util.List;
|
||||||
|
|
||||||
public class FormItemLoader extends AbstractContentTypeLoader {
|
public class FormItemLoader extends AbstractContentTypeLoader {
|
||||||
|
|
||||||
|
/** List of content sections to install Forms. An empty list installs
|
||||||
|
* Forms into the default (first) content section only.
|
||||||
|
*/
|
||||||
private final Parameter m_contentSections = new StringParameter
|
private final Parameter m_contentSections = new StringParameter
|
||||||
("com.arsdigita.cms.formbuilder.FormItem.sections",
|
("com.arsdigita.cms.formbuilder.FormItem.sections",
|
||||||
Parameter.REQUIRED, "content");
|
Parameter.REQUIRED, "");
|
||||||
|
|
||||||
{
|
{
|
||||||
register(m_contentSections);
|
register(m_contentSections);
|
||||||
|
|
@ -52,6 +55,15 @@ public class FormItemLoader extends AbstractContentTypeLoader {
|
||||||
return TYPES;
|
return TYPES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overwrites parents class's method to predefine into which content sections
|
||||||
|
* Forms should get installed.
|
||||||
|
* An empty list (the default parents's implementation) gets Forms installed
|
||||||
|
* into the default section only.
|
||||||
|
*
|
||||||
|
* @return Array of content sections Forms should be installed into
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
public List getContentSections() {
|
public List getContentSections() {
|
||||||
List result = new ArrayList(1);
|
List result = new ArrayList(1);
|
||||||
result.add(get(m_contentSections));
|
result.add(get(m_contentSections));
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,6 @@
|
||||||
# Version: $Revision: #1 $ $DateTime: 2003/12/01 17:44:38 $
|
# Version: $Revision: #1 $ $DateTime: 2003/12/01 17:44:38 $
|
||||||
|
|
||||||
com.arsdigita.cms.formbuilder.FormItem.sections.title = Content Sections
|
com.arsdigita.cms.formbuilder.FormItem.sections.title = Content Sections
|
||||||
com.arsdigita.cms.formbuilder.FormItem.sections.purpose = The list of content sections into which FormItem should be installed
|
com.arsdigita.cms.formbuilder.FormItem.sections.purpose = A comma separated list of content sections into which FormItem should be installed. An empty list (the default) installs into the default section.
|
||||||
com.arsdigita.cms.formbuilder.FormItem.sections.example = forms,surveys
|
com.arsdigita.cms.formbuilder.FormItem.sections.example = forms,surveys
|
||||||
com.arsdigita.cms.formbuilder.FormItem.sections.format = [string]
|
com.arsdigita.cms.formbuilder.FormItem.sections.format = [string]
|
||||||
|
|
|
||||||
|
|
@ -39,9 +39,12 @@ public class FormSectionItemLoader extends AbstractContentTypeLoader {
|
||||||
"/WEB-INF/content-types/com/arsdigita/cms/formbuilder/FormSectionItem.xml"
|
"/WEB-INF/content-types/com/arsdigita/cms/formbuilder/FormSectionItem.xml"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** List of content sections to install FormSection. An empty list installs
|
||||||
|
* Forms into the default (first) content section only.
|
||||||
|
*/
|
||||||
private final Parameter m_contentSections = new StringParameter
|
private final Parameter m_contentSections = new StringParameter
|
||||||
("com.arsdigita.cms.formbuilder.FormSectionItem.sections",
|
("com.arsdigita.cms.formbuilder.FormSectionItem.sections",
|
||||||
Parameter.REQUIRED, "content");
|
Parameter.REQUIRED, "");
|
||||||
|
|
||||||
{
|
{
|
||||||
register(m_contentSections);
|
register(m_contentSections);
|
||||||
|
|
@ -52,6 +55,15 @@ public class FormSectionItemLoader extends AbstractContentTypeLoader {
|
||||||
return TYPES;
|
return TYPES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overwrites parents class's method to predefine into which content sections
|
||||||
|
* Forms should get installed.
|
||||||
|
* An empty list (the default parents's implementation) gets Forms installed
|
||||||
|
* into the default section only.
|
||||||
|
*
|
||||||
|
* @return Array of content sections Forms should be installed into
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
public List getContentSections() {
|
public List getContentSections() {
|
||||||
List result = new ArrayList(1);
|
List result = new ArrayList(1);
|
||||||
result.add(get(m_contentSections));
|
result.add(get(m_contentSections));
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,6 @@
|
||||||
# Version: $Revision: #1 $ $DateTime: 2003/12/01 17:44:38 $
|
# Version: $Revision: #1 $ $DateTime: 2003/12/01 17:44:38 $
|
||||||
|
|
||||||
com.arsdigita.cms.formbuilder.FormSectionItem.sections.title = Content Sections
|
com.arsdigita.cms.formbuilder.FormSectionItem.sections.title = Content Sections
|
||||||
com.arsdigita.cms.formbuilder.FormSectionItem.sections.purpose = The list of content sections into which FormSectionItem should be installed
|
com.arsdigita.cms.formbuilder.FormSectionItem.sections.purpose = A comma separated list of content sections into which FormSectionItem should be installed. An empty list (the default) installs into the default section.
|
||||||
com.arsdigita.cms.formbuilder.FormSectionItem.sections.example = forms,surveys
|
com.arsdigita.cms.formbuilder.FormSectionItem.sections.example = forms,surveys
|
||||||
com.arsdigita.cms.formbuilder.FormSectionItem.sections.format = [string]
|
com.arsdigita.cms.formbuilder.FormSectionItem.sections.format = [string]
|
||||||
|
|
|
||||||
|
|
@ -294,9 +294,3 @@ com.arsdigita.cms.image_browser.thumbnail_max_height.title=Max thumbnails height
|
||||||
com.arsdigita.cms.image_browser.thumbnail_max_height.purpose=Set the maximum height of the thumbnail in ImageBrowserr
|
com.arsdigita.cms.image_browser.thumbnail_max_height.purpose=Set the maximum height of the thumbnail in ImageBrowserr
|
||||||
com.arsdigita.cms.image_browser.thumbnail_max_height.example=150
|
com.arsdigita.cms.image_browser.thumbnail_max_height.example=150
|
||||||
com.arsdigita.cms.image_browser.thumbnail_max_height.format=[integer]
|
com.arsdigita.cms.image_browser.thumbnail_max_height.format=[integer]
|
||||||
|
|
||||||
com.arsdigita.cms.xx.title=
|
|
||||||
com.arsdigita.cms.xx.purpose=
|
|
||||||
com.arsdigita.cms.xx.example=
|
|
||||||
com.arsdigita.cms.xx.format=[string]
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
<define:component name="portalWorkspace"
|
<define:component name="portalWorkspace"
|
||||||
classname="com.arsdigita.london.portal.ui.WorkspaceViewer"/>
|
classname="com.arsdigita.london.portal.ui.WorkspaceViewer"/>
|
||||||
<jsp:scriptlet>
|
<jsp:scriptlet>
|
||||||
((com.arsdigita.london.portal.ui.WorkspaceViewer) portalWorkspace).setWorkspaceModel(new CategoryPortalSelectionModel());
|
((com.arsdigita.portalworkspace.ui.WorkspaceViewer) portalWorkspace).setWorkspaceModel(new CategoryPortalSelectionModel());
|
||||||
</jsp:scriptlet>
|
</jsp:scriptlet>
|
||||||
</define:page>
|
</define:page>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,6 @@ com.arsdigita.navigation.inherit_templates.purpose=If no template for category,
|
||||||
com.arsdigita.navigation.inherit_templates.example=true|false
|
com.arsdigita.navigation.inherit_templates.example=true|false
|
||||||
com.arsdigita.navigation.inherit_templates.format=[boolean]
|
com.arsdigita.navigation.inherit_templates.format=[boolean]
|
||||||
|
|
||||||
com.arsdigita.navigation.default_content_section_url.title=Default Content Section URL
|
|
||||||
com.arsdigita.navigation.default_content_section_url.purpose=The URL of the default content section
|
|
||||||
com.arsdigita.navigation.default_content_section_url.example=/content/
|
|
||||||
com.arsdigita.navigation.default_content_section_url.format=[string]
|
|
||||||
|
|
||||||
com.arsdigita.navigation.related_items_context.title=Related items category use context
|
com.arsdigita.navigation.related_items_context.title=Related items category use context
|
||||||
com.arsdigita.navigation.related_items_context.purpose=The category use context for the related items query
|
com.arsdigita.navigation.related_items_context.purpose=The category use context for the related items query
|
||||||
com.arsdigita.navigation.related_items_context.example=subject
|
com.arsdigita.navigation.related_items_context.example=subject
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue