Subversion Repositories general

Rev

Rev 962 | Rev 1244 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<html>

<head>
  <title><bean:write name="entry" property="title" /></title>
</head>

<body bgcolor="white">

<h1><bean:write name="entry" property="title" /></h1>

<logic:notEmpty name="entry" property="subtitle">
  <p><bean:write name="entry" property="subtitle" /></p>
</logic:notEmpty>

<logic:notEmpty name="entry" property="comment">
  <p><bean:write name="entry" property="comment" /></p>
</logic:notEmpty>

<p>
  <logic:empty name="prevEntry" property="path">
    &lt;&lt;
  </logic:empty>
  <logic:notEmpty name="prevEntry" property="path">
    <logic:equal name="prevEntry" property="isDir" value="true">
      <a href="index.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
    </logic:equal>
    <logic:equal name="prevEntry" property="isDir" value="false">
      <a href="page.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
    </logic:equal>
  </logic:notEmpty>

  <logic:notPresent name="index" property="path">
    &nbsp;
  </logic:notPresent>
  <logic:present name="index" property="path">
    <a href="index.do?path=<bean:write name="index" property="path" />">Index</a>
  </logic:present>

  <logic:empty name="nextEntry" property="path">
    &gt;&gt;
  </logic:empty>
  <logic:notEmpty name="nextEntry" property="path">
    <logic:equal name="nextEntry" property="isDir" value="true">
      <a href="index.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
    </logic:equal>
    <logic:equal name="nextEntry" property="isDir" value="false">
      <a href="page.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
    </logic:equal>
  </logic:notEmpty>
</p>

<p><a href="origin.do?path=<bean:write name="entry" property="path" />"
  ><img src="medium.do?path=<bean:write name="entry" property="path" />"
        alt="<bean:write name="entry" property="title" />"
        width="<bean:write name="entry" property="width" />"
        height="<bean:write name="entry" property="height" />"
        border=0></a></p>

</body>

</html>