Index: lams_central/conf/language/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_central/conf/language/Attic/ApplicationResources.properties,v diff -u -r1.2 -r1.3 --- lams_central/conf/language/ApplicationResources.properties 11 Apr 2006 12:00:34 -0000 1.2 +++ lams_central/conf/language/ApplicationResources.properties 11 May 2006 06:00:32 -0000 1.3 @@ -34,4 +34,9 @@ folder.already.exist=A folder with given name '{0}' already exists. can.not.rename.root.folder=Cannot rename the ROOT folder. organisations=Organisations -folders=Folders \ No newline at end of file +folders=Folders + + +authoring.msg.save.success=Congratulation, your content saved successfully! +label.authoring.close=Close +label.authoring.re.edit=Re-Edit Index: lams_central/conf/xdoclet/web-settings.xml =================================================================== RCS file: /usr/local/cvsroot/lams_central/conf/xdoclet/web-settings.xml,v diff -u -r1.10 -r1.11 --- lams_central/conf/xdoclet/web-settings.xml 14 Apr 2006 06:42:01 -0000 1.10 +++ lams_central/conf/xdoclet/web-settings.xml 11 May 2006 06:00:32 -0000 1.11 @@ -1,6 +1,6 @@ javax.servlet.jsp.jstl.fmt.localizationContext - org.lamsfoundation.lams.applicationResources + org.lamsfoundation.lams.central.ApplicationResources Index: lams_central/src/java/org/lamsfoundation/lams/authoring/web/AuthoringConstants.java =================================================================== RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/authoring/web/AuthoringConstants.java,v diff -u -r1.3 -r1.4 --- lams_central/src/java/org/lamsfoundation/lams/authoring/web/AuthoringConstants.java 3 Apr 2006 23:28:17 -0000 1.3 +++ lams_central/src/java/org/lamsfoundation/lams/authoring/web/AuthoringConstants.java 11 May 2006 06:00:31 -0000 1.4 @@ -32,5 +32,6 @@ /** Spring context name for refering to the authoring service */ public static final String AUTHORING_SERVICE_BEAN_NAME = "authoringService"; - + public static final String TOOL_SERVICE_BEAN_NAME = "lamsToolService"; + public static final String LAMS_AUTHORING_SUCCESS_FLAG = "LAMS_AUTHORING_SUCCESS_FLAG"; } Index: lams_central/src/java/org/lamsfoundation/lams/authoring/web/LamsAuthoringFinishAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/authoring/web/LamsAuthoringFinishAction.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_central/src/java/org/lamsfoundation/lams/authoring/web/LamsAuthoringFinishAction.java 11 May 2006 06:00:31 -0000 1.1 @@ -0,0 +1,127 @@ +/**************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2.0 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/* $Id: LamsAuthoringFinishAction.java,v 1.1 2006/05/11 06:00:31 steven Exp $ */ +package org.lamsfoundation.lams.authoring.web; + +import java.io.IOException; +import java.net.URLEncoder; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.apache.commons.lang.StringUtils; +import org.apache.log4j.Logger; +import org.apache.struts.action.Action; +import org.apache.struts.action.ActionForm; +import org.apache.struts.action.ActionForward; +import org.apache.struts.action.ActionMapping; +import org.lamsfoundation.lams.tool.IToolVO; +import org.lamsfoundation.lams.tool.ToolAccessMode; +import org.lamsfoundation.lams.tool.service.ILamsToolService; +import org.lamsfoundation.lams.util.Configuration; +import org.lamsfoundation.lams.util.ConfigurationKeys; +import org.lamsfoundation.lams.util.WebUtil; +import org.lamsfoundation.lams.web.util.AttributeNames; +import org.springframework.web.context.WebApplicationContext; +import org.springframework.web.context.support.WebApplicationContextUtils; + +/** + * This action class does some process when author try to save/cancel/close authoring tool pages. + * If author try to save tool page, this action will redirct tool page to confirm page and execute clearSession() method. + * If author try to cancel/close window, this action will execute clearSession(). + * + * @author Steve.Ni + * + * @version $Revision: 1.1 $ + */ +public abstract class LamsAuthoringFinishAction extends Action { + private static Logger log = Logger.getLogger(LamsAuthoringFinishAction.class); + + private static final String ACTION_NAME = "action"; + private static final String ACTION_MODE = "mode"; + private static final String TOOL_SIGNATURE = "signature"; + + private static final String CONFIRM_ACTION = "confirm"; + private static final String CANCEL_ACTION = "cancel"; + + private static final String RE_EDIT_URL = "reEditUrl"; + + + /** + * Action method, will handle save/cancel action. + */ + public ActionForward execute(ActionMapping mapping, ActionForm form, + HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { + String action = request.getParameter(ACTION_NAME); + String modeStr = request.getParameter(ACTION_MODE); + if(StringUtils.equals(ToolAccessMode.AUTHOR.toString(),modeStr)) + clearSession(request.getSession(),ToolAccessMode.AUTHOR); + if(StringUtils.equals(ToolAccessMode.LEARNER.toString(),modeStr)) + clearSession(request.getSession(),ToolAccessMode.LEARNER); + if(StringUtils.equals(ToolAccessMode.TEACHER.toString(),modeStr)) + clearSession(request.getSession(),ToolAccessMode.TEACHER); + + if(StringUtils.equals(action,CONFIRM_ACTION)){ + String nextUrl = getLamsUrl() + "authoringConfirm.jsp"; + + String signature = request.getParameter(TOOL_SIGNATURE); + Long toolContentId = new Long(WebUtil.readLongParam(request,AttributeNames.PARAM_TOOL_CONTENT_ID)); + IToolVO tool = getToolService().getToolBySignature(signature); + String reeditUrl = WebUtil.appendParameterToURL(getLamsUrl()+tool.getAuthorUrl(), AttributeNames.PARAM_TOOL_CONTENT_ID, + toolContentId.toString()); + + nextUrl = WebUtil.appendParameterToURL(nextUrl,RE_EDIT_URL,URLEncoder.encode(reeditUrl,"UTF-8")); + response.sendRedirect(nextUrl); + } + if(StringUtils.equals(action,CANCEL_ACTION)){ + } + return null; + } + /** + * All subclass will implements this method and execute clear HttpSession action to + * remove obsolete session values. + * + * @param session + * @param mode ToolAccessMode to decide which role's session will be clear. + */ + abstract public void clearSession(HttpSession session, ToolAccessMode mode); + + private String getLamsUrl(){ + String serverURL = Configuration.get(ConfigurationKeys.SERVER_URL); + + if ( StringUtils.isBlank(serverURL) ) { + log.warn("ServerURLTag unable to write out server URL as it is missing from the configuration file."); + } + + return serverURL; + } + + + public ILamsToolService getToolService(){ + WebApplicationContext webContext = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServlet().getServletContext()); + return (ILamsToolService) webContext.getBean(AuthoringConstants.TOOL_SERVICE_BEAN_NAME); + } +} Index: lams_central/web/authoringConfirm.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/authoringConfirm.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_central/web/authoringConfirm.jsp 11 May 2006 06:00:32 -0000 1.1 @@ -0,0 +1,34 @@ +<%@ taglib uri="tags-fmt" prefix="fmt"%> +<%@ taglib uri="tags-lams" prefix="lams"%> +<%@ taglib uri="tags-html" prefix="html"%> + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + Index: lams_central/web/WEB-INF/lams.tld =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/WEB-INF/Attic/lams.tld,v diff -u -r1.11 -r1.12 --- lams_central/web/WEB-INF/lams.tld 19 Apr 2006 02:14:44 -0000 1.11 +++ lams_central/web/WEB-INF/lams.tld 11 May 2006 06:00:31 -0000 1.12 @@ -274,5 +274,9 @@ SetEditor /WEB-INF/tags/SetEditor.tag + + AuthoringButton + /WEB-INF/tags/AuthoringButton.tag + Index: lams_central/web/WEB-INF/web.xml =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/WEB-INF/Attic/web.xml,v diff -u -r1.18 -r1.19 --- lams_central/web/WEB-INF/web.xml 14 Apr 2006 06:42:01 -0000 1.18 +++ lams_central/web/WEB-INF/web.xml 11 May 2006 06:00:31 -0000 1.19 @@ -3,7 +3,7 @@ javax.servlet.jsp.jstl.fmt.localizationContext - org.lamsfoundation.lams.applicationResources + org.lamsfoundation.lams.central.ApplicationResources Index: lams_central/web/WEB-INF/tags/AuthoringButton.tag =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/WEB-INF/tags/AuthoringButton.tag,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_central/web/WEB-INF/tags/AuthoringButton.tag 11 May 2006 06:00:31 -0000 1.1 @@ -0,0 +1,82 @@ +<% +/**************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2.0 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + + /** + * AuthoringButton.tag + * Author: Dapeng Ni + * Description: Creates the save/cancel button for authoring page + */ + + %> +<%@ tag body-content="scriptless" %> +<%@ taglib uri="tags-core" prefix="c" %> +<%@ taglib uri="tags-fmt" prefix="fmt" %> +<%@ taglib uri="tags-html" prefix="html" %> + +<%@ attribute name="formID" required="true" rtexprvalue="true" %> +<%@ attribute name="toolSignature" required="true" rtexprvalue="true" %> +<%@ attribute name="toolContentID" required="true" rtexprvalue="true" %> +<%@ attribute name="clearSessionActionUrl" required="true" rtexprvalue="true" %> + +<%@ attribute name="cancelButtonLabelKey" required="false" rtexprvalue="true" %> +<%@ attribute name="saveButtonLabelKey" required="false" rtexprvalue="true" %> +<%@ attribute name="cancelConfirmMsgKey" required="false" rtexprvalue="true" %> + +<%-- Default value for message key --%> + + + + + + + + + + + + +

+ + + + + + +

+ \ No newline at end of file Index: lams_central/web/css/default.css =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/css/Attic/default.css,v diff -u -r1.5 -r1.6 --- lams_central/web/css/default.css 10 Mar 2006 06:31:34 -0000 1.5 +++ lams_central/web/css/default.css 11 May 2006 06:00:32 -0000 1.6 @@ -71,6 +71,13 @@ text-align: left; } +.error { + font-size: small; + color: red; + font-style: normal; + text-align: left; +} + /********* tab styles **********/ /*tab styles*/ .tab{ Index: lams_central/web/images/license/.cvsignore =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/images/license/.cvsignore,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_central/web/images/license/.cvsignore 11 May 2006 06:00:32 -0000 1.1 @@ -0,0 +1 @@ +Thumbs.db Index: lams_tool_larsrc/.classpath =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/.classpath,v diff -u -r1.2 -r1.3 --- lams_tool_larsrc/.classpath 22 Mar 2006 04:43:19 -0000 1.2 +++ lams_tool_larsrc/.classpath 11 May 2006 06:00:47 -0000 1.3 @@ -19,5 +19,6 @@ + Index: lams_tool_larsrc/conf/language/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/conf/language/Attic/ApplicationResources.properties,v diff -u -r1.16 -r1.17 --- lams_tool_larsrc/conf/language/ApplicationResources.properties 8 May 2006 06:52:06 -0000 1.16 +++ lams_tool_larsrc/conf/language/ApplicationResources.properties 11 May 2006 06:00:47 -0000 1.17 @@ -1,6 +1,7 @@ # CVS ID: $Id$ # # Language strings for the Share resources tool. # ========== Values for tool and library activity. Sent to Flash as part of the learning design toolkit. ====== +signature=larsrc11 activity.title=Share Resources activity.description=Sharing resource with others. activity.helptext=Uploading your resources to share with others. @@ -97,8 +98,9 @@ error.msg.repository=Repository occurs exception while trying to upload file. error.msg.default.content.not.find=Could not retrieve default content record for this tool. -authoring.save.success=Authoring save successfully. msg.no.instruction=No instruction available. +authoring.msg.cancel.save=Do you want to exit without saving? + #-------------------------END Authoring Labels END-----------------# #------------------------------Learner ----------------------------------# label.learning.title=Share Resource Learning Index: lams_tool_larsrc/conf/xdoclet/struts-actions.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/conf/xdoclet/struts-actions.xml,v diff -u -r1.22 -r1.23 --- lams_tool_larsrc/conf/xdoclet/struts-actions.xml 5 May 2006 03:31:18 -0000 1.22 +++ lams_tool_larsrc/conf/xdoclet/struts-actions.xml 11 May 2006 06:00:47 -0000 1.23 @@ -196,4 +196,8 @@ parameter="showitem" > + + + \ No newline at end of file Index: lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java,v diff -u -r1.22 -r1.23 --- lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java 5 May 2006 03:31:18 -0000 1.22 +++ lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java 11 May 2006 06:00:47 -0000 1.23 @@ -55,6 +55,7 @@ import org.apache.struts.action.ActionMessage; import org.apache.struts.action.ActionMessages; import org.apache.struts.upload.FormFile; +import org.lamsfoundation.lams.authoring.web.AuthoringConstants; import org.lamsfoundation.lams.contentrepository.client.IToolContentHandler; import org.lamsfoundation.lams.tool.ToolAccessMode; import org.lamsfoundation.lams.tool.rsrc.ResourceConstants; @@ -523,9 +524,7 @@ log.error(e); } - ActionMessages messages = new ActionMessages(); - messages.add(ActionMessages.GLOBAL_MESSAGE,new ActionMessage("authoring.save.success")); - this.addMessages(request,messages); + request.setAttribute(AuthoringConstants.LAMS_AUTHORING_SUCCESS_FLAG,Boolean.TRUE); if(mode.isAuthor()) return mapping.findForward("author"); else Index: lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/ClearSessionAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/ClearSessionAction.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/ClearSessionAction.java 11 May 2006 06:00:47 -0000 1.1 @@ -0,0 +1,47 @@ +/**************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2.0 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/* $Id$ */ +package org.lamsfoundation.lams.tool.rsrc.web.action; + +import javax.servlet.http.HttpSession; + +import org.lamsfoundation.lams.authoring.web.LamsAuthoringFinishAction; +import org.lamsfoundation.lams.tool.ToolAccessMode; +import org.lamsfoundation.lams.tool.rsrc.ResourceConstants; + + +public class ClearSessionAction extends LamsAuthoringFinishAction { + + @Override + public void clearSession(HttpSession session, ToolAccessMode mode) { + session.removeAttribute(ResourceConstants.ATTR_TOOL_CONTENT_ID); + session.removeAttribute(ResourceConstants.ATT_ATTACHMENT_LIST); + session.removeAttribute(ResourceConstants.ATTR_DELETED_ATTACHMENT_LIST); + session.removeAttribute(ResourceConstants.ATTR_RESOURCE_ITEM_LIST); + session.removeAttribute(ResourceConstants.ATTR_DELETED_RESOURCE_ITEM_LIST); + session.removeAttribute(ResourceConstants.ATTR_DELETED_RESOURCE_ITEM_ATTACHMENT_LIST); + } + + +} Index: lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag 11 May 2006 06:00:48 -0000 1.1 @@ -0,0 +1,82 @@ +<% +/**************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2.0 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + + /** + * AuthoringButton.tag + * Author: Dapeng Ni + * Description: Creates the save/cancel button for authoring page + */ + + %> +<%@ tag body-content="scriptless" %> +<%@ taglib uri="tags-core" prefix="c" %> +<%@ taglib uri="tags-fmt" prefix="fmt" %> +<%@ taglib uri="tags-html" prefix="html" %> + +<%@ attribute name="formID" required="true" rtexprvalue="true" %> +<%@ attribute name="toolSignature" required="true" rtexprvalue="true" %> +<%@ attribute name="toolContentID" required="true" rtexprvalue="true" %> +<%@ attribute name="clearSessionActionUrl" required="true" rtexprvalue="true" %> + +<%@ attribute name="cancelButtonLabelKey" required="false" rtexprvalue="true" %> +<%@ attribute name="saveButtonLabelKey" required="false" rtexprvalue="true" %> +<%@ attribute name="cancelConfirmMsgKey" required="false" rtexprvalue="true" %> + +<%-- Default value for message key --%> + + + + + + + + + + + + +

+ + + + + + +

+ \ No newline at end of file Index: lams_tool_larsrc/web/WEB-INF/tlds/lams/lams.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/WEB-INF/tlds/lams/lams.tld,v diff -u -r1.1 -r1.2 --- lams_tool_larsrc/web/WEB-INF/tlds/lams/lams.tld 24 Mar 2006 06:23:57 -0000 1.1 +++ lams_tool_larsrc/web/WEB-INF/tlds/lams/lams.tld 11 May 2006 06:00:48 -0000 1.2 @@ -33,6 +33,7 @@ empty + Output details from the shared session UserDTO object property true @@ -63,6 +64,7 @@ empty + Output stylesheet based on the user preferences. localLink false @@ -272,5 +274,9 @@ SetEditor /WEB-INF/tags/SetEditor.tag + + AuthoringButton + /WEB-INF/tags/AuthoringButton.tag + Index: lams_tool_larsrc/web/pages/authoring/authoring.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/authoring/authoring.jsp,v diff -u -r1.8 -r1.9 --- lams_tool_larsrc/web/pages/authoring/authoring.jsp 13 Apr 2006 01:31:56 -0000 1.8 +++ lams_tool_larsrc/web/pages/authoring/authoring.jsp 11 May 2006 06:00:48 -0000 1.9 @@ -1,25 +1,23 @@ -<%@ include file="/common/taglibs.jsp" %> -<%@ page import="java.util.HashSet" %> -<%@ page import="java.util.Set" %> - <% - - Set tabs = new HashSet(); - tabs.add("label.authoring.heading.basic"); - tabs.add("label.authoring.heading.advance"); - tabs.add("label.authoring.heading.instructions"); - pageContext.setAttribute("tabs", tabs); - - %> +<%@ include file="/common/taglibs.jsp"%> +<%@ page import="java.util.HashSet"%> +<%@ page import="java.util.Set"%> +<%Set tabs = new HashSet(); + tabs.add("label.authoring.heading.basic"); + tabs.add("label.authoring.heading.advance"); + tabs.add("label.authoring.heading.instructions"); + pageContext.setAttribute("tabs", tabs); + + %> - <fmt:message key="label.author.title"/> - - <%@ include file="/common/header.jsp" %> - <%@ include file="/common/fckeditorheader.jsp" %> + <fmt:message key="label.author.title" /> + + <%@ include file="/common/header.jsp"%> + <%@ include file="/common/fckeditorheader.jsp"%> + + - - - + + + - - - + + + -

+

+ +

- - - -
- - - - -
- <%@ include file="/common/messages.jsp" %> -
+ + + +
+ + + + +
+ <%@ include file="/common/messages.jsp"%> +
- - - - - - - + + + - - - + + + + + + - -

- - - - - - -

-
- - - + + <%-- Default value + label.authoring.cancel.button + label.authoring.save.button + authoring.msg.cancel.save + --%> + + + + + +
+ + + +