Specifications
B-43
Cisco Internet Streamer CDS 2.0-2.3 Software Configuration Guide
OL-13493-04
Appendix B Creating Manifest Files
Manifest File Structure and Syntax
Examples
<! - - crawling item group -- >
<item-group server=”origin-server” type=”prepos”>
<matchRule>
<match time-before=”2000-05-05 12:0:0”/>
</matchRule>
<crawler start-url=”eng/index.html” depth=”-1”/>
<crawler start-url=”hr/index.html” depth=”3”>
<matchRule>
<match minFileSizeIn-KB=”1” extension=”xxx”/>
</matchRule>
</crawler>
</item-group>
To download content that was created or modified within the last 90 days, use the relative time format,
as shown in the following example:
<match time-after=”90:00:00”/>
To download content that was not modified within the last 2 weeks, use the relative time format, as
shown in the following example:
<match time-before=”14:00:00”/>
To download content that has been modified after January 30, 2003, 10:30 p.m., use the absolute time
format, as shown in the following example:
<match time-after=”2003-01-30 10:30:00”/>
contains
The <contains /> tag is optional and identifies content objects that are embedded within the content item
currently being described. For example, the components of a Synchronized Multimedia Integration
Language (SMIL) file request for an item using <contains /> links are only accepted after CDS software
determines that dependent content objects are present in the Service Engine.
The <contains /> tag must be enclosed within the <item> </item> tag.
The <contains /> tag is used to include embedded files for some video files, such as .asf or .rp. The CDS
software does not serve this item unless every contained item is present.
Attributes
The cdn-url attribute is required and is the relative CDS network URL of one of the embedded contents.
Subelements
None
Example
<item src=”house/img08.jpb” cdn-url=”img08.jpg” />
<item src=”house/img09.jpb” cdn-url=”img09.jpg” />
<item cdn-url="house.rp"src="house/house.rp">
<contains cdn-url="img08.jpg"/>
<contains cdn-url="img09.jpg"/>
</item>