|
From: <pe...@us...> - 2012-11-18 11:18:05
|
Revision: 1145
http://openautomation.svn.sourceforge.net/openautomation/?rev=1145&view=rev
Author: peuter
Date: 2012-11-18 11:17:58 +0000 (Sun, 18 Nov 2012)
Log Message:
-----------
* added align attribute to diagram_info
* set allowed values for align attribute to left,center,right
Modified Paths:
--------------
CometVisu/trunk/visu/visu_config.xsd
Modified: CometVisu/trunk/visu/visu_config.xsd
===================================================================
--- CometVisu/trunk/visu/visu_config.xsd 2012-11-18 11:05:56 UTC (rev 1144)
+++ CometVisu/trunk/visu/visu_config.xsd 2012-11-18 11:17:58 UTC (rev 1145)
@@ -109,7 +109,15 @@
</xsd:simpleType>
</xsd:attribute>
- <xsd:attribute name="align" type="xsd:string" />
+ <xsd:attribute name="align">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="left" />
+ <xsd:enumeration value="right" />
+ <xsd:enumeration value="center" />
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:attribute>
<xsd:attribute name="variant" type="xsd:string" />
<xsd:attribute name="legendposition">
@@ -738,6 +746,7 @@
<xsd:attribute ref="legend" use="optional" />
<xsd:attribute ref="legendposition" use="optional" />
<xsd:attribute name="title" type="xsd:string" use="optional" />
+ <xsd:attribute ref="align" use="optional" />
</xsd:complexType>
<xsd:complexType name="gweather">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|