⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 group-list.xsl.svn-base

📁 由国外的一个著名的geonetwork修改而来
💻 SVN-BASE
字号:
<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">		<xsl:include href="main.xsl"/>	<!--	additional scripts	-->	<xsl:template mode="script" match="/">		<script type="text/javascript" language="JavaScript">			function edit(a)			{				document.groupEditForm.id.value=a;				document.groupEditForm.submit();			}					function delete1(b)			{				if(confirm("Delete the group ?"))				{					document.groupDeleteForm.id.value=b;					document.groupDeleteForm.submit();				}			}		</script>	</xsl:template>		<!--	page content	-->	<xsl:template name="content">		<xsl:call-template name="formLayout">			<xsl:with-param name="title" select="/root/gui/strings/groupManagement"/>			<xsl:with-param name="content">				<xsl:call-template name="form"/>			</xsl:with-param>			<xsl:with-param name="buttons">				<button class="content" onclick="goBack()"><xsl:value-of select="/root/gui/strings/back"/></button>				&#160;				<button class="content" onclick="load('{/root/gui/locService}/group.get')"><xsl:value-of select="/root/gui/strings/newGroup"/></button>			</xsl:with-param>		</xsl:call-template>	</xsl:template>		<!--	form	-->	<xsl:template name="form">		<table>			<tr>				<th class="padded"><xsl:value-of select="/root/gui/strings/name"/></th>				<th class="padded"><xsl:value-of select="/root/gui/strings/descriptionTab"/></th>				<th class="padded"><xsl:value-of select="/root/gui/strings/emailAddress"/></th>				<th class="padded"><xsl:value-of select="/root/gui/strings/operation"/></th>			</tr>			<xsl:for-each select="/root/response/record">				<tr>					<td class="padded"><xsl:value-of select="name"/></td>					<td class="padded" width="150"><xsl:value-of select="description"/></td>					<td class="padded"><xsl:value-of select="email"/></td>					<td class="padded">						<button class="content" onclick="load('{/root/gui/locService}/group.get?id={id}')"><xsl:value-of select="/root/gui/strings/edit"/></button>						&#160;						<button class="content" onclick="load('{/root/gui/locService}/group.remove?id={id}')"><xsl:value-of select="/root/gui/strings/delete"/></button>					</td>				</tr>			</xsl:for-each>		</table>	</xsl:template>	</xsl:stylesheet>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -