Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/nxml-svg-schemas/files: 60nxml-svg-schemas-gentoo.el schemas.xml Makefile-trang
Date: Sun, 23 Nov 2008 19:33:43
Message-Id: E1L4KiD-0001Nd-Az@stork.gentoo.org
1 flameeyes 08/11/23 19:33:41
2
3 Added: 60nxml-svg-schemas-gentoo.el schemas.xml
4 Makefile-trang
5 Log:
6 New ebuild, SVG (1.1 for now) schemas for nxml-mode.
7 (Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
8
9 Revision Changes Path
10 1.1 app-emacs/nxml-svg-schemas/files/60nxml-svg-schemas-gentoo.el
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/60nxml-svg-schemas-gentoo.el?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/60nxml-svg-schemas-gentoo.el?rev=1.1&content-type=text/plain
14
15 Index: 60nxml-svg-schemas-gentoo.el
16 ===================================================================
17
18 ;;; nxml-gentoo-schemas site-lisp configuration
19
20 ;; This must be executed after rng-schema-locating-files
21 ;; is set in rng-loc (which is part of nxml-mode).
22 (eval-after-load "rng-loc"
23 '(add-to-list 'rng-schema-locating-files
24 "@SITEETC@/schemas.xml"))
25
26
27
28 1.1 app-emacs/nxml-svg-schemas/files/schemas.xml
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/schemas.xml?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/schemas.xml?rev=1.1&content-type=text/plain
32
33 Index: schemas.xml
34 ===================================================================
35 <?xml version="1.0" encoding="utf-8"?>
36 <locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
37 <!-- This version of the locatingRules does not support having
38 enough details to distinguish between different SVG versions,
39 maybe in the future it will.
40 -->
41
42 <uri pattern="*.svg" typeId="SVG" />
43 <namespace ns="http://www.w3.org/2000/svg" typeId="SVG" />
44 <documentElement localName="svg" typeId="SVG" />
45
46 <typeId id="SVG" uri="svg11.rnc" />
47 </locatingRules>
48
49
50
51 1.1 app-emacs/nxml-svg-schemas/files/Makefile-trang
52
53 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/Makefile-trang?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-svg-schemas/files/Makefile-trang?rev=1.1&content-type=text/plain
55
56 Index: Makefile-trang
57 ===================================================================
58 # -*- makefile -*-
59
60 all: $(patsubst %.rng,%.rnc,$(wildcard *.rng))
61
62 %.rnc: %.rng
63 trang -I rng -O rnc $< $@