私は実際にあなたの名前、電子メールでヘッダーを作成するためのスニペットを行っています...そして、プロジェクトの開始日時と最後の保存が行われた日時を追加したいと思います。
含めようとしました:
<xs:element name="startdate" type="xs:dateTime"/>
と
<xs:simpleType name="dateTime" id="dateTime">
<xs:restriction base="xs:anySimpleType">
<xs:whiteSpace value="collapse" fixed="true"/>
</xs:restriction>
</xs:simpleType>
しかし、Sublime Text 2 は私を返します:「認識されない plis 要素 xs:restriction」
これが私のコードです:
<?xml version="1.0" encoding="UTF-8"?>
<xs:simpleType name="dateTime" id="dateTime">
<xs:restriction base="xs:anySimpleType">
<xs:whiteSpace value="collapse" fixed="true"/>
</xs:restriction>
</xs:simpleType>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Globals</string>
<key>scope</key>
<string></string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_TIME</string>
<key>value</key>
<string><xs:element name="startdate" type="xs:dateTime"/></string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>0ef292cd-943a-4fb0-b43d-65959c5e6b06</string>
</dict>
</plist>
私は取った
<xs:simpleType name="dateTime" id="dateTime">
ここ: http://docstore.mik.ua/orelly/xml/schema/ch16_01.htm#ch16-77031
私が間違っていることは何か分かりますか?