From 794cbf45846a14b422f93a7f227a6257abcebff9 Mon Sep 17 00:00:00 2001 From: Derek Hulley Date: Mon, 10 Sep 2007 23:44:07 +0000 Subject: [PATCH] Merged V2.1 to HEAD 6515: Fix for AWC-1362 (system error page when clicking on space that doesn't exist in navigator) 6516: Fix for AR-1688 - Vista 6518: Fix for AWC-1479, AWC-1199 and AWC-426 (javascript insertion into forum posts security related fixes) limit to subset of safe tags for posting 6519: Fix AR-1690 Web Scripts url.args is missing even though it's documented in WIKI 6520: Fix for AWC-1271 (component generator config ignored for associations) 6521: Fix AWC-1492 Some included javascript files in template/webscripts use the wrong app context path i.e. /alfresco when the app is called /alfzip 6522: Build fix 6523: - Fix rendering of tasks with no description in office portlets 6524: Added thread pool for index merging (AR-1633, AR-1579) 6525: One more fix for rendering of tasks with no description in office portlets 6527: Renamed axis jar to reflect version number. 6528: WebServices query cache refactoring git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6741 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/messages/webclient.properties | 1 + .../alfresco/office/myAlfresco.get.html.ftl | 2 +- .../org/alfresco/office/myTasks.get.html.ftl | 2 +- .../office/myTasksDetail.get.html.ftl | 2 +- .../alfresco/portlets/doclist.get.html.ftl | 12 +- .../alfresco/portlets/myspaces.get.html.ftl | 12 +- .../alfresco/portlets/mytasks.get.html.ftl | 12 +- .../alfresco/portlets/mywebfiles.get.html.ftl | 12 +- .../alfresco/portlets/mywebforms.get.html.ftl | 12 +- .../org/alfresco/web/bean/BrowseBean.java | 109 ++++++++++++++ .../alfresco/web/bean/SpaceDetailsBean.java | 8 +- .../alfresco/web/bean/forums/ForumsBean.java | 2 +- .../web/scripts/DeclarativeWebScript.java | 3 + .../web/scripts/TestWebScriptServer.java | 1 + .../org/alfresco/web/scripts/URLModel.java | 16 +++ .../web/scripts/WebScriptRuntime.java | 3 + .../org/alfresco/web/ui/common/Utils.java | 134 +++++++++++++++++- .../web/ui/repo/component/UINavigator.java | 44 +++++- .../component/property/UIAssociation.java | 11 +- .../property/UIChildAssociation.java | 11 +- 20 files changed, 360 insertions(+), 49 deletions(-) diff --git a/config/alfresco/messages/webclient.properties b/config/alfresco/messages/webclient.properties index 47243cfbba..6dadc9a461 100644 --- a/config/alfresco/messages/webclient.properties +++ b/config/alfresco/messages/webclient.properties @@ -478,6 +478,7 @@ navigator_desc=Allows tree based navigation around the repository shelf=Shelf shelf_desc=Area that includes the clipboard, recent space and shortcuts reset_navigator=Refresh +navigator_node_deleted=The space just selected is no longer in the repository, please Refresh the Navigator before continuing. # Common Wizard messages steps=Steps diff --git a/config/alfresco/templates/webscripts/org/alfresco/office/myAlfresco.get.html.ftl b/config/alfresco/templates/webscripts/org/alfresco/office/myAlfresco.get.html.ftl index b5d2dc34a6..e6770938bf 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/office/myAlfresco.get.html.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/office/myAlfresco.get.html.ftl @@ -99,7 +99,7 @@ - ${t.description?html} (${t.type?html}) + ${t.description!""?html} (${t.type?html}) <#if hasDue>
Due date: ${due?date} <#else> diff --git a/config/alfresco/templates/webscripts/org/alfresco/office/myTasks.get.html.ftl b/config/alfresco/templates/webscripts/org/alfresco/office/myTasks.get.html.ftl index 580cb5f9f5..afb8a23eb1 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/office/myTasks.get.html.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/office/myTasks.get.html.ftl @@ -66,7 +66,7 @@
- ${t.description?html} (${t.type?html}) + ${t.description!""?html} (${t.type?html}) <#if hasDue>
Due date: ${due?date} <#else> diff --git a/config/alfresco/templates/webscripts/org/alfresco/office/myTasksDetail.get.html.ftl b/config/alfresco/templates/webscripts/org/alfresco/office/myTasksDetail.get.html.ftl index b0aea8f2ab..92317254ee 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/office/myTasksDetail.get.html.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/office/myTasksDetail.get.html.ftl @@ -11,7 +11,7 @@ Task item - ${task.description?html} + ${task.description!""?html}
diff --git a/config/alfresco/templates/webscripts/org/alfresco/portlets/doclist.get.html.ftl b/config/alfresco/templates/webscripts/org/alfresco/portlets/doclist.get.html.ftl index 8cf4a997bd..b22d94bcd8 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/portlets/doclist.get.html.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/portlets/doclist.get.html.ftl @@ -1,11 +1,11 @@ - - - - - - + + + + + + - - - - - + + + + + + - - - - - + + + + + + - - - - - + + + + + + - - - - - + + + + + +