~ubuntu-branches/debian/sid/ember/sid

« back to all changes in this revision

Viewing changes to src/components/cegui/datafiles/fonts/Font.xsd

  • Committer: Package Import Robot
  • Author(s): Olek Wojnar, Stephen M. Webb, Olek Wojnar
  • Date: 2016-08-06 18:39:19 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20160806183919-4g72j3flj7xe2stj
Tags: 0.7.2+dfsg-1
[ Stephen M. Webb ]
* debian/control: updated build-depends to newer minimum versions
  (closes: #704786)
* debian/control: updated Standards-Version to 3.9.4 (updated VCS-* fields)
* debian/patches/0001-ember.in-test-expr.patch: removed (fixed upstream)
* debian/patches/0002-add-update_lua_bindings.patch: removed (fixed upstream)
* debian/patches/0003-add-atlas-pkg.patch: removed (fixed upstream)
* debian/patches/0004-domain-bindings-lua-makefile.patch: refreshed
* debian/patches/0005-ember.in-prefix.patch: removed (fixed upstream)
* debian/patches/0006-spellcheck-similiar.patch: removed (fixed upstream)
* debian/patches/0007-revert-libwfut-version.patch: refreshed
* debian/patches/0008-replace-fastdeletegate-with-sigc++.patch: removed
 (fixed upstream)
* debian/patches/0009-spelling-bach.patch: removed (fixed upstream)
* debian/patches/0010-fix-ember-script-args.patch: removed (fixed upstream)
* debian/patches/0011-qualify-template-functions.patch: removed (fixed
  upstream)
* debian/patches/0012-fix-osdir-headers.patch: removed (fixed upstream)
* debian/patches/0013-remove-invalid-linker-flags.patch: removed (fixed
  upstream)
* debian/patches/0014-add-missing-ogrelodstrategy.patch: new
* debian/control: fixed Vcs-Browser URL
* debian/patches/0015-verbose-configure-errors.patch: new
* debian/patches/0016-boost-1.53.patch: new
* debian/control: bump boost build dependeny to 1.53

[ Olek Wojnar ]
* New upstream release (Closes: #799748)
* Add myself as new uploader
  - Remove Stephen Webb per his request
  - Thanks for all the contributions, Stephen!
* d/patches/0007-revert-libwfut-version.patch: removed (unnecessary)
* d/control
  - Remove pre-dependency on dpkg
  - Update standards to 3.9.8 (no changes)
  - Update Vcs lines for secure URIs
* Import patch from the wfmath package to replace MersenneTwister.h
  -- Avoids problems from ambiguous copyright of the original file
* Update dependencies for version 0.7.2
* Enable all hardening options
* Add three lintian overrides
  -- Ignore install into usr/bin (binary)
  -- Ignore .rc files needed for WIN32 build (source)
  -- Ignore false positive of spelling error (binary)
* d/copyright: Update contributors and dates
* d/rules
  -- Do not remove "sounddefinitions" directory
  -- Enable parallel build
  -- Do not install into games directories
  -- Remove dh_builddeb override since xz is now the default
* d/watch: update file extensions
* Remove three patches, add eight patches, update remaining patches
  -- 0004-domain-bindings-lua-makefile.patch (implemented upstream)
  -- 0014-add-missing-ogrelodstrategy.patch (implemented upstream)
  -- 0016-boost-1.53.patch (patch target file removed upstream)
  -- 0018-enable-subdir-objects.patch (Fix automake 1.14 warnings)
  -- 0019-update-boost-m4.patch (Fix invalid boost_major_version)
  -- 0020-remove-obsolete-includes.patch (Fix obsolete includes)
  -- 0021-GraphicalChangeAdapter-fix-for-newer-compilers.patch (Added)
  -- 0022-fix-typos.patch (Fix typos identified by lintian)
  -- 0023-add-keywords-to-desktop-file.patch (Add Keywords to .desktop file)
  -- 0024-fix-icon-location (Make icon location Icon Theme Spec-compliant)
  -- 0025-fix-duplicate-script-install.patch (Was causing build failures)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
                <xsd:attributeGroup ref="FontAttrs" />
10
10
        </xsd:complexType>
11
11
        <xsd:complexType name="MapType">
12
 
                <xsd:attribute name="Codepoint" type="xsd:nonNegativeInteger" use="required" />
13
 
                <xsd:attribute name="Image" type="xsd:string" use="required" />
14
 
                <xsd:attribute name="HorzAdvance" type="xsd:integer" use="optional" default="-1" />
 
12
                <xsd:attribute name="codepoint" type="xsd:nonNegativeInteger" use="required" />
 
13
                <xsd:attribute name="image" type="xsd:string" use="required" />
 
14
                <xsd:attribute name="horzAdvance" type="xsd:integer" use="optional" default="-1" />
15
15
        </xsd:complexType>
16
16
        <xsd:attributeGroup name="FontAttrs">
17
 
                <xsd:attribute name="Name" type="xsd:string" use="required" />
18
 
                <xsd:attribute name="Filename" type="xsd:string" use="required" />
19
 
                <xsd:attribute name="ResourceGroup" type="xsd:string" use="optional"  default="" />
20
 
                <xsd:attribute name="Type" use="required">
 
17
                <xsd:attribute name="name" type="xsd:string" use="required" />
 
18
                <xsd:attribute name="filename" type="xsd:string" use="required" />
 
19
                <xsd:attribute name="resourceGroup" type="xsd:string" use="optional"  default="" />
 
20
                <xsd:attribute name="type" use="required">
21
21
                        <xsd:simpleType>
22
22
                                <xsd:restriction base="xsd:string">
23
23
                                        <xsd:enumeration value="FreeType" />
25
25
                                </xsd:restriction>
26
26
                        </xsd:simpleType>
27
27
                </xsd:attribute>
28
 
                <xsd:attribute name="Size" type="xsd:nonNegativeInteger" use="optional" default="12" />
29
 
                <xsd:attribute name="NativeHorzRes" type="xsd:nonNegativeInteger" use="optional" default="640" />
30
 
                <xsd:attribute name="NativeVertRes" type="xsd:nonNegativeInteger" use="optional" default="480" />
31
 
                <xsd:attribute name="AutoScaled" type="xsd:boolean" use="optional" default="false" />
32
 
                <xsd:attribute name="AntiAlias" type="xsd:boolean" use="optional" default="true" />
33
 
                <xsd:attribute name="LineSpacing" type="xsd:decimal" use="optional" default="0" />
 
28
                <xsd:attribute name="size" type="xsd:nonNegativeInteger" use="optional" default="12" />
 
29
                <xsd:attribute name="nativeHorzRes" type="xsd:nonNegativeInteger" use="optional" default="640" />
 
30
                <xsd:attribute name="nativeVertRes" type="xsd:nonNegativeInteger" use="optional" default="480" />
 
31
                <xsd:attribute name="autoScaled" default="false">
 
32
                        <xsd:simpleType>
 
33
                                <xsd:restriction base="xsd:string">
 
34
                                        <xsd:enumeration value="false" />
 
35
                                        <xsd:enumeration value="vertical" />
 
36
                                        <xsd:enumeration value="horizontal" />
 
37
                                        <xsd:enumeration value="min" />
 
38
                                        <xsd:enumeration value="max" />
 
39
                                        <xsd:enumeration value="true" />
 
40
                                </xsd:restriction>
 
41
                        </xsd:simpleType>
 
42
                </xsd:attribute>
 
43
                <xsd:attribute name="antiAlias" type="xsd:boolean" use="optional" default="true" />
 
44
                <xsd:attribute name="lineSpacing" type="xsd:decimal" use="optional" default="0" />
 
45
                <xsd:attribute name="version" type="xsd:nonNegativeInteger" use="optional" default="0" />
34
46
        </xsd:attributeGroup>
35
47
</xsd:schema>