From 3798e8c5c0544ce62ab2c8751ddb21bbd4726d1c Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Fri, 8 Apr 2011 13:29:12 -0400 Subject: A number of schema changes/fixes/updates: * altsrc attr is not allowed on Service and Action tags * Removed duplicate definition of PackageType, fixed required attrs * Removed deprecated tags in BoundPackage Instances * Added Genshi schema, made Genshi bundles validate * Use builtin xs:boolean type where possible --- schemas/genshi.xsd | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 schemas/genshi.xsd (limited to 'schemas/genshi.xsd') diff --git a/schemas/genshi.xsd b/schemas/genshi.xsd new file mode 100644 index 000000000..853b69c0d --- /dev/null +++ b/schemas/genshi.xsd @@ -0,0 +1,97 @@ + + + + + Genshi schema + Chris St. Pierre + $Id$ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3-1-g7c22 From 701ff48cc9561ce88e80c1de5a19f8d6cda790bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Wei=C3=9F?= Date: Mon, 6 Jun 2011 00:54:55 +0200 Subject: All Genshi XML tags should be namespace-qualified Our XML Schema for Genshi templates expected "choose" blocks to be declared like this: However, we prefer to namespace-qualify not only the "choose" element, but also the "when" and "otherwise" tags (for clarity, and because that's how it's done in the Genshi documentation): This commit tells XML Schema validators to expect the latter style. --- schemas/genshi.xsd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'schemas/genshi.xsd') diff --git a/schemas/genshi.xsd b/schemas/genshi.xsd index 853b69c0d..d87c4a6e3 100644 --- a/schemas/genshi.xsd +++ b/schemas/genshi.xsd @@ -2,7 +2,8 @@ + targetNamespace="http://genshi.edgewall.org/" + elementFormDefault="qualified"> Genshi schema -- cgit v1.2.3-1-g7c22