Subversion Repositories general

Rev

Rev 936 | Rev 1243 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
936 dev 1
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
4
 
5
<html>
6
 
7
<head>
8
  <title><bean:write name="entry" property="title" /></title>
9
</head>
10
 
11
<body bgcolor="white">
12
 
13
<h1><bean:write name="entry" property="title" /></h1>
14
 
15
<p>
16
  <logic:empty name="prevEntry" property="path">
17
    &lt;&lt;
18
  </logic:empty>
19
  <logic:notEmpty name="prevEntry" property="path">
20
    <logic:equal name="prevEntry" property="isDir" value="true">
21
      <a href="index.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
22
    </logic:equal>
23
    <logic:equal name="prevEntry" property="isDir" value="false">
24
      <a href="page.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
25
    </logic:equal>
26
  </logic:notEmpty>
27
 
28
  <logic:notPresent name="index" property="path">
29
    &nbsp;
30
  </logic:notPresent>
31
  <logic:present name="index" property="path">
32
    <a href="index.do?path=<bean:write name="index" property="path" />">Index</a>
33
  </logic:present>
34
 
35
  <logic:empty name="nextEntry" property="path">
36
    &gt;&gt;
37
  </logic:empty>
38
  <logic:notEmpty name="nextEntry" property="path">
39
    <logic:equal name="nextEntry" property="isDir" value="true">
40
      <a href="index.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
41
    </logic:equal>
42
    <logic:equal name="nextEntry" property="isDir" value="false">
43
      <a href="page.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
44
    </logic:equal>
45
  </logic:notEmpty>
46
</p>
47
 
48
<p><a href="origin.do?path=<bean:write name="entry" property="path" />"
49
  ><img src="medium.do?path=<bean:write name="entry" property="path" />"
50
        alt="<bean:write name="entry" property="title" />"
51
        width="<bean:write name="entry" property="width" />"
52
        height="<bean:write name="entry" property="height" />"
53
        border=0></a></p>
54
 
55
</body>
56
 
57
</html>