all repos — openbox @ 5d3f1763fa2168bfe76bb8ca9ea920884e5dc28a

openbox fork - make it a bit more like ryudo

updates and fixes for the xml/xsd shit
Dana Jansens danakj@orodu.net
commit

5d3f1763fa2168bfe76bb8ca9ea920884e5dc28a

parent

35dd3065a93bfed213bc7b8602d945b93f7edfb4

4 files changed, 9 insertions(+), 9 deletions(-)

jump to
M data/menu.xml.indata/menu.xml.in

@@ -1,10 +1,9 @@

<?xml version="1.0" encoding="UTF-8"?> -<openbox_menu xmlns="http://openbox/.org" +<openbox_menu xmlns="http://openbox.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation=" - http://openbox.org/schema.php?type=menu&amp;version=@version@ - file://@xsddir@/rc.xsd"> + xsi:schemaLocation="http://openbox.org/ + file://@xsddir@/menu.xsd"> <menu id="games-menu" label="Games"> <item label="Crack-Attack">
M data/menu.xsddata/menu.xsd

@@ -38,6 +38,7 @@ <xs:element maxOccurs="unbounded" minOccurs="0" name="item" type="ob:item"/>

<xs:element maxOccurs="unbounded" minOccurs="0" name="separator" type="ob:empty"/> </xs:choice> <xs:attribute name="label" type="xs:string" use="optional"/> + <xs:attribute name="execute" type="xs:string" use="optional"/> <xs:attribute name="id" type="xs:string" use="required"/> </xs:complexType> <xs:complexType name="empty">

@@ -50,7 +51,7 @@ <xs:sequence>

<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>
M data/rc.xml.indata/rc.xml.in

@@ -3,10 +3,9 @@

<!-- Do not edit this file, it will be overwritten on install. Copy the file to $HOME/.config/openbox/ instead. --> -<openbox_config xmlns="http://openbox/.org" +<openbox_config xmlns="http://openbox.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation=" - http://openbox.org/schema.php?type=rc&amp;version=@version@ + xsi:schemaLocation="http://openbox.org/ file://@xsddir@/rc.xsd"> <resistance>

@@ -16,8 +15,8 @@ </resistance>

<focus> <focusNew>yes</focusNew> - <followMouse>no</followMouse> <focusLast>yes</focusLast> + <followMouse>no</followMouse> <focusDelay>0</focusDelay> <raiseOnFocus>no</raiseOnFocus> </focus>
M data/rc.xsddata/rc.xsd

@@ -213,6 +213,7 @@ <xs:enumeration value="Shade"/>

<xs:enumeration value="Iconify"/> <xs:enumeration value="Icon"/> <xs:enumeration value="Close"/> + <xs:enumeration value="MoveResize"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="button">