packages.xhtml

来自「原名JSPackager」· XHTML 代码 · 共 46 行

XHTML
46
字号
<?xml version="1.0" encoding="utf-8" ?>
<html xmlns="http://www.xidea.org/taglib/xhtml"
	xmlns:c="http://www.xidea.org/taglib/core">
<head>
<base href="${$JSI.scriptBase}org/xidea/jsdoc/" target="content" />
<link rel="stylesheet" type="text/css" href="${css}" />
<meta http-equiv="Content-Type" content="text/html;utf-8" />
<title>Packages Index</title>
</head>
<body>
<h2>Packages:</h2>
<table width="98%" class="content" cellpadding="0"
	cellspacing="0">
	<thead>
		<tr>
			<th colspan="2"></th>
		</tr>
	</thead>
	<tbody>
		<c:forEach var="pkgInfo" items="${packageInfos}">

			<c:if test="${pkgInfo.implementation}">
				<tr>
					<td><a class="pkg-ref"
						onclick="return parent.jsdoc.gen({cmd:'genPackage',args:['${pkgInfo.implementation}']},'')"
						href="#">${pkgInfo.name} </a></td>
					<td>鎸囧悜: ${pkgInfo.implementation}</td>

				</tr>
			</c:if>
			<c:else>
				<tr>
					<td><a class="pkg"
						onclick="return parent.jsdoc.gen({cmd:'genPackage',args:['${pkgInfo.name}']},'')"
						href="#">${pkgInfo.name} </a></td>
					<td><c:out value="${pkgInfo.getDescription()}" default="&#160;" escapeXml='false'/></td>
				</tr>
			</c:else>

		</c:forEach>
	</tbody>
</table>

</body>
</html>

⌨️ 快捷键说明

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