Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java,v diff -u -r1.14 -r1.15 --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java 13 Jul 2005 06:14:24 -0000 1.14 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java 13 Jul 2005 07:02:04 -0000 1.15 @@ -150,7 +150,7 @@ public static final String TEACHER ="teacher"; public static final String USER_EXCEPTION_MODE_REQUIRED ="userExceptionModeRequired"; public static final String PORTFOLIO_REPORT ="portfolioReport"; - public static final int MAX_GROUPS_COUNT =100; + public static final String PORTFOLIO_REQUEST ="portfolioRequest"; /** * user actions Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaExportPortfolioStarterAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/Attic/QaExportPortfolioStarterAction.java,v diff -u -r1.3 -r1.4 --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaExportPortfolioStarterAction.java 13 Jul 2005 06:14:24 -0000 1.3 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaExportPortfolioStarterAction.java 13 Jul 2005 07:02:04 -0000 1.4 @@ -250,6 +250,7 @@ toolSessionCounter++; } + request.setAttribute(PORTFOLIO_REQUEST, new Boolean(true)); return (mapping.findForward(PORTFOLIO_REPORT)); } Index: lams_tool_laqa/web/MonitoringSummaryScreen.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/Attic/MonitoringSummaryScreen.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_laqa/web/MonitoringSummaryScreen.jsp 5 Jul 2005 07:09:46 -0000 1.2 +++ lams_tool_laqa/web/MonitoringSummaryScreen.jsp 13 Jul 2005 07:02:04 -0000 1.3 @@ -55,173 +55,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <% - String sectionSessionId =(String)request.getAttribute("sectionSessionId"); - String fullName ="fullName" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - String aTime ="aTime" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - String timeZoneId ="timeZoneId" + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - String answer ="answer" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - String responseId ="responseId" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - String responseHidden ="responseHidden" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); - - fullName = (String) request.getSession().getAttribute(fullName); - request.setAttribute("fullName", fullName); - java.util.Date attemptTime= (java.util.Date) request.getSession().getAttribute(aTime); - request.setAttribute("attemptTime", attemptTime); - - timeZoneId= (String) request.getSession().getAttribute(timeZoneId); - request.setAttribute("timeZoneId", timeZoneId); - - answer= (String) request.getSession().getAttribute(answer); - request.setAttribute("answer", answer); - Long longResponseId= (Long) request.getSession().getAttribute(responseId); - request.setAttribute("responseId", longResponseId); - Boolean booleanResponseHidden= (Boolean) request.getSession().getAttribute(responseHidden); - request.setAttribute("responseHidden", booleanResponseHidden); - - %> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
: -
               
-     - -     - -     - -     - -     - - - - -     : - - -     - - - - -     - - - - -     - - -     - - - - -     - - - - -     : - -     - - - - -     - - - -
 
- -
+ + Index: lams_tool_laqa/web/groupsReport.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/Attic/groupsReport.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/groupsReport.jsp 13 Jul 2005 07:02:04 -0000 1.1 @@ -0,0 +1,185 @@ +<%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html" %> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> +<%@ taglib uri="/WEB-INF/struts-logic-el.tld" prefix="logic-el" %> +<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %> +<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + String sectionSessionId =(String)request.getAttribute("sectionSessionId"); + String fullName ="fullName" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + String aTime ="aTime" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + String timeZoneId ="timeZoneId" + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + String answer ="answer" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + String responseId ="responseId" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + String responseHidden ="responseHidden" + sectionSessionId + request.getAttribute("queIndex") + request.getAttribute("ansIndex"); + + fullName = (String) request.getSession().getAttribute(fullName); + request.setAttribute("fullName", fullName); + + java.util.Date attemptTime= (java.util.Date) request.getSession().getAttribute(aTime); + request.setAttribute("attemptTime", attemptTime); + + timeZoneId= (String) request.getSession().getAttribute(timeZoneId); + request.setAttribute("timeZoneId", timeZoneId); + + answer= (String) request.getSession().getAttribute(answer); + request.setAttribute("answer", answer); + Long longResponseId= (Long) request.getSession().getAttribute(responseId); + request.setAttribute("responseId", longResponseId); + Boolean booleanResponseHidden= (Boolean) request.getSession().getAttribute(responseHidden); + request.setAttribute("responseHidden", booleanResponseHidden); + + %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
: +
               
+     + +     + +     + +     + +     + + + + +     : + + +     + + + + + + + + +     + + + + +     + + +     + + + + + + + +     + + + + + + +     : + +     + + + + + + +     + + + + +
 
+ +
Index: lams_tool_laqa/web/portfolioReport.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/Attic/portfolioReport.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_laqa/web/portfolioReport.jsp 13 Jul 2005 03:12:28 -0000 1.1 +++ lams_tool_laqa/web/portfolioReport.jsp 13 Jul 2005 07:02:04 -0000 1.2 @@ -27,7 +27,9 @@ requestScope.userExceptionContentIdRequired != 'true' && requestScope.userExceptionContentDoesNotExist != 'true' }"> -

main portfoloio report

+ + +