fix capitalization
This commit is contained in:
parent
88ae91f677
commit
af3ae51f82
4 changed files with 51 additions and 48 deletions
|
@ -8,28 +8,28 @@
|
|||
|
||||
<menu id="games-menu" label="Games">
|
||||
<item label="Crack-Attack">
|
||||
<action name="execute"><execute>crack-attack</execute></action>
|
||||
<action name="Execute"><execute>crack-attack</execute></action>
|
||||
</item>
|
||||
<item label="XFRisk">
|
||||
<action name="execute"><execute>xfrisk</execute></action>
|
||||
<action name="Execute"><execute>xfrisk</execute></action>
|
||||
</item>
|
||||
<item label="Quake III">
|
||||
<action name="execute"><execute>quake3</execute></action>
|
||||
<action name="Execute"><execute>quake3</execute></action>
|
||||
</item>
|
||||
</menu>
|
||||
|
||||
<menu id="apps-menu" label="Applications">
|
||||
<item label="Xterm">
|
||||
<action name="execute"><execute>xterm</execute></action>
|
||||
<action name="Execute"><execute>xterm</execute></action>
|
||||
</item>
|
||||
<item label="Mozilla">
|
||||
<action name="execute"><execute>mozilla</execute></action>
|
||||
<action name="Execute"><execute>mozilla</execute></action>
|
||||
</item>
|
||||
<item label="Gaim">
|
||||
<action name="execute"><execute>gaim</execute></action>
|
||||
<action name="Execute"><execute>gaim</execute></action>
|
||||
</item>
|
||||
<item label="Quark">
|
||||
<action name="execute"><execute>strange-quark</execute></action>
|
||||
<action name="Execute"><execute>strange-quark</execute></action>
|
||||
</item>
|
||||
</menu>
|
||||
|
||||
|
@ -40,16 +40,16 @@
|
|||
<menu id="client-list-menu" />
|
||||
<separator />
|
||||
<item label="ObConf">
|
||||
<action name="execute"><execute>obconf</execute></action>
|
||||
<action name="Execute"><execute>obconf</execute></action>
|
||||
</item>
|
||||
<item label="Reconfigure">
|
||||
<action name="reconfigure" />
|
||||
<action name="Reconfigure" />
|
||||
</item>
|
||||
<item label="Restart">
|
||||
<action name="restart" />
|
||||
<action name="Restart" />
|
||||
</item>
|
||||
<item label="Exit">
|
||||
<action name="exit" />
|
||||
<action name="Exit" />
|
||||
</item>
|
||||
</menu>
|
||||
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
use a namespace
|
||||
Fri Sep 19 14:36:33 EDT 2003 - xor(a)orodu.net
|
||||
use openbox.org for namespace
|
||||
Mon Sep 22 02:42:10 EDT 2003 - xor(a)orodu.net
|
||||
fix some capitalization
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://openbox.org/"
|
||||
|
@ -48,7 +50,7 @@
|
|||
<xs:element minOccurs="0" name="action">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="execute" type="xs:string"/>
|
||||
<xs:element minOccurs="0" name="Execute" type="xs:string"/>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="name" type="ob:actionname" use="required"/>
|
||||
</xs:complexType>
|
||||
|
@ -61,10 +63,10 @@
|
|||
-->
|
||||
<xs:simpleType name="actionname">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="execute"/>
|
||||
<xs:enumeration value="restart"/>
|
||||
<xs:enumeration value="reconfigure"/>
|
||||
<xs:enumeration value="exit"/>
|
||||
<xs:enumeration value="Execute"/>
|
||||
<xs:enumeration value="Restart"/>
|
||||
<xs:enumeration value="Reconfigure"/>
|
||||
<xs:enumeration value="Exit"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
|
|
|
@ -42,9 +42,9 @@
|
|||
</resize>
|
||||
|
||||
<dock>
|
||||
<position>topleft</position>
|
||||
<stacking>top</stacking>
|
||||
<direction>vertical</direction>
|
||||
<position>TopLeft</position>
|
||||
<stacking>Top</stacking>
|
||||
<direction>Vertical</direction>
|
||||
<floatingX>0</floatingX>
|
||||
<floatingY>0</floatingY>
|
||||
<autoHide>no</autoHide>
|
||||
|
|
59
data/rc.xsd
59
data/rc.xsd
|
@ -23,6 +23,7 @@
|
|||
use openbox.org for namespace
|
||||
Mon Sep 22 02:34:53 EDT 2003 - xor(a)orodu.net
|
||||
add the focusLast and raiseOnFocus options
|
||||
fix some capitalization
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://openbox.org/"
|
||||
|
@ -164,28 +165,28 @@
|
|||
</xs:simpleType>
|
||||
<xs:simpleType name="position">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="topleft"/>
|
||||
<xs:enumeration value="top"/>
|
||||
<xs:enumeration value="topright"/>
|
||||
<xs:enumeration value="right"/>
|
||||
<xs:enumeration value="bottomright"/>
|
||||
<xs:enumeration value="bottom"/>
|
||||
<xs:enumeration value="bottomleft"/>
|
||||
<xs:enumeration value="left"/>
|
||||
<xs:enumeration value="floating"/>
|
||||
<xs:enumeration value="TopLeft"/>
|
||||
<xs:enumeration value="Top"/>
|
||||
<xs:enumeration value="TopRight"/>
|
||||
<xs:enumeration value="Right"/>
|
||||
<xs:enumeration value="BottomRight"/>
|
||||
<xs:enumeration value="Bottom"/>
|
||||
<xs:enumeration value="BottomLeft"/>
|
||||
<xs:enumeration value="Left"/>
|
||||
<xs:enumeration value="Floating"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="stacking">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="top"/>
|
||||
<xs:enumeration value="normal"/>
|
||||
<xs:enumeration value="bottom"/>
|
||||
<xs:enumeration value="Top"/>
|
||||
<xs:enumeration value="Normal"/>
|
||||
<xs:enumeration value="Bottom"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="direction">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="horizontal"/>
|
||||
<xs:enumeration value="vertical"/>
|
||||
<xs:enumeration value="Horizontal"/>
|
||||
<xs:enumeration value="Vertical"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="keyname">
|
||||
|
@ -195,21 +196,21 @@
|
|||
</xs:simpleType>
|
||||
<xs:simpleType name="contextname">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="desktop"/>
|
||||
<xs:enumeration value="client"/>
|
||||
<xs:enumeration value="titlebar"/>
|
||||
<xs:enumeration value="handle"/>
|
||||
<xs:enumeration value="frame"/>
|
||||
<xs:enumeration value="tlcorner"/>
|
||||
<xs:enumeration value="trcorner"/>
|
||||
<xs:enumeration value="blcorner"/>
|
||||
<xs:enumeration value="brcorner"/>
|
||||
<xs:enumeration value="maximize"/>
|
||||
<xs:enumeration value="alldesktops"/>
|
||||
<xs:enumeration value="shade"/>
|
||||
<xs:enumeration value="iconify"/>
|
||||
<xs:enumeration value="icon"/>
|
||||
<xs:enumeration value="close"/>
|
||||
<xs:enumeration value="Desktop"/>
|
||||
<xs:enumeration value="Client"/>
|
||||
<xs:enumeration value="Titlebar"/>
|
||||
<xs:enumeration value="Handle"/>
|
||||
<xs:enumeration value="Frame"/>
|
||||
<xs:enumeration value="TLCorner"/>
|
||||
<xs:enumeration value="TRCorner"/>
|
||||
<xs:enumeration value="BLCorner"/>
|
||||
<xs:enumeration value="BRCorner"/>
|
||||
<xs:enumeration value="Maximize"/>
|
||||
<xs:enumeration value="AllDesktops"/>
|
||||
<xs:enumeration value="Shade"/>
|
||||
<xs:enumeration value="Iconify"/>
|
||||
<xs:enumeration value="Icon"/>
|
||||
<xs:enumeration value="Close"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="button">
|
||||
|
|
Loading…
Reference in a new issue