~ubuntu-branches/ubuntu/edgy/awstats/edgy

« back to all changes in this revision

Viewing changes to tools/xslt/awstats.datademo1.xslt

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard, Jonas Smedegaard, Charles Fry
  • Date: 2006-01-15 22:35:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060115223507-jtn0gtvack1n8qj2
Tags: 6.5-1
[ Jonas Smedegaard ]
* New upstream release.
  + Recognizes GNUTLS from lynx User-Agent header. Closes: #306130
    (thanks to Dmitry Baryshkov <mitya@school.ioffe.ru>).
  + Geoip shows countries for resolved hostnames. Closes: #317310
    (thanks to Administrator <azhrarn@underhanded.org>).
* Simplify watch file to better work with parser used at qa.d.o.
* Improve cdbs rules:
  + Use quilt (rather than cdbs-internal patch system).
  + Add and enable new local snippets copyright-check and auto-update.
  + Update local snippet buildinfo (fixing its namespace).
* Auto-update debian/control:
  + Tightened build-dependency on cdbs.
  + Added build-dependencies on patchutils and quilt.
* Package is now team-maintained:
  + New maintainer: Debian AWStats Team
    <pkg-awstats-devel@lists.alioth.debian.org>.
  + Add myself as uploader.

[ Charles Fry ]
* Use qa.debian.org SF redirector in watch file.
* Use Homepage instead of Website in debian/control, per DDR 6.2.4.
* Removed patches integrated upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
 
3
    <xsl:template match="/">
 
4
        <html>
 
5
            <head />
 
6
            <body>
 
7
                <br />
 
8
                <xsl:for-each select="xml">
 
9
                    <br />
 
10
                    <xsl:for-each select="version">
 
11
                        <xsl:for-each select="lib">
 
12
                            <xsl:apply-templates />
 
13
                        </xsl:for-each>
 
14
                    </xsl:for-each>
 
15
                    <br />
 
16
                    <br />
 
17
                    <xsl:for-each select="section">
 
18
                        <xsl:for-each select="@id">
 
19
                            <xsl:value-of select="." />
 
20
                        </xsl:for-each>
 
21
                        <p>
 
22
                            <xsl:for-each select="table">
 
23
                                <xsl:for-each select="tr">
 
24
                                    <xsl:for-each select="td">
 
25
                                        <xsl:apply-templates />&#160;</xsl:for-each>
 
26
                                    <br />
 
27
                                </xsl:for-each>
 
28
                                <br />
 
29
                            </xsl:for-each>
 
30
                        </p>
 
31
                    </xsl:for-each>
 
32
                    <br />
 
33
                </xsl:for-each>
 
34
            </body>
 
35
        </html>
 
36
    </xsl:template>
 
37
</xsl:stylesheet>