Skip to content

Instantly share code, notes, and snippets.

@bkoopman
Created December 15, 2014 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkoopman/9a5d54a05b55a60202d5 to your computer and use it in GitHub Desktop.
Save bkoopman/9a5d54a05b55a60202d5 to your computer and use it in GitHub Desktop.
Publish HTML Design Parameters Schema
<xsd:schema targetNamespace="http://www.sdl.com/web/schemas/publishhtmldesign" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:tcmi="http://www.tridion.com/ContentManager/5.0/Instance" xmlns="http://www.sdl.com/web/schemas/publishhtmldesign" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:import namespace="http://www.tridion.com/ContentManager/5.0/Instance" schemaLocation="cm_xml_inst.xsd"/>
<xsd:annotation>
<xsd:appinfo>
<tcm:Labels xmlns:tcm="http://www.tridion.com/ContentManager/5.0">
<tcm:Label ElementName="drive" Metadata="false">Drive letter where temp directory will be created (defaults to the drive where SDL Tridion is installed, the TcmHomeDirectory)</tcm:Label>
<tcm:Label ElementName="cleanup" Metadata="false">Cleanup of temp directory (leave empty for automatic cleanup, or set to: false)</tcm:Label>
</tcm:Labels>
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="Parameters">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="drive" type="xsd:normalizedString" minOccurs="0">
<xsd:annotation>
<xsd:appinfo>
<ExtensionXml xmlns="http://www.tridion.com/ContentManager/5.0"/>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="cleanup" type="xsd:normalizedString" minOccurs="0">
<xsd:annotation>
<xsd:appinfo>
<ExtensionXml xmlns="http://www.tridion.com/ContentManager/5.0"/>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment