Index: lams_admin/conf/xdoclet/servlets.xml =================================================================== diff -u -rf3751ae4fa6b0d8a7291c17866017207ccb53c07 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_admin/conf/xdoclet/servlets.xml (.../servlets.xml) (revision f3751ae4fa6b0d8a7291c17866017207ccb53c07) +++ lams_admin/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -22,7 +22,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_admin/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r6d1e43927f8fbb562c5bc8c8452eb481437c7ee9 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_admin/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 6d1e43927f8fbb562c5bc8c8452eb481437c7ee9) +++ lams_admin/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,214 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true - - - basePath - false true - + java.lang.String + - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + \ No newline at end of file Index: lams_admin/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_admin/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_admin/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_admin/web/WEB-INF/web.xml =================================================================== diff -u -r3bc65f0652b50074ff432112d8e47a6df3728810 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_admin/web/WEB-INF/web.xml (.../web.xml) (revision 3bc65f0652b50074ff432112d8e47a6df3728810) +++ lams_admin/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -123,7 +123,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_build/3rdParty.userlibraries =================================================================== diff -u -r8f6f1143adff5f0e845268137f5158c2b18f0ddd -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_build/3rdParty.userlibraries (.../3rdParty.userlibraries) (revision 8f6f1143adff5f0e845268137f5158c2b18f0ddd) +++ lams_build/3rdParty.userlibraries (.../3rdParty.userlibraries) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -90,7 +90,7 @@ - + @@ -109,5 +109,7 @@ + + Index: lams_build/build.xml =================================================================== diff -u -r188dae0767e21514a0d86288f385e2d30ad94f13 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_build/build.xml (.../build.xml) (revision 188dae0767e21514a0d86288f385e2d30ad94f13) +++ lams_build/build.xml (.../build.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -143,7 +143,8 @@ - + + @@ -482,17 +483,28 @@ + + + + + + + + + + + Index: lams_build/conf/j2ee/lams.application.xml =================================================================== diff -u -r4b24094f139dd10a9779ce6e678cb8ca38317148 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_build/conf/j2ee/lams.application.xml (.../lams.application.xml) (revision 4b24094f139dd10a9779ce6e678cb8ca38317148) +++ lams_build/conf/j2ee/lams.application.xml (.../lams.application.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -130,7 +130,7 @@ commons-validator.jar - FCKeditor-2.3.jar + FCKeditor-2.4.1.jar poi-2.5.1-final-20040804.jar @@ -163,6 +163,12 @@ log4j-1.2.13.jar + slf4j-api-1.5.2.jar + + + slf4j-log4j12-1.5.2.jar + + mysql-connector-java-3.1.12-bin.jar Index: lams_build/conf/j2ee/rams.application.xml =================================================================== diff -u -r4b24094f139dd10a9779ce6e678cb8ca38317148 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_build/conf/j2ee/rams.application.xml (.../rams.application.xml) (revision 4b24094f139dd10a9779ce6e678cb8ca38317148) +++ lams_build/conf/j2ee/rams.application.xml (.../rams.application.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -130,7 +130,7 @@ commons-validator.jar - FCKeditor-2.3.jar + FCKeditor-2.4.1.jar poi-2.5.1-final-20040804.jar @@ -163,6 +163,12 @@ log4j-1.2.13.jar + slf4j-api-1.5.2.jar + + + slf4j-log4j12-1.5.2.jar + + mysql-connector-java-3.1.12-bin.jar Index: lams_build/lib/fckeditor/FCKeditor-2.3.jar =================================================================== diff -u -rc0c215befb3106712bfbf1929d765ff033d129df -r0732f5d12802da95cf69e474b30630653924abc5 Binary files differ Index: lams_build/lib/fckeditor/FCKeditor-2.4.1.jar =================================================================== diff -u Binary files differ Index: lams_build/lib/slf4j/slf4j-api-1.5.2.jar =================================================================== diff -u Binary files differ Index: lams_build/lib/slf4j/slf4j-log4j12-1.5.2.jar =================================================================== diff -u Binary files differ Index: lams_build/shared.properties =================================================================== diff -u -r188dae0767e21514a0d86288f385e2d30ad94f13 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_build/shared.properties (.../shared.properties) (revision 188dae0767e21514a0d86288f385e2d30ad94f13) +++ lams_build/shared.properties (.../shared.properties) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -57,3 +57,7 @@ tool_daco_dir=lams_tool_daco tool_wiki_dir=lams_tool_wiki tool_images_dir=lams_tool_images +tool_pixlr_dir=lams_tool_pixlr +tool_assessment_dir=lams_tool_assessment +tool_videorecorder_dir=lams_tool_videorecorder +tool_dimdim_dir=lams_tool_dimdim Index: lams_central/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_central/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_central/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,24 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + + + Index: lams_learning/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_learning/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_learning/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_monitoring/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_monitoring/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_monitoring/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_assessment/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -r8e495e7f0eec13617b75b67021d4d1bbbda87a2d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_assessment/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 8e495e7f0eec13617b75b67021d4d1bbbda87a2d) +++ lams_tool_assessment/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_assessment/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -rc56857991e269aa7f5bd250a05b52c767a9957ad -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_assessment/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision c56857991e269aa7f5bd250a05b52c767a9957ad) +++ lams_tool_assessment/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_chat/conf/xdoclet/servlets.xml =================================================================== diff -u -rfdb3e5c043522549d839142cfb3ef4e919913bbd -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_chat/conf/xdoclet/servlets.xml (.../servlets.xml) (revision fdb3e5c043522549d839142cfb3ef4e919913bbd) +++ lams_tool_chat/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_chat/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_chat/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_chat/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_chat/web/WEB-INF/web.xml =================================================================== diff -u -re851ecbb7a28dba597688df7f4466b2ab603405c -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_chat/web/WEB-INF/web.xml (.../web.xml) (revision e851ecbb7a28dba597688df7f4466b2ab603405c) +++ lams_tool_chat/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -16,7 +16,8 @@ classpath:/org/lamsfoundation/lams/toolApplicationContext.xml classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml - classpath:/org/lamsfoundation/lams/tool/chat/chatApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/chat/chatApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/chat/dbupdates/autopatchContext.xml @@ -63,8 +64,8 @@ - org.lamsfoundation.lams.web.SessionListener - + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + @@ -93,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ @@ -156,6 +157,10 @@ /exportPortfolio + + 120 + + - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_daco/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -rbe03cfbba16a388e85d82cb8986f63d6b2ad568b -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_daco/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision be03cfbba16a388e85d82cb8986f63d6b2ad568b) +++ lams_tool_daco/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_daco/web/WEB-INF/web.xml =================================================================== diff -u -r38be8fb0126eaecb47909d00ad495dbcefd3808d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_daco/web/WEB-INF/web.xml (.../web.xml) (revision 38be8fb0126eaecb47909d00ad495dbcefd3808d) +++ lams_tool_daco/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -109,7 +109,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_dimdim/conf/xdoclet/servlets.xml =================================================================== diff -u -r4c8de20e6e3ea73f98892f70662508e4011e96f6 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_dimdim/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 4c8de20e6e3ea73f98892f70662508e4011e96f6) +++ lams_tool_dimdim/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_dimdim/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r4c8de20e6e3ea73f98892f70662508e4011e96f6 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_dimdim/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 4c8de20e6e3ea73f98892f70662508e4011e96f6) +++ lams_tool_dimdim/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_dimdim/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -r4c8de20e6e3ea73f98892f70662508e4011e96f6 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_dimdim/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 4c8de20e6e3ea73f98892f70662508e4011e96f6) +++ lams_tool_dimdim/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -5,7 +5,10 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> +<%@ attribute name="height" required="false" rtexprvalue="true"%> +<%@ attribute name="width" required="false" rtexprvalue="true"%> <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> +<%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> @@ -15,6 +18,14 @@ + + + + + + + + /fckeditor/ - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_dimdim/web/WEB-INF/web.xml =================================================================== diff -u -rcd6be92480151a7cfb6ae306f5b1f8b41870dadd -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_dimdim/web/WEB-INF/web.xml (.../web.xml) (revision cd6be92480151a7cfb6ae306f5b1f8b41870dadd) +++ lams_tool_dimdim/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_example/conf/xdoclet/servlets.xml =================================================================== diff -u -rfdb3e5c043522549d839142cfb3ef4e919913bbd -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_example/conf/xdoclet/servlets.xml (.../servlets.xml) (revision fdb3e5c043522549d839142cfb3ef4e919913bbd) +++ lams_tool_example/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlett baseDir /UserFiles/ Index: lams_tool_example/web/WEB-INF/web.xml =================================================================== diff -u -re851ecbb7a28dba597688df7f4466b2ab603405c -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_example/web/WEB-INF/web.xml (.../web.xml) (revision e851ecbb7a28dba597688df7f4466b2ab603405c) +++ lams_tool_example/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -5,7 +5,7 @@ javax.servlet.jsp.jstl.fmt.localizationContext - org.lamsfoundation.lams.applicationResources + org.lamsfoundation.lams.tool.example.ApplicationResources @@ -63,17 +63,11 @@ - org.lamsfoundation.lams.web.SessionListener - + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + - context - org.springframework.web.context.ContextLoaderServlet - 1 - - - action org.apache.struts.action.ActionServlet @@ -99,7 +93,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlett baseDir /UserFiles/ @@ -122,6 +116,10 @@ /fckeditor/editor/filemanager/browser/default/connectors/jsp/connector + + 120 + + - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_forum/web/WEB-INF/web.xml =================================================================== diff -u -r59e4b8d442ec5f40e2e7a5bef1bda2059953b59a -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_forum/web/WEB-INF/web.xml (.../web.xml) (revision 59e4b8d442ec5f40e2e7a5bef1bda2059953b59a) +++ lams_tool_forum/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -103,7 +103,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_gmap/conf/xdoclet/servlets.xml =================================================================== diff -u -r3299d560146318cb6f26ec2b234e3af70ec21eba -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_gmap/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 3299d560146318cb6f26ec2b234e3af70ec21eba) +++ lams_tool_gmap/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_gmap/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r3299d560146318cb6f26ec2b234e3af70ec21eba -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_gmap/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 3299d560146318cb6f26ec2b234e3af70ec21eba) +++ lams_tool_gmap/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_gmap/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_gmap/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_gmap/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_gmap/web/WEB-INF/web.xml =================================================================== diff -u -rcd91e8c512cb9f4e299672e839e5a949cfe349df -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_gmap/web/WEB-INF/web.xml (.../web.xml) (revision cd91e8c512cb9f4e299672e839e5a949cfe349df) +++ lams_tool_gmap/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_images/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_images/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_images/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_images/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -r8a7c47632a6a93892f015f068d12adb376c0ae2d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_images/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 8a7c47632a6a93892f015f068d12adb376c0ae2d) +++ lams_tool_images/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_images/web/WEB-INF/web.xml =================================================================== diff -u -r3a1cbcfc06aaf55285140e18e4336ca65db9e255 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_images/web/WEB-INF/web.xml (.../web.xml) (revision 3a1cbcfc06aaf55285140e18e4336ca65db9e255) +++ lams_tool_images/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -110,7 +110,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_lamc/test/web/WEB-INF/web.xml =================================================================== diff -u -r6c121bdc44accc3aed2703f1dcd3fd203fec0b3d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_lamc/test/web/WEB-INF/web.xml (.../web.xml) (revision 6c121bdc44accc3aed2703f1dcd3fd203fec0b3d) +++ lams_tool_lamc/test/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,62 +1,77 @@ - - - - - javax.servlet.jsp.jstl.fmt.localizationContext - org.lamsfoundation.lams.tool.mc.web.McResources - + + javax.servlet.jsp.jstl.fmt.localizationContext + org.lamsfoundation.lams.tool.mc.ApplicationResources + + + contextConfigLocation - - classpath:/org/lamsfoundation/lams/applicationContext.xml - classpath:/org/lamsfoundation/lams/lesson/lessonApplicationContext.xml - classpath:/org/lamsfoundation/lams/toolApplicationContext.xml - classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml - classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml - classpath:/org/lamsfoundation/lams/tool/mc/mcApplicationContext.xml - + + classpath:/org/lamsfoundation/lams/applicationContext.xml + classpath:/org/lamsfoundation/lams/lesson/lessonApplicationContext.xml + classpath:/org/lamsfoundation/lams/toolApplicationContext.xml + classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml + classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/mc/mcApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/mc/dbupdates/autopatchContext.xml + - - - org.springframework.web.context.ContextLoaderListener - - - hibernateFilter - - org.springframework.orm.hibernate3.support.OpenSessionInViewFilter - - - sessionFactoryBeanName - mcSessionFactory - + SystemSessionFilter + + org.lamsfoundation.lams.web.session.SystemSessionFilter + + + + + hibernateFilter + + org.lamsfoundation.lams.util.CustomizedOpenSessionInViewFilter + + + sessionFactoryBeanName + mcSessionFactory + - - - SystemSessionFilter + + + LocaleFilter - org.lamsfoundation.lams.web.session.SystemSessionFilter + org.lamsfoundation.lams.web.filter.LocaleFilter - + - hibernateFilter - *.do - - SystemSessionFilter + /* + + + + hibernateFilter /* - + + + LocaleFilter + /* + + + + + org.springframework.web.context.ContextLoaderListener + + + + + + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + + + - context - org.springframework.web.context.ContextLoaderServlet - 1 - - action org.apache.struts.action.ActionServlet @@ -75,50 +90,142 @@ validate true - 2 + 1 - - - Connector - com.fredck.FCKeditor.connector.ConnectorServlet - - baseDir - /UserFiles/ - - - debug - false - - 1 + + + download + org.lamsfoundation.lams.contentrepository.client.ToolDownload + + toolContentHandlerBeanName + mcToolContentHandler + + 3 + + + exportPortfolio + org.lamsfoundation.lams.tool.mc.web.ExportServlet + - + + + Connector + net.fckeditor.connector.ConnectorServlet + + baseDir + /UserFiles/ + + + debug + false + + 1 + + + action - *.do + *.do + + download + /download/* + + - Connector - /editor/filemanager/browser/default/connectors/jsp/connector - - + exportPortfolio + /exportPortfolio/* + - - 120 - + + Connector + /fckeditor/editor/filemanager/browser/default/connectors/jsp/connector + + + + 500 + /error.jsp + + + 403 + /403.jsp + + + 404 + /404.jsp + + - - 403 - /403.html - + + + --> - - fck-editor - /WEB-INF/fckeditor/tlds/FCKeditor.tld - + + + + + + + + + tags-bean + /WEB-INF/struts/tlds/struts-bean.tld + + + tags-html + /WEB-INF/struts/tlds/struts-html.tld + + + tags-logic + /WEB-INF/struts/tlds/struts-logic.tld + + + tags-tiles + /WEB-INF/struts/tlds/struts-tiles.tld + + + + + + tags-fmt + /WEB-INF/jstl/tlds/fmt.tld + + + tags-core + /WEB-INF/jstl/tlds/c.tld + + + tags-function + /WEB-INF/jstl/tlds/fn.tld + + + tags-xml + /WEB-INF/jstl/tlds/x.tld + + + + + + fck-editor + /WEB-INF/fckeditor/tlds/FCKeditor.tld + + + tags-lams + /WEB-INF/lams.tld + + + + + @@ -132,49 +239,51 @@ AUTHOR ADMIN SYSADMIN + AUTHOR ADMIN - - + - Secure Content - /* + Authoring Update + /authoringStarter.do - LEARNER - TEACHER - MONITOR AUTHOR - ADMIN + AUTHOR ADMIN SYSADMIN + + + Staff Content + /monitoring.do + + + MONITOR + TEACHER + + - Authoring Update - /authoringStarter.do - /authoring.do - + Adminstrator Content + /admin.do + - AUTHOR + ADMIN + AUTHOR ADMIN - - - Staff Content - /monitoringStarter.do - /monitoring.do + LAMS System Adminstrator Content + /sysadmin.do - MONITOR + SYSADMIN - - @@ -184,19 +293,58 @@ AUTHOR MONITOR + TEACHER ADMIN SYSADMIN + AUTHOR ADMIN + + + + + Student + LEARNER + + + Student + TEACHER + + + Can create/modify a learning design + AUTHOR + + + + Can running and monitoring a learning session + MONITOR + + + + Can add/remove users to the system, set up classes of users for sessions + ADMIN + + + + Can add/remove users to the system, set up classes of users for sessions + SYSADMIN + + + + Can create/modify a learning design and edit default tool content + AUTHOR ADMIN + + FORM LAMS /login.jsp + /login.jsp?failed=y - + Index: lams_tool_lamc/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r82475bcf94096557635a347e2927c9995c8a03ee -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_lamc/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 82475bcf94096557635a347e2927c9995c8a03ee) +++ lams_tool_lamc/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + \ No newline at end of file Index: lams_tool_lamc/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_lamc/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_lamc/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_lamc/web/WEB-INF/web.xml =================================================================== diff -u -r558ead6c7d0ae923be08b6e6cd60ea44839ecfdc -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_lamc/web/WEB-INF/web.xml (.../web.xml) (revision 558ead6c7d0ae923be08b6e6cd60ea44839ecfdc) +++ lams_tool_lamc/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -111,7 +111,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_nb/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r47f339f1264a33e426aba033e60507eefa1bf67d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_nb/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 47f339f1264a33e426aba033e60507eefa1bf67d) +++ lams_tool_nb/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + \ No newline at end of file Index: lams_tool_nb/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_nb/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_nb/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_nb/web/WEB-INF/web.xml =================================================================== diff -u -re851ecbb7a28dba597688df7f4466b2ab603405c -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_nb/web/WEB-INF/web.xml (.../web.xml) (revision e851ecbb7a28dba597688df7f4466b2ab603405c) +++ lams_tool_nb/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -14,13 +14,9 @@ classpath:/org/lamsfoundation/lams/tool/noticeboard/applicationContext.xml classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/noticeboard/dbupdates/autopatchContext.xml - - - org.springframework.web.context.ContextLoaderListener - - - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_notebook/web/WEB-INF/web.xml =================================================================== diff -u -re64f3e306f3139c78e8917240c33ea232e75e848 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_notebook/web/WEB-INF/web.xml (.../web.xml) (revision e64f3e306f3139c78e8917240c33ea232e75e848) +++ lams_tool_notebook/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_pixlr/conf/xdoclet/servlets.xml =================================================================== diff -u -rb703d43cf69269e0afcc716321fd5ef42c249a43 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_pixlr/conf/xdoclet/servlets.xml (.../servlets.xml) (revision b703d43cf69269e0afcc716321fd5ef42c249a43) +++ lams_tool_pixlr/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_pixlr/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -rb703d43cf69269e0afcc716321fd5ef42c249a43 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_pixlr/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision b703d43cf69269e0afcc716321fd5ef42c249a43) +++ lams_tool_pixlr/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_pixlr/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -rb703d43cf69269e0afcc716321fd5ef42c249a43 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_pixlr/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision b703d43cf69269e0afcc716321fd5ef42c249a43) +++ lams_tool_pixlr/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -5,7 +5,10 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> +<%@ attribute name="height" required="false" rtexprvalue="true"%> +<%@ attribute name="width" required="false" rtexprvalue="true"%> <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> +<%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> @@ -15,6 +18,14 @@ + + + + + + + + /fckeditor/ - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_pixlr/web/WEB-INF/web.xml =================================================================== diff -u -rb703d43cf69269e0afcc716321fd5ef42c249a43 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_pixlr/web/WEB-INF/web.xml (.../web.xml) (revision b703d43cf69269e0afcc716321fd5ef42c249a43) +++ lams_tool_pixlr/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_sbmt/conf/xdoclet/servlets.xml =================================================================== diff -u -rfdb3e5c043522549d839142cfb3ef4e919913bbd -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_sbmt/conf/xdoclet/servlets.xml (.../servlets.xml) (revision fdb3e5c043522549d839142cfb3ef4e919913bbd) +++ lams_tool_sbmt/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -27,7 +27,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_sbmt/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -rb3f41153ea9815528aed7730b3760cc11f48bf75 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_sbmt/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision b3f41153ea9815528aed7730b3760cc11f48bf75) +++ lams_tool_sbmt/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + \ No newline at end of file Index: lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_sbmt/web/WEB-INF/web.xml =================================================================== diff -u -re851ecbb7a28dba597688df7f4466b2ab603405c -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_sbmt/web/WEB-INF/web.xml (.../web.xml) (revision e851ecbb7a28dba597688df7f4466b2ab603405c) +++ lams_tool_sbmt/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -13,6 +13,7 @@ classpath:/org/lamsfoundation/lams/lesson/lessonApplicationContext.xml classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml classpath:/org/lamsfoundation/lams/toolApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/sbmt/dbupdates/autopatchContext.xml @@ -66,6 +67,11 @@ org.springframework.web.context.ContextLoaderListener + + + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + + action @@ -96,7 +102,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ @@ -141,6 +147,10 @@ /exportPortfolio + + 120 + + - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_scribe/web/WEB-INF/web.xml =================================================================== diff -u -re851ecbb7a28dba597688df7f4466b2ab603405c -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_scribe/web/WEB-INF/web.xml (.../web.xml) (revision e851ecbb7a28dba597688df7f4466b2ab603405c) +++ lams_tool_scribe/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -17,6 +17,7 @@ classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml classpath:/org/lamsfoundation/lams/tool/scribe/scribeApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/scribe/dbupdates/autopatchContext.xml @@ -61,6 +62,11 @@ org.springframework.web.context.ContextLoaderListener + + + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + + action @@ -88,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ @@ -139,6 +145,10 @@ /exportPortfolio + + 120 + + - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_spreadsheet/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -r7f9f772433a7fd55c4475241d4e3bc0765f474e8 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_spreadsheet/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 7f9f772433a7fd55c4475241d4e3bc0765f474e8) +++ lams_tool_spreadsheet/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_spreadsheet/web/WEB-INF/web.xml =================================================================== diff -u -r38be8fb0126eaecb47909d00ad495dbcefd3808d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_spreadsheet/web/WEB-INF/web.xml (.../web.xml) (revision 38be8fb0126eaecb47909d00ad495dbcefd3808d) +++ lams_tool_spreadsheet/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -104,7 +104,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_survey/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_survey/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_survey/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_survey/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -r0020cbe23ed34775811ceab0779d065243444dcb -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_survey/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0020cbe23ed34775811ceab0779d065243444dcb) +++ lams_tool_survey/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/web.xml =================================================================== diff -u -r558ead6c7d0ae923be08b6e6cd60ea44839ecfdc -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_survey/web/WEB-INF/web.xml (.../web.xml) (revision 558ead6c7d0ae923be08b6e6cd60ea44839ecfdc) +++ lams_tool_survey/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -109,7 +109,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_task/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_task/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_task/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_task/web/WEB-INF/tlds/fckeditor/FCKeditor.tld =================================================================== diff -u -r875f56cb6917d1a52bed0545f2933c3b55497a02 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_task/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 875f56cb6917d1a52bed0545f2933c3b55497a02) +++ lams_tool_task/web/WEB-INF/tlds/fckeditor/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_task/web/WEB-INF/web.xml =================================================================== diff -u -r38be8fb0126eaecb47909d00ad495dbcefd3808d -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_task/web/WEB-INF/web.xml (.../web.xml) (revision 38be8fb0126eaecb47909d00ad495dbcefd3808d) +++ lams_tool_task/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -109,7 +109,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_videorecorder/conf/xdoclet/servlets.xml =================================================================== diff -u -r3d081de4a45da632ee6029251318fac795d41813 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_videorecorder/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 3d081de4a45da632ee6029251318fac795d41813) +++ lams_tool_videorecorder/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_videorecorder/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r3d081de4a45da632ee6029251318fac795d41813 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_videorecorder/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 3d081de4a45da632ee6029251318fac795d41813) +++ lams_tool_videorecorder/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_videorecorder/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -r3d081de4a45da632ee6029251318fac795d41813 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_videorecorder/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 3d081de4a45da632ee6029251318fac795d41813) +++ lams_tool_videorecorder/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -5,7 +5,10 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> +<%@ attribute name="height" required="false" rtexprvalue="true"%> +<%@ attribute name="width" required="false" rtexprvalue="true"%> <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> +<%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> @@ -15,6 +18,14 @@ + + + + + + + + /fckeditor/ - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_videorecorder/web/WEB-INF/web.xml =================================================================== diff -u -r3d081de4a45da632ee6029251318fac795d41813 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_videorecorder/web/WEB-INF/web.xml (.../web.xml) (revision 3d081de4a45da632ee6029251318fac795d41813) +++ lams_tool_videorecorder/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_vote/test/web/WEB-INF/web.xml =================================================================== diff -u -r00759d7592ccc90e8769763524afb69546f641d4 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_vote/test/web/WEB-INF/web.xml (.../web.xml) (revision 00759d7592ccc90e8769763524afb69546f641d4) +++ lams_tool_vote/test/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -35,6 +35,7 @@ classpath:/org/lamsfoundation/lams/contentrepository/applicationContext.xml classpath:/org/lamsfoundation/lams/learning/learningApplicationContext.xml classpath:/org/lamsfoundation/lams/tool/vote/voteApplicationContext.xml + classpath:/org/lamsfoundation/lams/tool/vote/dbupdates/autopatchContext.xml @@ -86,8 +87,8 @@ - org.lamsfoundation.lams.web.SessionListener - + org.lamsfoundation.lams.web.session.SetMaxTimeoutListener + @@ -136,7 +137,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ @@ -172,10 +173,6 @@ Connector /fckeditor/editor/filemanager/browser/default/connectors/jsp/connector - - - 120 - 500 @@ -285,16 +282,19 @@ AUTHOR ADMIN SYSADMIN + AUTHOR ADMIN Authoring Update - /authoring.do + /authoringStarter.do AUTHOR + AUTHOR ADMIN + SYSADMIN @@ -338,8 +338,45 @@ TEACHER ADMIN SYSADMIN + AUTHOR ADMIN + + + + + Student + LEARNER + + + Student + TEACHER + + + + Can create/modify a learning design + AUTHOR + + + + Can running and monitoring a learning session + MONITOR + + + + Can add/remove users to the system, set up classes of users for sessions + ADMIN + + + + Can add/remove users to the system, set up classes of users for sessions + SYSADMIN + + + Can create/modify a learning design and edit default tool content + AUTHOR ADMIN + + Index: lams_tool_vote/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r00759d7592ccc90e8769763524afb69546f641d4 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_vote/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 00759d7592ccc90e8769763524afb69546f641d4) +++ lams_tool_vote/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + \ No newline at end of file Index: lams_tool_vote/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -r8a0ce21a725377050cc155f9edb0edad71ac2fd4 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_vote/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 8a0ce21a725377050cc155f9edb0edad71ac2fd4) +++ lams_tool_vote/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_vote/web/WEB-INF/web.xml =================================================================== diff -u -r558ead6c7d0ae923be08b6e6cd60ea44839ecfdc -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_vote/web/WEB-INF/web.xml (.../web.xml) (revision 558ead6c7d0ae923be08b6e6cd60ea44839ecfdc) +++ lams_tool_vote/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -137,7 +137,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_wiki/conf/xdoclet/servlets.xml =================================================================== diff -u -r1082bdcc357c105126a5641cecc68acfa645b66b -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_wiki/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 1082bdcc357c105126a5641cecc68acfa645b66b) +++ lams_tool_wiki/conf/xdoclet/servlets.xml (.../servlets.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -24,7 +24,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_tool_wiki/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== diff -u -r1082bdcc357c105126a5641cecc68acfa645b66b -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_wiki/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 1082bdcc357c105126a5641cecc68acfa645b66b) +++ lams_tool_wiki/web/WEB-INF/fckeditor/tlds/FCKeditor.tld (.../FCKeditor.tld) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -1,215 +1,129 @@ - - - - - 2.3 - 1.1 - FCKeditor - http://fckeditor.net/tags-fckeditor - FCKeditor taglib + + + + The FCKeditor Tag Library offers a very convenient way to create + several FCKeditor instances with different configurations. + Additionally, you can check for user-based capabilities. + + FCKeditor Tag Library + 2.4 + FCK + http://java.fckeditor.net + + Creates a FCKeditor instance with the given parameters. Any + parameter except instanceName which is empty or contains + whitespaces only will be ignored. + + editor editor - com.fredck.FCKeditor.tags.FCKeditorTag - JSP + net.fckeditor.tags.EditorTag + JSP - id + + The unique instance name under which the editor can be + retrieved through the API. + + instanceName true true - + java.lang.String + - basePath - false - true - - - toolbarSet - false - true - - + + Width of the FCKeditor instance in the browser window. + width - false true - + java.lang.String + + + Height of the FCKeditor instance in the browser window. + height - false true - + java.lang.String + - customConfigurationsPath - false + + The toolbar set which shall be displayed to the user. + + toolbarSet true - + java.lang.String + - editorAreaCSS - false + + The path/folder in which the editor is deployed under + the given context. The context path will be attached + automatically. (e.g. '/fckeditor') + + basePath true - + java.lang.String + - baseHref - false + + Passes any content to the FCKeditor document. Use the + jsp:attribute tag for large inline content. \r, \n, and + \t will be truncated. + + value true - + java.lang.String + + ]]> + + + + + Sets a config property of the editor to the supplied value. + You may provide any attribute you want for the editor. Set + at least one attribute per tag or several attributes with + one tag. This tag can only be nested within an editor tag. + For all configuration options click + here]]>. + + config + config + net.fckeditor.tags.ConfigTag + empty + true + + ]]> + + + + + Displays session-dependent and compatibility-related + information. This tag is intended for developers only. + Response messages cannot be localized, they are English + only. + + check + check + net.fckeditor.tags.CheckTag + empty - skinPath - false - true - - - pluginsPath - false - true - - - fullPage - false - true - - - debug - false - true - - - autoDetectLanguage - false - true - - - defaultLanguage - false - true - - - contentLangDirection - false - true - - - enableXHTML - false - true - - - enableSourceXHTML - false - true - - - fillEmptyBlocks - false - true - - - formatSource - false - true - - - formatOutput - false - true - - - formatIndentator - false - true - - - geckoUseSPAN - false - true - - - startupFocus - false - true - - - forcePasteAsPlainText - false - true - - - forceSimpleAmpersand - false - true - - - tabSpaces - false - true - - - useBROnCarriageReturn - false - true - - - toolbarStartExpanded - false - true - - - toolbarCanCollapse - false - true - - - fontColors - false - true - - - fontNames - false - true - - - fontSizes - false - true - - - fontFormats - false - true - - - stylesXmlPath - false - true - - - linkBrowserURL - false - true - - - imageBrowserURL - false - true - - - flashBrowserURL - false - true - - - linkUploadURL - false - true - - - imageUploadURL - false - true - - - flashUploadURL - false - true - + + Provide the feature name you want to check. Valid + features are [FileUpload, FileBrowsing, + CompatibleBrowser] + + command + true + java.lang.String + + +]]> + - + \ No newline at end of file Index: lams_tool_wiki/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_wiki/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_tool_wiki/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} + Index: lams_tool_wiki/web/WEB-INF/web.xml =================================================================== diff -u -r1082bdcc357c105126a5641cecc68acfa645b66b -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_tool_wiki/web/WEB-INF/web.xml (.../web.xml) (revision 1082bdcc357c105126a5641cecc68acfa645b66b) +++ lams_tool_wiki/web/WEB-INF/web.xml (.../web.xml) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -94,7 +94,7 @@ Connector - com.fredck.FCKeditor.connector.ConnectorServlet + net.fckeditor.connector.ConnectorServlet baseDir /UserFiles/ Index: lams_www/web/WEB-INF/tags/FCKEditor.tag =================================================================== diff -u -ra7d315d543efd3ef2a1b85de373fc3336b59e647 -r0732f5d12802da95cf69e474b30630653924abc5 --- lams_www/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision a7d315d543efd3ef2a1b85de373fc3336b59e647) +++ lams_www/web/WEB-INF/tags/FCKEditor.tag (.../FCKEditor.tag) (revision 0732f5d12802da95cf69e474b30630653924abc5) @@ -10,7 +10,6 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> - @@ -20,7 +19,7 @@ - + @@ -52,21 +51,22 @@ --> - - ${value} + toolbarSet="${toolbarSet}"> +${value} +