home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!--
- Copyright 1999-2004 The Apache Software Foundation
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <stx:transform xmlns:stx="http://stx.sourceforge.net/2002/ns"
- xmlns:sql="http://apache.org/cocoon/SQL/2.0"
- version="1.0">
-
- <stx:template match="sql:rowset">
- <stx:process-children group="list"/>
- </stx:template>
-
- <stx:group name="list">
- <stx:buffer name="first-row"/>
-
- <!-- Use data from the first row two times, first for header names
- and then for content -->
- <stx:template match="sql:row[1]">
- <stx:result-buffer name="first-row">
- <stx:process-children group="copy"/>
- </stx:result-buffer>
- <stx:process-buffer name="first-row" group="header"/>
- <stx:text>
</stx:text>
- <stx:process-buffer name="first-row"/>
- <stx:text>
</stx:text>
- </stx:template>
-
- <stx:template match="sql:row">
- <stx:process-children/>
- <stx:text>
</stx:text>
- </stx:template>
-
- <stx:template match="sql:*">
- <stx:value-of select="."/>
- <stx:text> </stx:text>
- </stx:template>
- </stx:group>
-
- <!-- Copy everything -->
- <stx:group name="copy">
- <stx:template match="node()">
- <stx:copy attributes="@*">
- <stx:process-children/>
- </stx:copy>
- </stx:template>
- </stx:group>
-
- <!-- Use element names for header -->
- <stx:group name="header">
- <stx:template match="sql:*">
- <stx:value-of select="local-name()"/>
- <stx:text> </stx:text>
- </stx:template>
- </stx:group>
-
- </stx:transform>
-