Subversion Repositories general

Rev

Rev 1243 | Rev 1252 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1243 Rev 1244
Line 1... Line 1...
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
5
<html>
6
<html>
6
 
7
 
7
<head>
8
<head>
8
  <title><bean:write name="entry" property="title" /></title>
9
  <title><bean:write name="entry" property="title" /></title>
-
 
10
  <link href="res/styles.css" rel="stylesheet">
-
 
11
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
9
</head>
12
</head>
10
 
13
 
11
<body bgcolor="white">
14
<body bgcolor="white" id="slide">
12
 
15
 
-
 
16
<div id="divActivity">
-
 
17
  <div id="divImageActivity">
13
<h1><bean:write name="entry" property="title" /></h1>
18
    <table border="0" cellspacing="0" cellpadding="0" width="185">
-
 
19
      <tr>
-
 
20
        <td colspan="3" width="185" class="ImagePaneHeader">Image activities</td>
-
 
21
      </tr>
14
 
22
 
15
<logic:notEmpty name="entry" property="subtitle">
23
    <logic:present name="index" property="path">
-
 
24
      <tr>
-
 
25
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
26
        <td width="183" class="ImagePaneRow"><a
16
  <p><bean:write name="entry" property="subtitle" /></p>
27
          href="index.do?path=<bean:write name="index" property="path" />" class="ImagePaneRow"><img
-
 
28
          src="res/FolderUp.gif" border="0" align="absmiddle"
-
 
29
          style="margin-right: 5px;"/>Back to index page</a></td>
-
 
30
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
31
      </tr>
17
</logic:notEmpty>
32
    </logic:present>
18
 
33
 
19
<logic:notEmpty name="entry" property="comment">
34
    <logic:notEmpty name="nextEntry" property="path">
-
 
35
      <tr>
-
 
36
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
37
        <td width="183" class="ImagePaneRow"><a
-
 
38
          <logic:equal name="nextEntry" property="isDir" value="true">
-
 
39
            href="index.do?path=<bean:write name="nextEntry" property="path" />"
-
 
40
          </logic:equal>
-
 
41
          <logic:equal name="nextEntry" property="isDir" value="false">
20
  <p><bean:write name="entry" property="comment" /></p>
42
            href="page.do?path=<bean:write name="nextEntry" property="path" />"
-
 
43
          </logic:equal>
-
 
44
          class="ImagePaneRow"><img
-
 
45
          src="res/Forward.gif" border="0" align="absmiddle" style="margin-right: 5px;"/>Next image</a></td>
-
 
46
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
47
      </tr>
21
</logic:notEmpty>
48
    </logic:notEmpty>
22
 
49
 
23
<p>
-
 
24
  <logic:empty name="prevEntry" property="path">
50
    <logic:notEmpty name="prevEntry" property="path">
25
    &lt;&lt;
51
      <tr>
26
  </logic:empty>
52
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
27
  <logic:notEmpty name="prevEntry" property="path">
53
        <td width="183" class="ImagePaneRow"><a
28
    <logic:equal name="prevEntry" property="isDir" value="true">
54
          <logic:equal name="prevEntry" property="isDir" value="true">
29
      <a href="index.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
55
            href="index.do?path=<bean:write name="prevEntry" property="path" />"
30
    </logic:equal>
56
          </logic:equal>
31
    <logic:equal name="prevEntry" property="isDir" value="false">
57
          <logic:equal name="prevEntry" property="isDir" value="false">
32
      <a href="page.do?path=<bean:write name="prevEntry" property="path" />">&lt;&lt;</a>
58
            href="page.do?path=<bean:write name="prevEntry" property="path" />"
33
    </logic:equal>
59
          </logic:equal>
-
 
60
          class="ImagePaneRow"><img
-
 
61
          src="res/Back.gif" border="0" align="absmiddle" style="margin-right: 5px;"/>Previous image</a></td>
-
 
62
        <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
63
      </tr>
34
  </logic:notEmpty>
64
    </logic:notEmpty>
35
 
65
 
-
 
66
      <tr>
36
  <logic:notPresent name="index" property="path">
67
        <td width="185" colspan="3" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
37
    &nbsp;
68
      </tr>
38
  </logic:notPresent>
69
    </table>
39
  <logic:present name="index" property="path">
-
 
40
    <a href="index.do?path=<bean:write name="index" property="path" />">Index</a>
-
 
41
  </logic:present>
70
  </div>
42
 
71
 
43
  <logic:empty name="nextEntry" property="path">
-
 
44
    &gt;&gt;
-
 
45
  </logic:empty>
72
  <div id="divInfoActivity">
46
  <logic:notEmpty name="nextEntry" property="path">
-
 
47
    <logic:equal name="nextEntry" property="isDir" value="true">
73
    <table border="0" cellspacing="0" cellpadding="0" width="185" ID="Table1">
48
      <a href="index.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
-
 
49
    </logic:equal>
74
      <tr>
50
    <logic:equal name="nextEntry" property="isDir" value="false">
-
 
51
      <a href="page.do?path=<bean:write name="nextEntry" property="path" />">&gt;&gt;</a>
75
        <td colspan="3" width="185" class="InfoPaneHeader">Information</td>
52
    </logic:equal>
76
      </tr>
53
  </logic:notEmpty>
-
 
54
</p>
-
 
55
 
77
 
-
 
78
      <tr>
-
 
79
        <td width="1" class="InfoPaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
80
        <td width="183" class="InfoPaneRow">
-
 
81
        <logic:notEmpty name="entry" property="comment">
-
 
82
          <bean:write name="entry" property="comment" />
-
 
83
        </logic:notEmpty>
-
 
84
        </td>
-
 
85
        <td width="1" class="InfoPaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
86
      </tr>
-
 
87
 
-
 
88
      <tr>
-
 
89
        <td width="185" colspan="3" class="InfoPaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td>
-
 
90
      </tr>
-
 
91
    </table>
-
 
92
  </div>
-
 
93
</div>
-
 
94
 
-
 
95
<div id="divMainSlideHeader"><bean:write name="entry" property="title" />
-
 
96
<logic:notEmpty name="entry" property="subtitle">
-
 
97
  <div id="divMainSlideSubtitle"><bean:write name="entry" property="subtitle" /></div>
-
 
98
</logic:notEmpty>
-
 
99
</div>
-
 
100
<div id="divMain" align="center">
56
<p><a href="origin.do?path=<bean:write name="entry" property="path" />"
101
  <a href="origin.do?path=<bean:write name="entry" property="path" />" target="_blank"><img
57
  ><img src="medium.do?path=<bean:write name="entry" property="path" />"
102
    src="medium.do?path=<bean:write name="entry" property="path" />"
58
        alt="<bean:write name="entry" property="title" />"
103
    alt="<bean:write name="entry" property="title" />"
59
        width="<bean:write name="entry" property="width" />"
104
    width="<bean:write name="entry" property="width" />"
60
        height="<bean:write name="entry" property="height" />"
105
    height="<bean:write name="entry" property="height" />"
61
        border=0></a></p>
106
    border=0></a></p>
-
 
107
  <br>
-
 
108
</div>
62
 
109
 
63
</body>
110
</body>
64
 
111
 
65
</html>
112
</html>