/dev/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/dev/trunk

« back to all changes in this revision

Viewing changes to setups/katrin/xslt/kdbrundesc.xsl

  • Committer: Suren A. Chilingaryan
  • Date: 2012-02-07 22:44:15 UTC
  • Revision ID: csa@dside.dyndns.org-20120207224415-sy360wa1ammhd1ph
Use localization subsystem, updated Katrin configs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<!-- $Id: kdbrundesc.xsl 973 2009-08-19 09:40:28Z s_voec01 $ -->
3
 
<!-- Author: Sebastian Voecking <sebastian.voecking@uni-muenster.de> -->
4
 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5
 
    <xsl:output method="html" />
6
 
    <xsl:template match="/rundesc">
7
 
        <html>
8
 
            <head><link rel="stylesheet" type="text/css" href="setups/katrin/rdstyle.css"></head>
9
 
            <body>
10
 
                <h3>Andreas Kopmann</h3>
11
 
                <h3>Subrun <xsl:value-of select="//identifier" /></h3>
12
 
                <p>Time: <xsl:value-of select="//start" /> -
13
 
                    <xsl:value-of select="//end" /></p>
14
 
                <p>Detector: <xsl:value-of select="//detector" />,
15
 
                    x: <xsl:value-of select="//detector_x" />cm,
16
 
                    y: <xsl:value-of select="//detector_y" />cm,
17
 
                    z: <xsl:value-of select="//detector_z" />cm,
18
 
                    Crate: <xsl:value-of select="//crate" /></p>
19
 
                <p>Configuration: <xsl:value-of select="//configuration" />,
20
 
                    ORCA version: <xsl:value-of select="//orca_version" /></p>
21
 
                <p>West Magnet: <xsl:value-of select="//magnet_west" />A
22
 
                    (<xsl:value-of select="//field_west" />T),
23
 
                    East Magnet: <xsl:value-of select="//magnet_east" />A
24
 
                    (<xsl:value-of select="//field_east" />T)</p>
25
 
                <p>Valve det/PS: <xsl:value-of select="//det_ps" />,
26
 
                    Valve PS/egun: <xsl:value-of select="//ps_egun" /></p>
27
 
                <p>T: <xsl:value-of select="//t" />,
28
 
                    S1: <xsl:value-of select="//s1" />,
29
 
                    S2: <xsl:value-of select="//s2" />,
30
 
                    S3: <xsl:value-of select="//s3" />,
31
 
                    S4: <xsl:value-of select="//s4" />,
32
 
                    D1: <xsl:value-of select="//d1" />,
33
 
                    D2: <xsl:value-of select="//d2" /></p>
34
 
                <p>FUG1: <xsl:value-of select="//fug1" />kV,
35
 
                    FUG2: <xsl:value-of select="//fug2" />kV,
36
 
                    FUG3: <xsl:value-of select="//fug3" />kV,
37
 
                    FUG4: <xsl:value-of select="//fug4" />kV,
38
 
                    FUG5: <xsl:value-of select="//fug5" />kV</p>
39
 
                <p>Pressure: <xsl:value-of select="//pressure" />mbar</p>
40
 
                <p>UV Light: <xsl:value-of select="//egun_uv" />,
41
 
                    Shutter: <xsl:value-of select="//egun_shutter" />,
42
 
                    Voltage: <xsl:value-of select="//egun_hv" />kV,
43
 
                    x: <xsl:value-of select="//egun_x" />°,
44
 
                    y: <xsl:value-of select="//egun_y" />°</p>
45
 
                <p>Comment: <xsl:value-of select="//comment" /></p>
46
 
            </body>
47
 
        </html>
48
 
    </xsl:template>
49
 
</xsl:stylesheet>