skinBundle

A skin bundle is a set of files that customize the look and feel of the Oracle SES default query application.

See Also: "Search Interface Customization: Skin Bundles"

Object Type

Creatable

Object Key

name

Object Key Command Syntax

--NAME=object_name

-n object_name

State Properties

Property Value
status ACTIVE or INACTIVE

Supported Operations

activate
create
deactivate
delete
deleteAll
deleteList
export
exportAll
exportList
getAllStates
getState
getStateList
update

Administration GUI Page

None

XML Description

The <search:skinBundles> element describes skin bundles:

<search:skinBundles>
   <search:skinBundle>
      <search:name>
      <search:isDefault>
      <search:linkedVersion>
      <search:files>
         <search:file>

Element Descriptions 

<search:skinBundles>

Contains one or more <search:skinBundle> elements.

<search:skinBundle>

Describes a skin bundle. It contains these elements:

<search:name>
<search:isDefault>
<search:linkedVersion>
<search:files>
<search:name>

Contains the name of the skin bundle. (Required)

<search:isDefault>

Identifies whether this is the default skin bundle. Set to true to make this the default skin bundle; otherwise, set it to false.

<search:linkedVersion>

Contains the version number of Oracle SES.

<search:files>

Contains one or more <search:file> elements.

<search:file>

Identifies the path to a file composing the skin bundle, such as a template (ftl), cascading style sheet (css), JavaScript (js), or graphic (gif).

Attribute Value
path Relative path of the file in the skin bundle. (Required)

Examples

This example describes a skin bundle named acme.

<?xml version="1.0" encoding="UTF-8" ?>
 
<search:config productVersion="11.1.2.0.0" xmlns:search="http://xmlns.oracle.com/search">
   <search:skinBundles>
      <search:skinBundle>
         <search:name>acme</search:name>
         <search:isDefault>false</search:isDefault>
         <search:linkedVersion>11.1.2.0.0</search:linkedVersion>
         <search:files>
            <search:file path="templates/query.ftl"/>
            <search:file path="templates/inc_footer.ftl"/>
            <search:file path="assets/images/logo.gif"/>
            <search:file path="assets/css/acme.css"/>
         </search:files>
      </search:skinBundle>
   </search:skinBundles>
</search:config>