Subversion Repositories general

Rev

Rev 962 | Rev 1244 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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