Index: lams_tool_larsrc/conf/language/ApplicationResources.properties =================================================================== diff -u -r80c80183c1497f0ba84e9ab1fa78a2fbb369ef65 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision 80c80183c1497f0ba84e9ab1fa78a2fbb369ef65) +++ lams_tool_larsrc/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -73,9 +73,10 @@ label.authoring.advance.allow.learner.add.urls=Allow learners to add URLs label.authoring.advance.allow.learner.add.files=Allow learners to add Files - +lable.next.instruction=Next Instruction label.authoring.save.button=Save label.authoring.cancel.button=Cancel +lable.description=Description: authoring.exception= There is a problem in shared resources authoring page, the reason is {0} Index: lams_tool_larsrc/conf/xdoclet/struts-actions.xml =================================================================== diff -u -rf644eb2a669882b4938c6b49bb0441e70bb7adb9 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/conf/xdoclet/struts-actions.xml (.../struts-actions.xml) (revision f644eb2a669882b4938c6b49bb0441e70bb7adb9) +++ lams_tool_larsrc/conf/xdoclet/struts-actions.xml (.../struts-actions.xml) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -116,11 +116,25 @@ parameter="removeItemAttachment"> + + + - - + - + name="instructionNavForm" + scope="session" + validate="false" + parameter="displayItem"> + + + + \ No newline at end of file Index: lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/ResourceConstants.java =================================================================== diff -u -r80c80183c1497f0ba84e9ab1fa78a2fbb369ef65 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/ResourceConstants.java (.../ResourceConstants.java) (revision 80c80183c1497f0ba84e9ab1fa78a2fbb369ef65) +++ lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/ResourceConstants.java (.../ResourceConstants.java) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -52,6 +52,7 @@ public static final String ATTR_DELETED_ATTACHMENT_LIST = "deletedAttachmmentList"; public static final String ATTR_DELETED_RESOURCE_ITEM_ATTACHMENT_LIST = "deletedItemAttachmmentList";; public static final String ATT_LEARNING_OBJECT = "cpPackage"; + public static final String ATTR_RESOURCE_REVIEW_URL = "resourceItemReviewUrl"; //error message keys public static final String ERROR_MSG_TITLE_BLANK = "error.resource.item.title.blank"; Index: lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java =================================================================== diff -u -r80c80183c1497f0ba84e9ab1fa78a2fbb369ef65 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java (.../AuthoringAction.java) (revision 80c80183c1497f0ba84e9ab1fa78a2fbb369ef65) +++ lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/action/AuthoringAction.java (.../AuthoringAction.java) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -71,9 +71,11 @@ import org.lamsfoundation.lams.util.WebUtil; import org.lamsfoundation.lams.web.session.SessionManager; import org.lamsfoundation.lams.web.util.AttributeNames; +import org.lamsfoundation.lams.tool.rsrc.web.form.InstructionNavForm; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; + /** * @author Steve.Ni * @version $Revision$ @@ -140,31 +142,55 @@ if (param.equals("removeItemAttachment")) { return removeItemAttachment(mapping, form, request, response); } + //for preview top frame html page use: + if (param.equals("nextInstruction")) { + return nextInstruction(mapping, form, request, response); + } - //-----------------------Preview Learning Object function --------------------------- - if (param.equals("previewLearningObj")) { - return previewLearningObj(mapping, form, request, response); + //-----------------------Display Learning Object function --------------------------- + if (param.equals("reviewItem")) { + return reviewItem(mapping, form, request, response); } return mapping.findForward(ResourceConstants.ERROR); } + private ActionForward nextInstruction(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { + InstructionNavForm navForm = (InstructionNavForm) form; + navForm.setCurrent(navForm.getCurrent()+1); + return findForward(navForm.getType(),mapping); + } + + private ActionForward removeItemAttachment(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { request.setAttribute("itemAttachment", null); - return mapping.findForward("success"); + return mapping.findForward(ResourceConstants.SUCCESS); } - private ActionForward previewLearningObj(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { + private ActionForward reviewItem(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { int itemIdx = NumberUtils.stringToInt(request.getParameter(ResourceConstants.PARAM_ITEM_INDEX),-1); if(itemIdx != -1){ List resourceList = getResourceItemList(request); ResourceItem item = resourceList.get(itemIdx); - request.getSession().setAttribute(ResourceConstants.ATT_LEARNING_OBJECT,item); - } - return mapping.findForward(ResourceConstants.SUCCESS); + + Set instructions = item.getItemInstructions(); + InstructionNavForm navForm = (InstructionNavForm) form; + navForm.setTitle(item.getTitle()); + navForm.setType(item.getType()); + navForm.setCurrent(1); + navForm.setTotal(instructions.size()); + navForm.setInstructions(instructions); + if(item.getType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT) + request.getSession().setAttribute(ResourceConstants.ATT_LEARNING_OBJECT,item); + //set url to content frame + request.setAttribute(ResourceConstants.ATTR_RESOURCE_REVIEW_URL,getReviewUrl(item)); + return mapping.findForward(ResourceConstants.SUCCESS); + } + return mapping.findForward(ResourceConstants.ERROR); } + private ActionForward removeItem(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { int itemIdx = NumberUtils.stringToInt(request.getParameter(ResourceConstants.PARAM_ITEM_INDEX),-1); if(itemIdx != -1){ @@ -311,7 +337,7 @@ attachmentList.addAll(resource.getAttachments()); } catch (Exception e) { log.error(e); - return mapping.findForward("error"); + return mapping.findForward(ResourceConstants.ERROR); } //init it to avoid null exception in following handling @@ -764,7 +790,27 @@ } return forward; } - + + private Object getReviewUrl(ResourceItem item) { + short type = item.getType(); + String url = null; + switch (type) { + case ResourceConstants.RESOURCE_TYPE_URL: + url = item.getUrl(); + break; + case ResourceConstants.RESOURCE_TYPE_FILE: + url = "/download/?uuid="+item.getFileUuid()+"&preferDownload=false"; + break; + case ResourceConstants.RESOURCE_TYPE_WEBSITE: + url = "/download/?uuid="+item.getFileUuid()+"&preferDownload=false"; + break; + case ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT: + url = "/pages/learningobject/mainframe.jsp"; + break; + } + return url; + } + /** * This method will populate resource item information to its form for edit use. * @param itemIdx @@ -886,10 +932,10 @@ if(type == ResourceConstants.RESOURCE_TYPE_URL){ item.setUrl(itemForm.getUrl()); } - if(type == ResourceConstants.RESOURCE_TYPE_WEBSITE - ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT){ +// if(type == ResourceConstants.RESOURCE_TYPE_WEBSITE +// ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT){ item.setDescription(itemForm.getDescription()); - } +// } } @@ -910,11 +956,11 @@ // if(!validator.isValid(itemForm.getUrl())) // errors.add(ActionMessages.GLOBAL_MESSAGE,new ActionMessage(ResourceConstants.ERROR_MSG_INVALID_URL)); } - if(itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_WEBSITE - ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT){ +// if(itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_WEBSITE +// ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT){ if(StringUtils.isBlank(itemForm.getDescription())) errors.add(ActionMessages.GLOBAL_MESSAGE,new ActionMessage(ResourceConstants.ERROR_MSG_DESC_BLANK)); - } +// } if(itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_WEBSITE ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_LEARNING_OBJECT ||itemForm.getItemType() == ResourceConstants.RESOURCE_TYPE_FILE){ Index: lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/form/InstructionNavForm.java =================================================================== diff -u --- lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/form/InstructionNavForm.java (revision 0) +++ lams_tool_larsrc/src/java/org/lamsfoundation/lams/tool/rsrc/web/form/InstructionNavForm.java (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,77 @@ +/**************************************************************** + * 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.form; + +import java.util.Set; + +import org.apache.struts.action.ActionForm; + +/** + * + * @author Steve.Ni + * @struts.form name="instructionNavForm" + * @version $Revision$ + */ +public class InstructionNavForm extends ActionForm { + + private String title; + private int total; + private int current; + private Set instructions; + private short type; + + + public Set getInstructions() { + return instructions; + } + public void setInstructions(Set instructions) { + this.instructions = instructions; + } + public int getCurrent() { + return current; + } + public void setCurrent(int current) { + this.current = current; + } + public String getTitle() { + return title; + } + public void setTitle(String title) { + this.title = title; + } + public int getTotal() { + return total; + } + public void setTotal(int total) { + this.total = total; + } + public void setType(short type) { + this.type = type; + } + public short getType() { + return type; + } + +} Index: lams_tool_larsrc/web/WEB-INF/tiles-defs.xml =================================================================== diff -u -r65166da92a6f0f4ff73acb92b95672e237b25742 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/WEB-INF/tiles-defs.xml (.../tiles-defs.xml) (revision 65166da92a6f0f4ff73acb92b95672e237b25742) +++ lams_tool_larsrc/web/WEB-INF/tiles-defs.xml (.../tiles-defs.xml) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -29,16 +29,7 @@ - - - - - - - - - - + @@ -49,10 +40,4 @@ - - - - - - Fisheye: Tag 621b9ac2ae89b213fd59faef1de6a66e6edb1efc refers to a dead (removed) revision in file `lams_tool_larsrc/web/common/defaultFrame.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 621b9ac2ae89b213fd59faef1de6a66e6edb1efc refers to a dead (removed) revision in file `lams_tool_larsrc/web/common/footerFrame.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_larsrc/web/common/header.jsp =================================================================== diff -u -r36d1e75abd559af0c4ec769ee5dd353f9ed4ffb7 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/common/header.jsp (.../header.jsp) (revision 36d1e75abd559af0c4ec769ee5dd353f9ed4ffb7) +++ lams_tool_larsrc/web/common/header.jsp (.../header.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -28,8 +28,8 @@ - + Fisheye: Tag 621b9ac2ae89b213fd59faef1de6a66e6edb1efc refers to a dead (removed) revision in file `lams_tool_larsrc/web/common/headerFrame.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_larsrc/web/layout/ frame.jsp =================================================================== diff -u --- lams_tool_larsrc/web/layout/ frame.jsp (revision 0) +++ lams_tool_larsrc/web/layout/ frame.jsp (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,57 @@ +<%-- +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 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 +--%> +<%@ include file="/common/taglibs.jsp" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <body> + This tool requires the support of frames. Your browser does not support frames. + </body> + + + Fisheye: Tag 621b9ac2ae89b213fd59faef1de6a66e6edb1efc refers to a dead (removed) revision in file `lams_tool_larsrc/web/layout/frame.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_larsrc/web/pages/authoring/basic.jsp =================================================================== diff -u -rf644eb2a669882b4938c6b49bb0441e70bb7adb9 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/pages/authoring/basic.jsp (.../basic.jsp) (revision f644eb2a669882b4938c6b49bb0441e70bb7adb9) +++ lams_tool_larsrc/web/pages/authoring/basic.jsp (.../basic.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -20,25 +20,12 @@ area.style.display="none"; } - function verifyUrl(myUrl, title){ - launchPopup(myUrl,title); + function previewItem(type,idx){ + //1:url, 2:file, 3:website,4:learning object + var myUrl = ""+idx; + launchPopup(myUrl,"Review"); } - function previewItem(type,idx,uuid,versionId){ - //2:file, 3:website,4:learning object - if(type == 2){ - var myUrl = ""+uuid+"&preferDownload=false"; - launchPopup(myUrl,"File"); - }else if(type ==3){ - var myUrl = ""+uuid+"&preferDownload=false"; - launchPopup(myUrl,"Website"); - }else if(type ==4){ - var myUrl = ""+idx; - launchPopup(myUrl,"LearningObject"); - } - - } - function editItem(idx){ var reqIDVar = new Date(); var url = "" + idx +"&reqID="+reqIDVar.getTime(); Index: lams_tool_larsrc/web/pages/authoring/parts/addfile.jsp =================================================================== diff -u -r754e5e666cf510aff7f8f25527987cee00319ee2 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/pages/authoring/parts/addfile.jsp (.../addfile.jsp) (revision 754e5e666cf510aff7f8f25527987cee00319ee2) +++ lams_tool_larsrc/web/pages/authoring/parts/addfile.jsp (.../addfile.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -1,7 +1,9 @@ <%@ include file="/common/taglibs.jsp" %> + + @@ -36,6 +38,10 @@ + + + + Index: lams_tool_larsrc/web/pages/authoring/parts/addurl.jsp =================================================================== diff -u -ra0999444e5cac377c2e02a67a3583c84e8e82ca2 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/pages/authoring/parts/addurl.jsp (.../addurl.jsp) (revision a0999444e5cac377c2e02a67a3583c84e8e82ca2) +++ lams_tool_larsrc/web/pages/authoring/parts/addurl.jsp (.../addurl.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -1,8 +1,10 @@ <%@ include file="/common/taglibs.jsp" %> + + @@ -35,6 +37,10 @@ + + + + @@ -54,6 +60,9 @@ <%@ include file="instructions.jsp" %> + + " class="buttonStyle"> + " class="buttonStyle"> Index: lams_tool_larsrc/web/pages/authoring/parts/itemlist.jsp =================================================================== diff -u -r0c4f17efc49e7012360fb98ac98b7e4a005fea9f -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/pages/authoring/parts/itemlist.jsp (.../itemlist.jsp) (revision 0c4f17efc49e7012360fb98ac98b7e4a005fea9f) +++ lams_tool_larsrc/web/pages/authoring/parts/itemlist.jsp (.../itemlist.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -14,7 +14,7 @@ ${resource.title} " - onclick="verifyUrl('${resource.url}','VerifyURL')" class="button"> + onclick="previewItem(1,${status.index})" class="button"> " @@ -32,7 +32,7 @@ ${resource.title} " - onclick="previewItem(2,${status.index},${resource.fileUuid},${resource.fileVersionId})" class="button"> + onclick="previewItem(2,${status.index})" class="button"> " @@ -50,7 +50,7 @@ ${resource.title} " - onclick="previewItem(3,${status.index},${resource.fileUuid},${resource.fileVersionId})" class="button"> + onclick="previewItem(3,${status.index})" class="button"> " @@ -68,7 +68,7 @@ ${resource.title} " - onclick="previewItem(4,${status.index},${resource.fileUuid},${resource.fileVersionId})" class="button"> + onclick="previewItem(4,${status.index})" class="button"> " Index: lams_tool_larsrc/web/pages/itemdisplay/instructionsnav.jsp =================================================================== diff -u --- lams_tool_larsrc/web/pages/itemdisplay/instructionsnav.jsp (revision 0) +++ lams_tool_larsrc/web/pages/itemdisplay/instructionsnav.jsp (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,105 @@ +<%@ include file="/common/taglibs.jsp"%> + + + + + + + + ${formBean.title} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+   + + ${resourceItem.title} + + Instructions  +
+ space.gif + + space.gif +
+   + + + + + + +
+ + + + Step ${formBean.current} of ${formBean.total)} +
+ ${formBean.instructions[${formBean.current}].description} + +
+ + + + + + + + +
+
+ space.gif + + space.gif +
+ + Index: lams_tool_larsrc/web/pages/itemdisplay/mainframe.jsp =================================================================== diff -u --- lams_tool_larsrc/web/pages/itemdisplay/mainframe.jsp (revision 0) +++ lams_tool_larsrc/web/pages/itemdisplay/mainframe.jsp (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,29 @@ +<%-- +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 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 +--%> +<%@ include file="/common/taglibs.jsp" %> + + + + + + + + \ No newline at end of file Index: lams_tool_larsrc/web/pages/learningobj/defaultcontent.jsp =================================================================== diff -u --- lams_tool_larsrc/web/pages/learningobj/defaultcontent.jsp (revision 0) +++ lams_tool_larsrc/web/pages/learningobj/defaultcontent.jsp (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,31 @@ +<%-- +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 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 +--%> +<%@ include file="/common/taglibs.jsp" %> + + + +
+ + +
+ Please click on a link on the left to start. +
+
\ No newline at end of file Index: lams_tool_larsrc/web/pages/learningobj/mainframe.jsp =================================================================== diff -u --- lams_tool_larsrc/web/pages/learningobj/mainframe.jsp (revision 0) +++ lams_tool_larsrc/web/pages/learningobj/mainframe.jsp (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -0,0 +1,46 @@ +<%-- +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 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 +--%> +<%@ include file="/common/taglibs.jsp" %> + + + + + + + + + +
+ + +
+ + + + + + +
+
+
+
+ + \ No newline at end of file Index: lams_tool_larsrc/web/pages/learningobj/navigatortree.jsp =================================================================== diff -u -r80c80183c1497f0ba84e9ab1fa78a2fbb369ef65 -r621b9ac2ae89b213fd59faef1de6a66e6edb1efc --- lams_tool_larsrc/web/pages/learningobj/navigatortree.jsp (.../navigatortree.jsp) (revision 80c80183c1497f0ba84e9ab1fa78a2fbb369ef65) +++ lams_tool_larsrc/web/pages/learningobj/navigatortree.jsp (.../navigatortree.jsp) (revision 621b9ac2ae89b213fd59faef1de6a66e6edb1efc) @@ -79,7 +79,7 @@

-


+