~ubuntu-branches/debian/sid/openbox/sid

« back to all changes in this revision

Viewing changes to data/rc.xsd

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2010-04-23 16:26:22 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100423162622-glbe2jvey10sdiff
Tags: 3.4.11.1-1
* New upstream release (Closes: #570441).
  - removed wrong use of test command in openbox-gnome-session leading
    to misbehaviour with gnome sessions (Closes: #566685).
* Add obxprop to the installed files (Closes: #564292).
* Removed 04_escape_session_names.dpatch/03_nextprev-xinerama.dpatch
  completely from debian/, wasn't used anymore anyway.
* Bump standards version, no changes needed.
* Update install files for libobparser/libobrender and links in openbox-dev
  as the shared library minor version changed.
* Update install paths of openbox-dev files to reflect upstream changes
  and install all header files rather than pick them manually.
* Switch to regular paragraphs from asterisks in NEWS file.
* Change short description of openbox-dev to differ from openbox.
* Switch to dpkg-source 3.0 (quilt) format
  - switch from dpatch to quilt patches.
* Adding ${misc:Depends} to openbox-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
        <xsd:element minOccurs="0" name="manageDesktops" type="ob:bool"/>
172
172
    </xsd:complexType>
173
173
    <xsd:complexType name="window_position">
174
 
        <xsd:element name="x" type="ob:center_or_int"/>
175
 
        <xsd:element name="y" type="ob:center_or_int"/>
 
174
        <xsd:element name="x" type="ob:horizontal_center_or_int"/>
 
175
        <xsd:element name="y" type="ob:vertical_center_or_int"/>
176
176
        <xsd:element name="monitor" type="ob:mouse_or_int"/>    
177
177
        <xsd:element minOccurs="0" name="head" type="xsd:string"/>
178
178
        <xsd:attribute name="force" type="ob:bool"/>
365
365
            <xsd:pattern value="center|0|[1-9][0-9]*"/>
366
366
        </xsd:restriction>
367
367
    </xsd:simpleType>
 
368
    <xsd:simpleType name="horizontal_center_or_int">
 
369
        <xsd:restriction base="xsd:string">
 
370
            <!-- ob: atoi($_) unless $_ eq 'center'; -->
 
371
            <!-- I think the regexp DTRT WRT atoi. -->
 
372
            <xsd:pattern value="(Below|Above)?center|0|[1-9][0-9]*"/>
 
373
        </xsd:restriction>
 
374
    </xsd:simpleType>
 
375
    <xsd:simpleType name="vertical_center_or_int">
 
376
        <xsd:restriction base="xsd:string">
 
377
            <!-- ob: atoi($_) unless $_ eq 'center'; -->
 
378
            <!-- I think the regexp DTRT WRT atoi. -->
 
379
            <xsd:pattern value="(LeftOf|RightOf)?center|0|[1-9][0-9]*"/>
 
380
        </xsd:restriction>
 
381
    </xsd:simpleType>
368
382
    <xsd:simpleType name="mouse_or_int">
369
383
        <xsd:restriction base="xsd:string">
370
384
            <!-- ob: atoi($_) unless $_ eq 'center'; -->