/openshift/adei

To get this branch, use:
bzr branch http://darksoft.org/webbzr/openshift/adei

« back to all changes in this revision

Viewing changes to xslt/sensorlist.xsl

  • Committer: Suren A. Chilingaryan
  • Date: 2011-01-26 02:48:39 UTC
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: csa@dside.dyndns.org-20110126024839-nv6qp2ie9stmd2dn
Support of Appled devices by Toni Pirhonen

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">
 
3
 <xsl:output method="html" encoding="utf-8"/>
 
4
<xsl:template match="result">
 
5
  <div class = "emailform">
 
6
        <div class="emailheading"><table class="headingtable"><tr><td><h1>List of Sensors</h1></td></tr></table>
 
7
  </div>
 
8
        <div class="emailcontent">
 
9
          <table>
 
10
          <tr><td>ID</td><td>Name</td></tr>
 
11
                <xsl:for-each select="value/item">
 
12
                        <tr><td><xsl:value-of select="itemid"/></td><td><xsl:value-of select="itemname"/></td></tr>
 
13
                </xsl:for-each>
 
14
                        <tr><td><button><xsl:attribute name="onclick">javascript:graph_control.closediv('sensordiv');</xsl:attribute>Close</button></td></tr>
 
15
          </table>
 
16
         </div>  
 
17
  </div>
 
18
</xsl:template>
 
19
</xsl:stylesheet>
 
20
         
 
 
b'\\ No newline at end of file'