ktlili 2005/10/20 17:30:38 CEST
Modified files:
core/src/webapp/jsp/clipbuilder/html/actions browseAction.jsp
Log:
- add buttons tool bar under iframe
Revision Changes Path
1.4 +49 -0
jahia/core/src/webapp/jsp/clipbuilder/html/actions/browseAction.jsp
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/webapp/jsp/clipbuilder/html/actions/browseAction.jsp.diff?r1=1.3&r2=1.4&f=h
Index: browseAction.jsp
===================================================================
RCS file:
/home/cvs/repository/jahia/core/src/webapp/jsp/clipbuilder/html/actions/browseAction.jsp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- browseAction.jsp 18 Oct 2005 11:37:36 -0000 1.3
+++ browseAction.jsp 20 Oct 2005 15:30:38 -0000 1.4
@@ -150,6 +150,55 @@
<table width="100%">
<iframe id="clip_builder"
src="<%=response.encodeURL(request.getContextPath()+"/webBrowser.do")%>"
width="100%" height="375" frameborder="1" scrolling="auto"></iframe>
</table>
+ <!-- Buttons -->
+ <table align="center" class="principal" width="100%">
+ <tr>
+ <td class="topmenubuttons">
+ <!-- Init-->
+ <html:submit property="webClippingAction">
+ <bean:message key="browse.resetRecord"/>
+ </html:submit>
+ <logic:equal name="recording" property="statut" value="0">
+ <!-- Not recording-->
+ <!-- Start -->
+ <logic:present name="selectPartForm">
+ <html:submit property="webClippingAction" disabled="true">
+ <bean:message key="browse.startRecord"/>
+ </html:submit>
+ </logic:present>
+ <logic:notPresent name="selectPartForm">
+ <html:submit property="webClippingAction" disabled="false">
+ <bean:message key="browse.startRecord"/>
+ </html:submit>
+ </logic:notPresent>
+ <!-- Remove last -->
+ <html:submit property="webClippingAction" disabled="true">
+ <bean:message key="browse.removeLast"/>
+ </html:submit>
+ <!-- Replay: this feature has been removed -->
+ <!-- Next -->
+ <html:submit property="webClippingAction" disabled="true">
+ <bean:message key="button.next"/>
+ </html:submit>
+ </logic:equal>
+ <logic:equal name="recording" property="statut" value="1">
+ <!-- Recording-->
+ <!-- Stop -->
+ <html:submit property="webClippingAction">
+ <bean:message key="browse.stopRecord"/>
+ </html:submit>
+ <!-- Remove Last -->
+ <html:submit property="webClippingAction" disabled="false">
+ <bean:message key="browse.removeLast"/>
+ </html:submit>
+ <!-- Next -->
+ <html:submit property="webClippingAction" disabled="false">
+ <bean:message key="button.next"/>
+ </html:submit>
+ </logic:equal>
+ </td>
+ </tr>
+ </table>
</html:form>
</table>
<!-- HTML page -->