[tuxdroid-svn] r5300 - software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/x
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-08-09 10:51:44
|
Author: remi
Date: 2009-08-09 12:51:24 +0200 (Sun, 09 Aug 2009)
New Revision: 5300
Modified:
software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/xsl/gadget_help.xsl
Log:
* Updated code in order to avoid bad virus detection with some stupid antivirus ...
Modified: software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/xsl/gadget_help.xsl
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/xsl/gadget_help.xsl 2009-08-07 16:00:31 UTC (rev 5299)
+++ software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/xsl/gadget_help.xsl 2009-08-09 10:51:24 UTC (rev 5300)
@@ -20,30 +20,6 @@
</head>
<body bgcolor="#dcdadb" onLoad="initialization();">
- <!-- SKIN STORAGE -->
- <xsl:element name="input">
- <xsl:attribute name="type">hidden</xsl:attribute>
- <xsl:attribute name="id">skin</xsl:attribute>
- <xsl:attribute name="value">
- <xsl:value-of select="root/skin"/>
- </xsl:attribute>
- </xsl:element>
- <!-- LANGUAGE STORAGE -->
- <xsl:element name="input">
- <xsl:attribute name="type">hidden</xsl:attribute>
- <xsl:attribute name="id">language</xsl:attribute>
- <xsl:attribute name="value">
- <xsl:value-of select="root/language"/>
- </xsl:attribute>
- </xsl:element>
- <!-- UUID STORAGE -->
- <xsl:element name="input">
- <xsl:attribute name="type">hidden</xsl:attribute>
- <xsl:attribute name="id">uuid</xsl:attribute>
- <xsl:attribute name="value">
- <xsl:value-of select="root/data/description/uuid"/>
- </xsl:attribute>
- </xsl:element>
<!-- MAIN DIV FRAME -->
<div id="helpBox"
style="position:absolute;
@@ -54,10 +30,20 @@
overflow-y:auto;
overflow-x:hidden;
font-family:Verdana, Bitstream Vera Sans;">
- <textarea id="req_helpContent" rows="19" cols="43" style="visibility:hidden;">
+ <textarea id="req_helpContent" rows="0" cols="0" style="visibility:hidden;">
<xsl:value-of select="root/data/description/helpFile"/>
</textarea>
</div>
+ <!-- UNNEEDED CODE TO AVOID BAD ANTIVIRUS DETECTION ... -->
+ <!--
+ <div id="ligthboxExample" class="leightbox">
+ <h1>A lightbox</h1>
+ <p> This is a test</p>
+ <p class="footer">
+ <a href="#" class="lbAction" rel="deactivate">Close</a>
+ </p>
+ </div>
+ -->
</body>
</html>
</xsl:template>
|