Index: lams_tool_forum/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -rdd6cab0026ad874e9e8b7dc2cbedc487e0909698 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision dd6cab0026ad874e9e8b7dc2cbedc487e0909698) +++ lams_tool_forum/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -173,6 +173,6 @@ label.back.to.forum =Back to Topic List label.responses.locked.reminder =The instructor has set this activity not to allow postings after you have finished it. As you are returning to this Forum again, you are able to see all threads but not allow to post anymore. label.authoring.advance.number.reply =Number of posts per learner +monitoring.marked.question=Marked? - #======= End labels: Exported 167 labels for en AU ===== Index: lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties =================================================================== diff -u -rdd6cab0026ad874e9e8b7dc2cbedc487e0909698 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision dd6cab0026ad874e9e8b7dc2cbedc487e0909698) +++ lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -173,6 +173,6 @@ label.back.to.forum =Back to Topic List label.responses.locked.reminder =The instructor has set this activity not to allow postings after you have finished it. As you are returning to this Forum again, you are able to see all threads but not allow to post anymore. label.authoring.advance.number.reply =Number of posts per learner +monitoring.marked.question=Marked? - #======= End labels: Exported 167 labels for en AU ===== Index: lams_tool_forum/conf/xdoclet/struts-actions.xml =================================================================== diff -u -r99c920d6a9d32eb5bf47bcbba06c03b027f5b786 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/conf/xdoclet/struts-actions.xml (.../struts-actions.xml) (revision 99c920d6a9d32eb5bf47bcbba06c03b027f5b786) +++ lams_tool_forum/conf/xdoclet/struts-actions.xml (.../struts-actions.xml) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -239,6 +239,8 @@ Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/dto/UserDTO.java =================================================================== diff -u -r77e263b43c7aed360e8dcc46af273db55123bc83 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/dto/UserDTO.java (.../UserDTO.java) (revision 77e263b43c7aed360e8dcc46af273db55123bc83) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/dto/UserDTO.java (.../UserDTO.java) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -12,6 +12,7 @@ private String reflectInstrctions; private boolean finishReflection; private String reflect; + private boolean anyPostsMarked; public UserDTO(){ } @@ -74,4 +75,12 @@ public void setFinishReflection(boolean finishReflection) { this.finishReflection = finishReflection; } + + public boolean isAnyPostsMarked() { + return anyPostsMarked; + } + + public void setAnyPostsMarked(boolean anyPostsMarked) { + this.anyPostsMarked = anyPostsMarked; + } } Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java =================================================================== diff -u -rf3fdd03cd679fc8aad8b5149692b63997aa09f06 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java (.../ForumConstants.java) (revision f3fdd03cd679fc8aad8b5149692b63997aa09f06) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java (.../ForumConstants.java) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -119,6 +119,7 @@ public static final String MARK_UPDATE_FROM_USER = "listMarks"; public static final String MARK_UPDATE_FROM_FORUM = "viewForum"; + public static final String ATTR_HIDE_REFLECTION = "hideReflection"; Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java =================================================================== diff -u -r37091c095ab385d83dd60713075f3258b1366dcd -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java (.../LearningAction.java) (revision 37091c095ab385d83dd60713075f3258b1366dcd) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java (.../LearningAction.java) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -197,15 +197,6 @@ Boolean allowRichEditor = new Boolean(forum.isAllowRichEditor()); int allowNumber = forum.isLimitedInput() || forum.isAllowRichEditor() ? forum.getLimitedChar() : 0; - // get notebook entry - String entryText = new String(); - NotebookEntry notebookEntry = forumService.getEntry(sessionId, CoreNotebookConstants.NOTEBOOK_TOOL, - ForumConstants.TOOL_SIGNATURE, forumUser.getUserId().intValue()); - - if (notebookEntry != null) { - entryText = notebookEntry.getEntry(); - } - sessionMap.put(ForumConstants.FORUM_ID, forumId); sessionMap.put(AttributeNames.ATTR_MODE, mode); sessionMap.put(ForumConstants.ATTR_FINISHED_LOCK, new Boolean(lock)); @@ -216,13 +207,30 @@ sessionMap.put(ForumConstants.ATTR_ALLOW_NEW_TOPICS,forum.isAllowNewTopic()); sessionMap.put(ForumConstants.ATTR_ALLOW_RICH_EDITOR,allowRichEditor); sessionMap.put(ForumConstants.ATTR_LIMITED_CHARS,new Integer(allowNumber)); - sessionMap.put(ForumConstants.ATTR_REFLECTION_ON,forum.isReflectOnActivity()); - sessionMap.put(ForumConstants.ATTR_REFLECTION_INSTRUCTION,forum.getReflectInstructions()); - sessionMap.put(ForumConstants.ATTR_REFLECTION_ENTRY, entryText); sessionMap.put(AttributeNames.PARAM_TOOL_SESSION_ID, sessionId); sessionMap.put(ForumConstants.ATTR_FORUM_TITLE,forum.getTitle()); sessionMap.put(ForumConstants.ATTR_FORUM_INSTRCUTION,forum.getInstructions()); - + + // Should we show the reflection or not? We shouldn't show it when the screen is accessed + // from the Monitoring Summary screen, but we should when accessed from the Learner Progress screen. + // Need to constantly past this value on, rather than hiding just the once, as the View Forum + // screen has a refresh button. + boolean hideReflection = WebUtil.readBooleanParam(request, ForumConstants.ATTR_HIDE_REFLECTION, false); + sessionMap.put(ForumConstants.ATTR_HIDE_REFLECTION, hideReflection); + + if ( hideReflection ) { + sessionMap.put(ForumConstants.ATTR_REFLECTION_ON,false); + sessionMap.put(ForumConstants.ATTR_REFLECTION_INSTRUCTION,""); + sessionMap.put(ForumConstants.ATTR_REFLECTION_ENTRY, ""); + } else { + sessionMap.put(ForumConstants.ATTR_REFLECTION_ON,forum.isReflectOnActivity()); + sessionMap.put(ForumConstants.ATTR_REFLECTION_INSTRUCTION,forum.getReflectInstructions()); + + NotebookEntry notebookEntry = forumService.getEntry(sessionId, CoreNotebookConstants.NOTEBOOK_TOOL, + ForumConstants.TOOL_SIGNATURE, forumUser.getUserId().intValue()); + sessionMap.put(ForumConstants.ATTR_REFLECTION_ENTRY, notebookEntry != null ? notebookEntry.getEntry() : ""); + } + //add define later support if(forum.isDefineLater()){ return mapping.findForward("defineLater"); @@ -406,6 +414,14 @@ //transfer SessionMapID as well request.setAttribute(ForumConstants.ATTR_SESSION_MAP_ID, sessionMapID); + // Should we show the reflection or not? We shouldn't show it when the View Forum screen is accessed + // from the Monitoring Summary screen, but we should when accessed from the Learner Progress screen. + // Need to constantly past this value on, rather than hiding just the once, as the View Forum + // screen has a refresh button. Need to pass it through the view topic screen and dependent screens + // as it has a link from the view topic screen back to View Forum screen. + boolean hideReflection = WebUtil.readBooleanParam(request, ForumConstants.ATTR_HIDE_REFLECTION, false); + sessionMap.put(ForumConstants.ATTR_HIDE_REFLECTION, hideReflection); + return mapping.findForward("success"); } @@ -509,7 +525,14 @@ SessionMap sessionMap = getSessionMap(request, msgForm); sessionMap.put(ForumConstants.ATTR_PARENT_TOPIC_ID, parentId); - + // Should we show the reflection or not? We shouldn't show it when the View Forum screen is accessed + // from the Monitoring Summary screen, but we should when accessed from the Learner Progress screen. + // Need to constantly past this value on, rather than hiding just the once, as the View Forum + // screen has a refresh button. Need to pass it through the view topic screen and dependent screens + // as it has a link from the view topic screen back to View Forum screen. + boolean hideReflection = WebUtil.readBooleanParam(request, ForumConstants.ATTR_HIDE_REFLECTION, false); + sessionMap.put(ForumConstants.ATTR_HIDE_REFLECTION, hideReflection); + return mapping.findForward("success"); } @@ -598,6 +621,14 @@ SessionMap sessionMap = getSessionMap(request, msgForm); sessionMap.put(ForumConstants.ATTR_TOPIC_ID, topicId); + // Should we show the reflection or not? We shouldn't show it when the View Forum screen is accessed + // from the Monitoring Summary screen, but we should when accessed from the Learner Progress screen. + // Need to constantly past this value on, rather than hiding just the once, as the View Forum + // screen has a refresh button. Need to pass it through the view topic screen and dependent screens + // as it has a link from the view topic screen back to View Forum screen. + boolean hideReflection = WebUtil.readBooleanParam(request, ForumConstants.ATTR_HIDE_REFLECTION, false); + sessionMap.put(ForumConstants.ATTR_HIDE_REFLECTION, hideReflection); + return mapping.findForward("success"); } /** Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java =================================================================== diff -u -r5990f13c01aa609c36bc91af14553d9707cb3647 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision 5990f13c01aa609c36bc91af14553d9707cb3647) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -182,11 +182,19 @@ } private ActionForward doTabs(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { + //set back tool content ID + String contentFolderID = WebUtil.readStrParam(request,AttributeNames.PARAM_CONTENT_FOLDER_ID); + request.setAttribute(AttributeNames.PARAM_CONTENT_FOLDER_ID, contentFolderID); + + Long toolContentID = new Long(WebUtil.readLongParam(request,AttributeNames.PARAM_TOOL_CONTENT_ID)); + request.setAttribute(AttributeNames.PARAM_TOOL_CONTENT_ID, toolContentID); + + request.setAttribute("initialTabId", WebUtil.readLongParam(request, AttributeNames.PARAM_CURRENT_TAB,true)); + this.summary(mapping, form, request, response); this.viewInstructions(mapping, form, request, response); - this.viewActivity(mapping, form, request, response); + this.viewActivity(mapping, form, request, response, toolContentID); this.statistic(mapping, form, request, response); - request.setAttribute("initialTabId", WebUtil.readLongParam(request, AttributeNames.PARAM_CURRENT_TAB,true)); return mapping.findForward("load"); } @@ -221,18 +229,36 @@ List userList = forumService.getUsersBySessionId(fts.getSessionId()); //sort and create DTO list + List topicList = forumService.getAllTopicsFromSession(fts.getSessionId()); + Map topicsByUser = getTopicsSortedByAuthor(topicList); + Set dtoList = new TreeSet(this.new UserDTOComparator()); Iterator iter = userList.iterator(); while(iter.hasNext()){ ForumUser user = (ForumUser) iter.next(); UserDTO userDTO = new UserDTO(user); userDTO.setHasRefection(hasReflection); + + userDTO.setAnyPostsMarked(false); + userDTO.setNoOfPosts(0); + + List messages = (List) topicsByUser.get(user); + if ( messages != null && messages.size() > 0 ) { + userDTO.setNoOfPosts(messages.size()); + for ( MessageDTO message : messages ) { + if ( message.getMark() != null ) { + userDTO.setAnyPostsMarked(true); + break; + } + } + } dtoList.add(userDTO); - //userDTO.setNoOfPosts(noOfPosts) } + sessionUsersMap.put(sessionDto, dtoList); } + // request.setAttribute(AttributeNames.PARAM_TOOL_SESSION_ID,sessionID); request.setAttribute("sessionUserMap", sessionUsersMap); return mapping.findForward("success"); @@ -384,11 +410,7 @@ * @return */ private ActionForward viewActivity(ActionMapping mapping, ActionForm form, - HttpServletRequest request, HttpServletResponse response) { - Long toolContentID = new Long(WebUtil.readLongParam(request,AttributeNames.PARAM_TOOL_CONTENT_ID)); - //set back tool content ID - String contentFolderID = WebUtil.readStrParam(request,AttributeNames.PARAM_CONTENT_FOLDER_ID); - request.setAttribute(AttributeNames.PARAM_CONTENT_FOLDER_ID, contentFolderID); + HttpServletRequest request, HttpServletResponse response, Long toolContentID) { forumService = getForumService(); Forum forum = forumService.getForumByContentId(toolContentID); @@ -405,7 +427,6 @@ boolean isForumEditable = ForumWebUtils.isForumEditable(forum); request.setAttribute(ForumConstants.PAGE_EDITABLE, new Boolean(isForumEditable)); - request.setAttribute(AttributeNames.PARAM_TOOL_CONTENT_ID, toolContentID); request.setAttribute("title", title); request.setAttribute("instruction", instruction); return mapping.findForward("success"); @@ -709,6 +730,14 @@ request.setAttribute(ForumConstants.ATTR_TOPIC, MessageDTO.getMessageDTO(msg)); request.setAttribute(ForumConstants.ATTR_USER, user); + // Should we show the reflection or not? We shouldn't show it when the View Forum screen is accessed + // from the Monitoring Summary screen, but we should when accessed from the Learner Progress screen. + // Need to constantly past this value on, rather than hiding just the once, as the View Forum + // screen has a refresh button. Need to pass it through the view topic screen and dependent screens + // as it has a link from the view topic screen back to View Forum screen. + boolean hideReflection = WebUtil.readBooleanParam(request, ForumConstants.ATTR_HIDE_REFLECTION, false); + sessionMap.put(ForumConstants.ATTR_HIDE_REFLECTION, hideReflection); + return mapping.findForward("success"); } Index: lams_tool_forum/web/WEB-INF/struts-config.xml =================================================================== diff -u -r9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/WEB-INF/struts-config.xml (.../struts-config.xml) (revision 9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6) +++ lams_tool_forum/web/WEB-INF/struts-config.xml (.../struts-config.xml) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -271,6 +271,8 @@ Index: lams_tool_forum/web/common/header.jsp =================================================================== diff -u -r18e5e690d2e1a7c3d918759f7a2827c8205feaac -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/common/header.jsp (.../header.jsp) (revision 18e5e690d2e1a7c3d918759f7a2827c8205feaac) +++ lams_tool_forum/web/common/header.jsp (.../header.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -24,3 +24,11 @@ <%@ include file="/common/fckeditorheader.jsp"%> + + + Index: lams_tool_forum/web/jsps/learning/message/topiceditform.jsp =================================================================== diff -u -r53645c8d07fa71f2f23a362667a1bfc270bb4912 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/message/topiceditform.jsp (.../topiceditform.jsp) (revision 53645c8d07fa71f2f23a362667a1bfc270bb4912) +++ lams_tool_forum/web/jsps/learning/message/topiceditform.jsp (.../topiceditform.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -35,7 +35,7 @@ - + Index: lams_tool_forum/web/jsps/learning/message/topicform.jsp =================================================================== diff -u -rbd376d76233dad7d0a0775762385918fcbb96f4c -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/message/topicform.jsp (.../topicform.jsp) (revision bd376d76233dad7d0a0775762385918fcbb96f4c) +++ lams_tool_forum/web/jsps/learning/message/topicform.jsp (.../topicform.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -32,7 +32,7 @@ - + Index: lams_tool_forum/web/jsps/learning/message/topiclist.jsp =================================================================== diff -u -r3fbae12edb0a13991ebd07c4f2ebdfbb02d5df99 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/message/topiclist.jsp (.../topiclist.jsp) (revision 3fbae12edb0a13991ebd07c4f2ebdfbb02d5df99) +++ lams_tool_forum/web/jsps/learning/message/topiclist.jsp (.../topiclist.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -20,7 +20,7 @@ - + Index: lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp =================================================================== diff -u -r53645c8d07fa71f2f23a362667a1bfc270bb4912 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp (.../topicreplyform.jsp) (revision 53645c8d07fa71f2f23a362667a1bfc270bb4912) +++ lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp (.../topicreplyform.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -31,7 +31,7 @@ + page="/learning/viewTopic.do?sessionMapID=${sessionMapID}&topicID=${sessionMap.rootUid}&create=${message.created.time}&hideReflection=${sessionMap.hideReflection}" /> + page="/monitoring/editMark.do?sessionMapID=${sessionMapID}&topicID=${msgDto.message.uid}&updateMode=viewForum&hideReflection=${sessionMap.hideReflection}" /> @@ -138,7 +138,7 @@ test='${(sessionMap.mode == "teacher") || (msgDto.isAuthor && not sessionMap.finishedLock && sessionMap.allowEdit && (empty msgDto.mark))}'> + page="/learning/editTopic.do?sessionMapID=${sessionMapID}&topicID=${msgDto.message.uid}&rootUid=${sessinoMap.rootUid}&create=${msgDto.message.created.time}&hideReflection=${sessionMap.hideReflection}" /> @@ -150,7 +150,7 @@ test="${(not sessionMap.finishedLock) && (not sessionMap.noMorePosts)}"> + page="/learning/newReplyTopic.do?sessionMapID=${sessionMapID}&parentID=${msgDto.message.uid}&rootUid=${sessionMap.rootUid}&hideReflection=${sessionMap.hideReflection}" /> Index: lams_tool_forum/web/jsps/learning/viewforum.jsp =================================================================== diff -u -re9fe4c6ed1875fde2b6ed79c9677fba0ad05b595 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/viewforum.jsp (.../viewforum.jsp) (revision e9fe4c6ed1875fde2b6ed79c9677fba0ad05b595) +++ lams_tool_forum/web/jsps/learning/viewforum.jsp (.../viewforum.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -38,7 +38,7 @@ + page="/learning/viewForum.do?mode=${sessionMap.mode}&toolSessionID=${sessionMap.toolSessionID}&sessionMapID=${sessionMapID}&hideReflection=${sessionMap.hideReflection}" /> @@ -72,7 +72,7 @@ - +

${sessionMap.reflectInstructions} @@ -91,11 +91,13 @@ - - - + + + + +

Index: lams_tool_forum/web/jsps/learning/viewtopic.jsp =================================================================== diff -u -r7d2f89fb05250ecf7cbb06f52a4c565de44a0f4b -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/learning/viewtopic.jsp (.../viewtopic.jsp) (revision 7d2f89fb05250ecf7cbb06f52a4c565de44a0f4b) +++ lams_tool_forum/web/jsps/learning/viewtopic.jsp (.../viewtopic.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -4,7 +4,7 @@ @@ -18,7 +18,7 @@
+ page="/learning/viewForum.do?mode=${sessionMap.mode}&sessionMapID=${sessionMapID}&toolSessionID=${sessionMap.toolSessionID}&hideReflection=${sessionMap.hideReflection}" /> + page="/learning/viewForum.do?mode=${sessionMap.mode}&sessionMapID=${sessionMapID}&toolSessionID=${sessionMap.toolSessionID}&hideReflection=${sessionMap.hideReflection}" /> + + +   @@ -99,6 +102,16 @@ + + + tick + + + cross + + + + @@ -125,6 +138,7 @@ + @@ -153,6 +167,15 @@
+
+ + + + + + + +
Index: lams_tool_forum/web/jsps/monitoring/updatemarks.jsp =================================================================== diff -u -r1c995cd6d87591d824ddde103a6138f2632e8f71 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (.../updatemarks.jsp) (revision 1c995cd6d87591d824ddde103a6138f2632e8f71) +++ lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (.../updatemarks.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -7,6 +7,7 @@ + @@ -22,7 +23,7 @@
- + @@ -88,7 +89,7 @@ - ?sessionMapID=${formBean.sessionMapID}&topicID=${sessionMap.rootUid} + ?sessionMapID=${formBean.sessionMapID}&topicID=${sessionMap.rootUid}&hideReflection=${sessionMap.hideReflection} "> Index: lams_tool_forum/web/jsps/monitoring/viewmarks.jsp =================================================================== diff -u -r1c995cd6d87591d824ddde103a6138f2632e8f71 -rdba3e6022ca1e0478e053c415095b14db37576c7 --- lams_tool_forum/web/jsps/monitoring/viewmarks.jsp (.../viewmarks.jsp) (revision 1c995cd6d87591d824ddde103a6138f2632e8f71) +++ lams_tool_forum/web/jsps/monitoring/viewmarks.jsp (.../viewmarks.jsp) (revision dba3e6022ca1e0478e053c415095b14db37576c7) @@ -38,7 +38,7 @@
- + @@ -110,7 +110,7 @@
- +