1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
<?xml version="1.0"?>
<!--
-
- $Id$
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="common.xsl"/>
<!-- ====================================================================================== -->
<xsl:template match="/dev">
<xsl:apply-templates select="page"/>
</xsl:template>
<!-- ====================================================================================== -->
<xsl:template match="page">
<table align="center" cellpadding="0" cellspacing="0" border="0" id="info" width="70%">
<tr height="200">
<th style="text-align: center;">The message has been sent successfully to: <i><xsl:value-of select="//to"/></i></th>
</tr>
<xsl:if test="string(//page/@mode) != 'popup'">
<tr>
<th style="text-align: center;">
<hr/>
<xsl:choose>
<xsl:when test="return/@type = 'form'">
<xsl:call-template name="make_href">
<xsl:with-param name="url">javascript:Go();</xsl:with-param>
<xsl:with-param name="label">Close window</xsl:with-param>
<xsl:with-param name="title">Close window</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test="return/@type = 'url'">
<xsl:call-template name="make_href">
<xsl:with-param name="url"><xsl:value-of select="return"/></xsl:with-param>
<xsl:with-param name="label">OK</xsl:with-param>
<xsl:with-param name="title">OK</xsl:with-param>
<xsl:with-param name="params"><xsl:value-of select="eparams"/></xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="make_href">
<xsl:with-param name="url">write.vsp</xsl:with-param>
<xsl:with-param name="label">Write new message?</xsl:with-param>
<xsl:with-param name="title">Write new message?</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</th>
</tr>
</xsl:if>
</table>
<br/>
<xsl:call-template name="external_action"/>
</xsl:template>
<!-- ====================================================================================== -->
<xsl:template name="external_action">
<script>
<xsl:text>
function Go(){
if(opener){
</xsl:text>
<xsl:apply-templates select="return"/>
<xsl:apply-templates select="external_params"/>
<xsl:text>
opener_form.submit();
window.close();
}else{
alert('Missing parent window')
}
}
</xsl:text>
</script>
</xsl:template>
<!-- ====================================================================================== -->
<xsl:template match="return">
<xsl:text>opener_form = opener.document.</xsl:text>
<xsl:value-of select="."/>
<xsl:text>
</xsl:text>
</xsl:template>
<!-- ====================================================================================== -->
<xsl:template match="external_params">
<xsl:for-each select="*">
<xsl:text> opener_form.</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>.value = '</xsl:text>
<xsl:value-of select="."/>
<xsl:text>'
</xsl:text>
</xsl:for-each>
</xsl:template>
<!-- ====================================================================================== -->
</xsl:stylesheet>
|