source: other-projects/trunk/gs3-release-maker/apache-ant-1.6.5/src/etc/checkstyle/checkstyle-text.xsl@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 1.2 KB
Line 
1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
2
3<!--
4 Copyright 2003-2004 The Apache Software Foundation
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18-->
19
20 <xsl:strip-space elements="checkstyle"/>
21 <xsl:preserve-space elements="file"/>
22 <xsl:output method="text"/>
23 <xsl:template match="checkstyle/file/error">
24 <xsl:value-of select="../@name"/>
25 <xsl:text>:</xsl:text>
26 <xsl:value-of select="@line"/>
27 <xsl:text>:</xsl:text>
28 <xsl:value-of select="@column"/>
29 <xsl:text> </xsl:text>
30 <xsl:value-of select="@message"/>
31 </xsl:template>
32</xsl:stylesheet>
33
Note: See TracBrowser for help on using the repository browser.