Oracle® Secure Enterprise Search Administration API Guide 11g Release 1 (11.1.2.0.0) Part Number E14133-02 |
|
|
View PDF |
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
Contains one or more <search:skinBundle>
elements.
Describes a skin bundle. It contains these elements:
<search:name> <search:isDefault> <search:linkedVersion> <search:files>
Contains the name of the skin bundle. (Required)
Identifies whether this is the default skin bundle. Set to true
to make this the default skin bundle; otherwise, set it to false
.
Contains the version number of Oracle SES.
Contains one or more <search:file>
elements.
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>