Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Unified Diff: third_party/libxml/src/xstc/xstc-to-python.xsl

Issue 1977213002: Roll libxml to 8effcb578e0590cc01bbcab0f9dccefc6bdbcdbd (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update README.chromium. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libxml/src/xstc/xstc-to-python.xsl
diff --git a/third_party/libxml/src/xstc/xstc-to-python.xsl b/third_party/libxml/src/xstc/xstc-to-python.xsl
deleted file mode 100644
index 4de0e12bdbd9c0b00ab59f70dcd400950d8d85a4..0000000000000000000000000000000000000000
--- a/third_party/libxml/src/xstc/xstc-to-python.xsl
+++ /dev/null
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:ts="TestSuite" version="1.0"
- xmlns:xl="http://www.w3.org/1999/xlink">
- <xsl:param name="vendor" select="'NIST'"/>
- <xsl:output method="text"/>
-
- <xsl:template match="/">
- <xsl:text>#!/usr/bin/python -u
-# -*- coding: UTF-8 -*-
-#
-# This file is generated from the W3C test suite description file.
-#
-
-import xstc
-from xstc import XSTCTestRunner, XSTCTestGroup, XSTCSchemaTest, XSTCInstanceTest
-
-xstc.vendor = "</xsl:text><xsl:value-of select="$vendor"/><xsl:text>"
-
-r = XSTCTestRunner()
-
-# Group definitions.
-
-</xsl:text>
-
- <xsl:apply-templates select="ts:testSet/ts:testGroup" mode="group-def"/>
-<xsl:text>
-
-# Test definitions.
-
-</xsl:text>
- <xsl:apply-templates select="ts:testSet/ts:testGroup" mode="test-def"/>
- <xsl:text>
-
-r.run()
-
-</xsl:text>
-
- </xsl:template>
-
- <!-- groupName, descr -->
- <xsl:template match="ts:testGroup" mode="group-def">
- <xsl:text>r.addGroup(XSTCTestGroup("</xsl:text>
- <!-- group -->
- <xsl:value-of select="@name"/><xsl:text>", "</xsl:text>
- <!-- main schema -->
- <xsl:value-of select="ts:schemaTest[1]/ts:schemaDocument/@xl:href"/><xsl:text>", """</xsl:text>
- <!-- group-description -->
- <xsl:call-template name="str">
- <xsl:with-param name="str" select="ts:annotation/ts:documentation/text()"/>
- </xsl:call-template>
- <xsl:text>"""))
-</xsl:text>
- </xsl:template>
-
- <xsl:template name="str">
- <xsl:param name="str"/>
- <xsl:choose>
- <xsl:when test="contains($str, '&quot;')">
- <xsl:call-template name="str">
- <xsl:with-param name="str" select="substring-before($str, '&quot;')"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
- <xsl:call-template name="str">
- <xsl:with-param name="str" select="substring-after($str, '&quot;')"/>
- </xsl:call-template>
-
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$str"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="ts:testGroup" mode="test-def">
- <xsl:param name="group" select="@name"/>
- <xsl:for-each select="ts:schemaTest">
- <!-- groupName, isSchema, Name, Accepted, File, Val, Descr -->
- <xsl:text>r.addTest(XSTCSchemaTest("</xsl:text>
- <!-- group -->
- <xsl:value-of select="$group"/><xsl:text>", "</xsl:text>
- <!-- test-name -->
- <xsl:value-of select="@name"/><xsl:text>", </xsl:text>
- <!-- accepted -->
- <xsl:value-of select="number(ts:current/@status = 'accepted')"/><xsl:text>, "</xsl:text>
- <!-- filename -->
- <xsl:value-of select="ts:schemaDocument/@xl:href"/><xsl:text>", </xsl:text>
- <!-- validity -->
- <xsl:value-of select="number(ts:expected/@validity = 'valid')"/><xsl:text>, "</xsl:text>
- <!-- test-description -->
- <xsl:value-of select="ts:annotation/ts:documentation/text()"/><xsl:text>"))
-</xsl:text>
- </xsl:for-each>
- <xsl:for-each select="ts:instanceTest">
- <!-- groupName, isSchema, Name, Accepted, File, Val, Descr -->
- <xsl:text>r.addTest(XSTCInstanceTest("</xsl:text>
- <!-- group -->
- <xsl:value-of select="$group"/><xsl:text>", "</xsl:text>
- <!-- test-name -->
- <xsl:value-of select="@name"/><xsl:text>", </xsl:text>
- <!-- accepted -->
- <xsl:value-of select="number(ts:current/@status = 'accepted')"/><xsl:text>, "</xsl:text>
- <!-- filename -->
- <xsl:value-of select="ts:instanceDocument/@xl:href"/><xsl:text>", </xsl:text>
- <!-- validity -->
- <xsl:value-of select="number(ts:expected/@validity = 'valid')"/><xsl:text>, "</xsl:text>
- <!-- test-description -->
- <xsl:value-of select="ts:annotation/ts:documentation/text()"/><xsl:text>"))
-</xsl:text>
- </xsl:for-each>
- </xsl:template>
-
-</xsl:stylesheet>

Powered by Google App Engine
This is Rietveld 408576698