Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove svn keywords | Sol Jerome | 2012-02-19 | 1 | -1/+0 |
| | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | cleaned up genshi schema | Chris St. Pierre | 2012-01-23 | 1 | -8/+14 |
| | |||||
* | fixed attribute form of genshi keywords | Chris St. Pierre | 2011-08-08 | 1 | -12/+12 |
| | |||||
* | All Genshi XML tags should be namespace-qualified | Holger Weiß | 2011-06-06 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | Our XML Schema for Genshi templates expected "choose" blocks to be declared like this: <py:choose test="$foo"> <when test="0"><!-- [...] --></when> <when test="1"><!-- [...] --></when> <otherwise><!-- [...] --></otherwise> </py:choose> 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): <py:choose test="$foo"> <py:when test="0"><!-- [...] --></py:when> <py:when test="1"><!-- [...] --></py:when> <py:otherwise><!-- [...] --></py:otherwise> </py:choose> This commit tells XML Schema validators to expect the latter style. | ||||
* | A number of schema changes/fixes/updates: | Chris St. Pierre | 2011-04-08 | 1 | -0/+97 |
* altsrc attr is not allowed on Service and Action tags * Removed duplicate definition of PackageType, fixed required attrs * Removed deprecated <Ignore> tags in BoundPackage Instances * Added Genshi schema, made Genshi bundles validate * Use builtin xs:boolean type where possible |