Skip Headers
Oracle® Fusion Middleware Technical Reference Guide for Site Studio
11g Release 1 (11.1.1)

Part Number E10615-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

16 Manager Settings File

This section covers the following topics:

16.1 About the Manager Settings File

The manager settings file is an XML file that provides a number of configuration options that site designers can use to control the available features in Manager.

Designers can modify a number of settings in this file using a Form view that appears when the file is edited from the Site Assets pane. More advanced settings can be made when editing this file in Source view.

16.2 <ssm:settings> Tag

The <ssm:settings> tag is the root XML element within a Manager Settings file.

Parameters

Child Tags

The <ssm:settings> tag can contain the following optional child tags:

16.3 <ssm:general> Tag

The <ssm:general> tag contains general purpose configuration settings.

Parameters

Child Tags

The <ssm:general> tag contains no child tags.

16.4 <ssm:addSection> Tag

The <ssm:addSection> tag contains configuration settings for the "Add New Section" feature.

Parameters

Child Tags

The <ssm:addSection> tag can contain the following optional child tags to control the behavior of the "Add New Section" feature:

16.5 <ssm:removeSection> Tag

The <ssm:removeSection> tag contains configuration settings for the "Remove Section" feature.

Parameters

Child Tags

The <ssm:removeSection> tag contains no child tags.

16.6 <ssm:moveSection> Tag

The <ssm:moveSection> tag contains configuration settings for the "Move Section" feature (including drag & drop moves).

Parameters

Child Tags

The <ssm:moveSection> tag contains no child tags.

16.7 <ssm:setErrorHandler> Tag

The <ssm:setErrorHandler> tag contains configuration settings for the "Set Error Handler" feature.

Parameters

Child Tags

The <ssm:setErrorHandler> tag contains no child tags.

16.8 <ssm:editProperties> Tag

The <ssm:editProperties> tag contains configuration settings for editing the standard section properties.

Parameters

Child Tags

The <ssm:editProperties> tag can contain the following optional child tags:

16.9 <ssm:editCustomProperties> Tag

The <ssm:editCustomProperties> tag contains configuration settings for the "Custom Properties" feature.

Parameters

Child Tags

The <ssm:editCustomProperties> tag contains no child tags.

16.10 <ssm:primaryLayout> Tag

The <ssm:primaryLayout> tag contains configuration settings to control the behavior of the "Choose Primary Layout" feature.

Parameters

Child Tags

The <ssm:primaryLayout> tag can contain the following optional child tags.

16.11 <ssm:secondaryLayout> Tag

The <ssm:secondaryLayout> tag contains configuration settings to control the behavior of the "Choose Secondary Layout" feature.

Parameters

Child Tags

The <ssm:secondaryLayout> tag can contain the following optional child tags.

16.12 <ssm:sectionOverride> Tag

The <ssm:sectionOverride> tag contains configuration settings for a particular Web site section that override the default settings described earlier:

Parameters

Child Tags

The <ssm:sectionOverride> tag can contain any of the following optional child tags. The details of which have already been described in these sections:

The parameters and contents of the subsections within the <ssm:sectionOverride> are identical to their use in the general case with the following exception:

16.13 Example Manager Settings File

<?xml version='1.0' encoding='utf-8' ?>
<ssm:settings xmlns:ssm="http://www.stellent.com/sitestudio/managersettings/">
     <ssm:general contributorOnly="false"
          autoManage="true"
          hierarchy="showAll"
          displayConsole="false"
          updateTitle="true"
          updateUrl="true" />

     <ssm:addSection hidden="false">
          <ssm:urlDirName hidden="false" disabled="false" />
          <ssm:id hidden="false" disabled="false" />
          <ssm:primaryUrl inherit="true" default="" />
          <ssm:secondaryUrl inherit="true" default="" />
          <ssm:secondaryUrlVariableField inherit="true" default="" />
     </ssm:addSection>

     <ssm:removeSection hidden="false" />
     <ssm:moveSection hidden="false" />
     <ssm:setErrorHandler hidden="false" />

     <ssm:editProperties hidden="false" >
          <ssm:id hidden="false" disabled="true" />
          <ssm:label hidden="false" disabled="false" />
          <ssm:active hidden="false" disabled="false" />
          <ssm:contributorOnly hidden="false" disabled="false" />
          <ssm:urlDirName hidden="false" disabled="false" />
          <ssm:urlPageName hidden="false" disabled="false" />
          <ssm:maxAge hidden="false" disabled="false" />
     </ssm:editProperties>

     <ssm:editCustomProperties hidden="false" />

     <ssm:primaryLayout hidden="false" externalHidden="false" previewHidden="false">
          <ssm:presentation>
               <![CDATA[$dDocTitle$ (<i>$dDocName$</i>)]]>
          </ssm:presentation>
          <ssm:queryText limitScope="true">
               <![CDATA[]]>
          </ssm:queryText>
     </ssm:primaryLayout>

     <ssm:secondaryLayout hidden="false" previewHidden="false">
          <ssm:presentation>
               <![CDATA[$dDocTitle$ (<i>$dDocName$</i>)]]>
          </ssm:presentation>
          <ssm:queryText limitScope="true">
               <![CDATA[]]>
          </ssm:queryText>
     </ssm:secondaryLayout>

     <ssm:sectionOverride nodeId="42">
          <ssm:addSection hidden="true" />
          <ssm:removeSection hidden="true" />
          <ssm:moveSection hidden="true" />
          <ssm:setErrorHandler hidden="true" />
          <ssm:setErrorHandler hidden="true" />
          <ssm:editProperties hidden="false" />
          <ssm:editCustomProperties hidden="true" />
          <ssm:primaryLayout hidden="true" />
          <ssm:secondaryLayout hidden="true" />
     </ssm:sectionOverride>

</ssm:settings>