<%@ page language='java' session='true' %>
<%@ page pageEncoding="Shift_JIS" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
<%@ taglib prefix="ushi" uri="ushitag" %>
<html lang="ja">
<body>
<p>
<table border="1">
<c:forEach var="index" items="01,02,03,04,05,06,07,08,09,10,11,12,13,14,15">
<c:set var="file" value="/memodist/tss3/koma${index}.xml" />
<c:set var="reluri" value="../tss3/koma${index}.xml" />
<ushi:import var="docString" fileNameVar="file" charEncoding="EucJP" />
<x:parse var="document" xml="${docString}" systemId="${reluri}" />
<x:forEach select="$document//document/category/entry">
<c:set var="qq"><x:out select="qq"/></c:set>
<c:set var="aa"><x:out select="aa"/></c:set>
<tr>
<td bgcolor="#cccccc">
<a href="<c:out value='${reluri}'/>#<x:out select='id'/>">
<x:out select="id" />
</a>
</td>
<td><x:out select="qq" /></td>
<td><x:out select="aa" /></td>
</tr>
</x:forEach>
</c:forEach>
</body></html>
|