Rev 1244 | 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 | |||
1244 | dev | 5 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
936 | dev | 6 | <html> |
7 | |||
8 | <head> |
||
9 | <title><bean:write name="entry" property="title" /></title> |
||
1244 | dev | 10 | <link href="res/styles.css" rel="stylesheet"> |
11 | <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
||
936 | dev | 12 | </head> |
13 | |||
1244 | dev | 14 | <body bgcolor="white" id="slide"> |
936 | dev | 15 | |
1244 | dev | 16 | <div id="divActivity"> |
17 | <div id="divImageActivity"> |
||
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> |
||
936 | dev | 22 | |
1244 | dev | 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 |
||
1252 | dev | 27 | href="index.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="index" property="path" />" class="ImagePaneRow"><img |
1244 | dev | 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> |
||
32 | </logic:present> |
||
1243 | dev | 33 | |
1244 | dev | 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"> |
||
1252 | dev | 39 | href="index.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="nextEntry" property="path" />" |
1244 | dev | 40 | </logic:equal> |
41 | <logic:equal name="nextEntry" property="isDir" value="false"> |
||
1252 | dev | 42 | href="page.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="nextEntry" property="path" />" |
1244 | dev | 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> |
||
48 | </logic:notEmpty> |
||
1243 | dev | 49 | |
1244 | dev | 50 | <logic:notEmpty name="prevEntry" property="path"> |
51 | <tr> |
||
52 | <td width="1" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td> |
||
53 | <td width="183" class="ImagePaneRow"><a |
||
54 | <logic:equal name="prevEntry" property="isDir" value="true"> |
||
1252 | dev | 55 | href="index.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="prevEntry" property="path" />" |
1244 | dev | 56 | </logic:equal> |
57 | <logic:equal name="prevEntry" property="isDir" value="false"> |
||
1252 | dev | 58 | href="page.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="prevEntry" property="path" />" |
1244 | dev | 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> |
||
64 | </logic:notEmpty> |
||
936 | dev | 65 | |
1244 | dev | 66 | <tr> |
67 | <td width="185" colspan="3" class="ImagePaneFrame"><img src="res/1x1.gif" width="1" height="1"/></td> |
||
68 | </tr> |
||
69 | </table> |
||
70 | </div> |
||
936 | dev | 71 | |
1244 | dev | 72 | <div id="divInfoActivity"> |
73 | <table border="0" cellspacing="0" cellpadding="0" width="185" ID="Table1"> |
||
74 | <tr> |
||
75 | <td colspan="3" width="185" class="InfoPaneHeader">Information</td> |
||
76 | </tr> |
||
936 | dev | 77 | |
1244 | dev | 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> |
||
936 | dev | 87 | |
1244 | dev | 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"> |
||
1252 | dev | 101 | <a href="origin.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="entry" property="path" />" target="_blank"><img |
102 | src="medium.do?branch=<bean:write name="pathForm" property="branch" />&path=<bean:write name="entry" property="path" />" |
||
1244 | dev | 103 | alt="<bean:write name="entry" property="title" />" |
104 | width="<bean:write name="entry" property="width" />" |
||
105 | height="<bean:write name="entry" property="height" />" |
||
106 | border=0></a></p> |
||
107 | <br> |
||
108 | </div> |
||
109 | |||
936 | dev | 110 | </body> |
111 | |||
112 | </html> |