Index: lams_admin/build.xml =================================================================== RCS file: /usr/local/cvsroot/lams_admin/build.xml,v diff -u -r1.14 -r1.14.2.1 --- lams_admin/build.xml 15 Dec 2006 00:29:14 -0000 1.14 +++ lams_admin/build.xml 12 Mar 2007 04:39:37 -0000 1.14.2.1 @@ -184,6 +184,7 @@ + Fisheye: Tag 1.64.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.5.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_da_DK.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_el_GR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.4.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_en_AU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.7.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_es_ES.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_fr_FR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_it_IT.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.5.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_ko_KR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.6.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_no_NO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_pl_PL.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.5.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_sv_SE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.4.2.1 refers to a dead (removed) revision in file `lams_admin/conf/language/ApplicationResources_vi_VN.properties'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_admin/src/java/org/lamsfoundation/lams/admin/adminApplicationContext.xml =================================================================== RCS file: /usr/local/cvsroot/lams_admin/src/java/org/lamsfoundation/lams/admin/adminApplicationContext.xml,v diff -u -r1.2 -r1.2.2.1 --- lams_admin/src/java/org/lamsfoundation/lams/admin/adminApplicationContext.xml 14 Dec 2006 23:44:51 -0000 1.2 +++ lams_admin/src/java/org/lamsfoundation/lams/admin/adminApplicationContext.xml 12 Mar 2007 04:39:38 -0000 1.2.2.1 @@ -8,7 +8,7 @@ - + Index: lams_admin/src/java/org/lamsfoundation/lams/admin/service/AdminServiceProxy.java =================================================================== RCS file: /usr/local/cvsroot/lams_admin/src/java/org/lamsfoundation/lams/admin/service/AdminServiceProxy.java,v diff -u -r1.3 -r1.3.2.1 --- lams_admin/src/java/org/lamsfoundation/lams/admin/service/AdminServiceProxy.java 14 Dec 2006 23:44:51 -0000 1.3 +++ lams_admin/src/java/org/lamsfoundation/lams/admin/service/AdminServiceProxy.java 12 Mar 2007 04:39:36 -0000 1.3.2.1 @@ -43,7 +43,7 @@ private static MessageService messageService; private static IIntegrationService integrationService; private static IAuditService auditService; - private static ISpreadsheetService spreadsheetService; + private static IImportService importService; public static final IUserManagementService getService(ServletContext servletContext){ if (manageService == null) { @@ -79,11 +79,11 @@ return auditService; } - public static final ISpreadsheetService getSpreadsheetService(ServletContext servletContext){ - if(spreadsheetService==null){ + public static final IImportService getImportService(ServletContext servletContext){ + if(importService==null){ WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext); - spreadsheetService = (ISpreadsheetService)ctx.getBean("spreadsheetService"); + importService = (IImportService)ctx.getBean("importService"); } - return spreadsheetService; + return importService; } } Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_admin/src/java/org/lamsfoundation/lams/admin/service/ISpreadsheetService.java'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3.2.1 refers to a dead (removed) revision in file `lams_admin/src/java/org/lamsfoundation/lams/admin/service/SpreadsheetService.java'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/ImportExcelSaveAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_admin/src/java/org/lamsfoundation/lams/admin/web/ImportExcelSaveAction.java,v diff -u -r1.5 -r1.5.2.1 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/ImportExcelSaveAction.java 14 Dec 2006 23:44:51 -0000 1.5 +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/ImportExcelSaveAction.java 12 Mar 2007 04:39:37 -0000 1.5.2.1 @@ -35,7 +35,7 @@ import org.apache.struts.action.ActionMapping; import org.apache.struts.upload.FormFile; import org.lamsfoundation.lams.admin.service.AdminServiceProxy; -import org.lamsfoundation.lams.admin.service.ISpreadsheetService; +import org.lamsfoundation.lams.admin.service.IImportService; import org.lamsfoundation.lams.util.MessageService; /** @@ -63,12 +63,12 @@ } MessageService messageService = AdminServiceProxy.getMessageService(getServlet().getServletContext()); - ISpreadsheetService spreadsheetService = AdminServiceProxy.getSpreadsheetService(getServlet().getServletContext()); + IImportService importService = AdminServiceProxy.getImportService(getServlet().getServletContext()); ImportExcelForm importExcelForm = (ImportExcelForm)form; FormFile file = importExcelForm.getFile(); - List results = spreadsheetService.parseSpreadsheet(file); - String successMessageKey = (spreadsheetService.isUserSpreadsheet(file) ? "msg.users.created" : "msg.users.added"); + List results = importService.parseSpreadsheet(file); + String successMessageKey = (importService.isUserSpreadsheet(file) ? "msg.users.created" : "msg.users.added"); int successful = 0; for(int i=0; i - + Index: lams_admin/web/orglist.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_admin/web/Attic/orglist.jsp,v diff -u -r1.19 -r1.19.4.1 --- lams_admin/web/orglist.jsp 28 Nov 2006 03:31:10 -0000 1.19 +++ lams_admin/web/orglist.jsp 12 Mar 2007 04:39:37 -0000 1.19.4.1 @@ -42,6 +42,7 @@ + @@ -50,6 +51,7 @@ +
Id
Index: lams_admin/web/user.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_admin/web/user.jsp,v diff -u -r1.22 -r1.22.4.1 --- lams_admin/web/user.jsp 24 Nov 2006 02:09:34 -0000 1.22 +++ lams_admin/web/user.jsp 12 Mar 2007 04:39:37 -0000 1.22.4.1 @@ -36,75 +36,75 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + Index: lams_admin/web/WEB-INF/tiles/tiles-defs.xml =================================================================== RCS file: /usr/local/cvsroot/lams_admin/web/WEB-INF/tiles/Attic/tiles-defs.xml,v diff -u -r1.25 -r1.25.2.1 --- lams_admin/web/WEB-INF/tiles/tiles-defs.xml 2 Jan 2007 06:03:48 -0000 1.25 +++ lams_admin/web/WEB-INF/tiles/tiles-defs.xml 12 Mar 2007 04:39:37 -0000 1.25.2.1 @@ -1,6 +1,21 @@ + + + + + + + + + + + + + + + Index: lams_admin/web/import/importexcel.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_admin/web/import/importexcel.jsp,v diff -u -r1.7 -r1.7.2.1 --- lams_admin/web/import/importexcel.jsp 15 Dec 2006 00:29:29 -0000 1.7 +++ lams_admin/web/import/importexcel.jsp 12 Mar 2007 04:39:35 -0000 1.7.2.1 @@ -1,12 +1,12 @@ <%@ include file="/taglibs.jsp"%> -<%@ page import="org.lamsfoundation.lams.admin.service.ISpreadsheetService" %> +<%@ page import="org.lamsfoundation.lams.admin.service.IImportService" %>

:

- +

 

@@ -18,11 +18,11 @@
  • - +
  • - +
  • Index: lams_build/build.xml =================================================================== RCS file: /usr/local/cvsroot/lams_build/build.xml,v diff -u -r1.50 -r1.50.2.1 --- lams_build/build.xml 12 Jan 2007 04:59:05 -0000 1.50 +++ lams_build/build.xml 12 Mar 2007 04:37:15 -0000 1.50.2.1 @@ -197,29 +197,25 @@ + description="Delete any old versions of the ear directory"> + - - + - - + - - - @@ -256,9 +252,40 @@ inheritAll="false" > - + + + Building the LAMS set of tools. + + + + + + + Building the RAMS set of tools. + + + + + + + + + + isLAMS ${isLAMS} + isRAMS ${isRAMS} + + + + + + + Index: lams_build/buildcombinedtasks.xml =================================================================== RCS file: /usr/local/cvsroot/lams_build/Attic/buildcombinedtasks.xml,v diff -u -r1.1 -r1.1.4.1 --- lams_build/buildcombinedtasks.xml 19 Oct 2006 07:44:39 -0000 1.1 +++ lams_build/buildcombinedtasks.xml 12 Mar 2007 04:37:15 -0000 1.1.4.1 @@ -35,7 +35,7 @@ - + Index: lams_build/common.properties =================================================================== RCS file: /usr/local/cvsroot/lams_build/common.properties,v diff -u -r1.18 -r1.18.4.1 --- lams_build/common.properties 21 Nov 2006 06:15:40 -0000 1.18 +++ lams_build/common.properties 12 Mar 2007 04:37:25 -0000 1.18.4.1 @@ -21,6 +21,10 @@ project=LAMS project_version=2.0beta1 +# which application are we trying to build? LAMS or RAMS +conf.application=lams +#conf.application=rams + # which o/s related property file do you want? valid values "windows" or "unix" osPropertiesName=windows @@ -68,9 +72,11 @@ conf.web.dir=${basedir}/web conf.webinf.dir=${conf.web.dir}/WEB-INF conf.struts.dir=${conf.webinf.dir}/struts -##Language Files -conf.language.dir=${conf.dir}/language +##Language Files +# conf.language.dir is the directory containing all the language files for all the tools, learning, monitoring, etc. +conf.language.dir=${conf.dir}/language/${conf.application} + # Build directory build=${basedir}/build build.classes.java=${build}/classes/java Index: lams_build/deploy-tool/lib/lams-tool-deploy.jar =================================================================== RCS file: /usr/local/cvsroot/lams_build/deploy-tool/lib/lams-tool-deploy.jar,v diff -u -r1.9 -r1.9.4.1 Binary files differ Index: lams_build/lib/lams/lams-learning.jar =================================================================== RCS file: /usr/local/cvsroot/lams_build/lib/lams/lams-learning.jar,v diff -u -r1.35 -r1.35.4.1 Binary files differ Index: lams_build/lib/lams/lams-monitoring.jar =================================================================== RCS file: /usr/local/cvsroot/lams_build/lib/lams/lams-monitoring.jar,v diff -u -r1.36 -r1.36.4.1 Binary files differ Fisheye: Tag 1.3.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_ar_JO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_cy_GB.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_da_DK.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_el_GR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_en_AU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_es_ES.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_fr_FR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_it_IT.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_ko_KR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_mi_NZ.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_no_NO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_pl_PL.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_pt_BR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_ru_RU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_sv_SE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_vi_VN.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/chatscribe/language/ApplicationResources_zh_TW.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_cy_GB.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_da_DK.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_el_GR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_en_AU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_es_ES.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_fr_FR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_it_IT.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_ko_KR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_mi_NZ.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_no_NO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_pl_PL.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_pt_BR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_sv_SE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_vi_VN.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/forumscribe/language/ApplicationResources_zh_TW.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_ar_JO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_cy_GB.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_da_DK.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_de_DE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_el_GR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_en_AU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_es_ES.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_fr_FR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_it_IT.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_ko_KR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_mi_NZ.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_nl_BE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_no_NO.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_pl_PL.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_pt_BR.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_ru_RU.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_sv_SE.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_vi_VN.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.4.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_zh_CN.properties'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2.2.1 refers to a dead (removed) revision in file `lams_build/librarypackages/shareresourcesforum/language/ApplicationResources_zh_TW.properties'. Fisheye: No comparison available. Pass `N' to diff?
    *:
    *:
    *:
    :
    *:
    *:
    *:
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :