Skip to content
Permalink
93de43745e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (29 sloc) 736 Bytes
<?xml version="1.0" encoding="utf-8"?>
<!--
note: downloaded from http://debeissat.nicolas.free.fr/relaxng_simplification.php
-->
<stylesheet
version="2.0"
xmlns="http://www.w3.org/1999/XSL/Transform"
xmlns:svrl="http://purl.oclc.org/dsdl/svrl"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<output
method="text"
omit-xml-declaration="yes"
indent="no"
/>
<variable name="newline" select="'&#xA;'"/>
<!-- 7.2 -->
<template match="svrl:failed-assert">
<text>ERROR: at '</text>
<value-of select="@location"/>
<text>':</text>
<value-of select="$newline"/>
<value-of select="svrl:text"/>
<value-of select="$newline"/>
</template>
<template match="node()">
<apply-templates/>
</template>
</stylesheet>