Merged V3.2E to HEAD

17460: Refactored calendar views into separate objects
   17466: Remote API part of fix for ETHREEOH-3268.
          - Added simple webscript to return details of the authentication system, such as account creation allowed.
   17473: ETHREEOH-3268 - UI part of fix.
          - Add External Users is now disabled in Share if Alfresco instance does not support creating new users i.e. if LDAP or similar is used.
   17479: ETHREEOH-2409 - Doc Library Details page displays incomplete action list; usability issue
   17480: My Tasks dashlet - prevent display of fake date used for sorting
   17484: Fixed ETHREEOH-2305 "It's impossible to implement a Search request with empty search field in Site Members area."
          - Default settings can be applied in web-framework-config-application.xml:
             <min-search-term-length>1</min-search-term-length>
             <max-search-results>100</max-search-results>
             and later be overriden in the properties section for each searchable components binding file.
          - The components that override the min-search-term-length default value and set it to "0" are:
             site-finder, site-members & site-groups
   17485: Merged DEV_TEMPORARY TO V3.2
      17468: Problem rendering field description (MultilingualTextAreaGenerator) for app:folderlink
   17486: Merged DEV_TEMPORARY to V3.2 (record-only)
   17487: Partial fix for ETHREEOH-3308 (xf:switch cannot be used in repeating field type), fixes 'extra' set of fields seen when using a maxOccurs of more than 1
   17489: MERGED DEV/TEMPORARY to V3.2
      ETHREEOH-3068 - WCM Create Web Content Wizard
   17492: Fix for ETHREEOH-2598 documents uploaded via Share interface are not incremented as versions with CIFS/SMB interface.
          - Auto versioning of documents now correctly handled via CIFS edit if an appropriate rule is applied to a doclib

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18123 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2010-01-19 11:33:37 +00:00
parent a28a05b20c
commit 97f06f3773
4 changed files with 20 additions and 54 deletions

View File

@@ -155,6 +155,7 @@
<show-property name="title" component-generator="TextFieldGenerator" /> <show-property name="title" component-generator="TextFieldGenerator" />
<show-property name="description" component-generator="TextAreaGenerator" /> <show-property name="description" component-generator="TextAreaGenerator" />
<show-property name="destination" converter="org.alfresco.faces.DisplayPathConverter"/> <show-property name="destination" converter="org.alfresco.faces.DisplayPathConverter"/>
<show-property name="app:icon" show-in-view-mode="false" show-in-edit-mode="false" />
</property-sheet> </property-sheet>
</config> </config>

View File

@@ -80,7 +80,6 @@ import org.alfresco.web.ui.common.Utils;
import org.alfresco.web.ui.common.component.UIListItem; import org.alfresco.web.ui.common.component.UIListItem;
import org.alfresco.web.ui.wcm.component.UIUserSandboxes; import org.alfresco.web.ui.wcm.component.UIUserSandboxes;
import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FilenameUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.w3c.dom.Document; import org.w3c.dom.Document;
@@ -899,11 +898,8 @@ public class CreateWebContentWizard extends CreateContentWizard
} }
public String getFormDescriptionAttribute() public String getFormDescriptionAttribute()
{
if (StringUtils.isEmpty(this.formDescriptionAttribute))
{ {
this.formDescriptionAttribute = buildFormDescriptionAttribute(); this.formDescriptionAttribute = buildFormDescriptionAttribute();
}
return this.formDescriptionAttribute; return this.formDescriptionAttribute;
} }

View File

@@ -1289,7 +1289,8 @@ public class Schema2XForms implements Serializable
elementDecl, elementDecl,
compatibleTypes, compatibleTypes,
pathToRoot, pathToRoot,
resourceBundle); resourceBundle,
occurs);
} }
} }
@@ -1342,7 +1343,8 @@ public class Schema2XForms implements Serializable
final XSElementDeclaration elementDecl, final XSElementDeclaration elementDecl,
final TreeSet<XSTypeDefinition> compatibleTypes, final TreeSet<XSTypeDefinition> compatibleTypes,
final String pathToRoot, final String pathToRoot,
final ResourceBundle resourceBundle) final ResourceBundle resourceBundle,
final SchemaUtil.Occurrence occurs)
throws FormBuilderException throws FormBuilderException
{ {
// look for compatible types // look for compatible types
@@ -1364,14 +1366,18 @@ public class Schema2XForms implements Serializable
// multiple compatible types for this element exist // multiple compatible types for this element exist
// in the schema - allow the user to choose from // in the schema - allow the user to choose from
// between compatible non-abstract types // between compatible non-abstract types
boolean isRepeated = isRepeated(occurs, controlType);
Element bindElement = this.createBind(xformsDocument, pathToRoot + "/@xsi:type"); Element bindElement = this.createBind(xformsDocument, pathToRoot + "/@xsi:type");
String bindId = bindElement.getAttributeNS(null, "id"); String bindId = bindElement.getAttributeNS(null, "id");
modelSection.appendChild(bindElement); modelSection.appendChild(bindElement);
this.startBindElement(bindElement, schema, controlType, null, occurs);
//add the "element" bind, in addition //add the "element" bind, in addition
final Element bindElement2 = this.createBind(xformsDocument, pathToRoot); final Element bindElement2 = this.createBind(xformsDocument,
pathToRoot + (isRepeated ? "[position() != last()]" : ""));
final String bindId2 = bindElement2.getAttributeNS(null, "id"); final String bindId2 = bindElement2.getAttributeNS(null, "id");
modelSection.appendChild(bindElement2); modelSection.appendChild(bindElement2);
this.startBindElement(bindElement2, schema, controlType, null, occurs);
// add content to select1 // add content to select1
final Map<String, Element> caseTypes = final Map<String, Element> caseTypes =

View File

@@ -24,53 +24,16 @@
--%> --%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %> <%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %> <%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
<f:verbatim> <h:panelGrid columns="1" cellpadding="2" style="padding-top: 4px; padding-bottom: 4px;"
<script type="text/javascript"> width="100%" rowClasses="wizardSectionHeading">
function checkButtonState() <h:outputText value="&nbsp;#{msg.link_properties}" escape="false" />
{ </h:panelGrid>
if (document.getElementById("dialog:dialog-body:file-name").value.length == 0)
{ <r:propertySheetGrid id="link-props" value="#{DialogManager.bean.editableNode}"
document.getElementById("dialog:finish-button").disabled = true; var="editLinkProps" columns="1" externalConfig="true" />
}
else
{
document.getElementById("dialog:finish-button").disabled = false;
}
}
</script>
<table cellpadding="2" cellspacing="2" border="0" width="100%">
<tr>
<td colspan="2" class="wizardSectionHeading"></f:verbatim><h:outputText value="#{msg.link_properties}" /><f:verbatim></td>
</tr>
<tr><td colspan="2" class="paddingRow"></td></tr>
<tr>
<td><nobr></f:verbatim><h:outputText value="#{msg.file_name}" /><f:verbatim>:</nobr></td>
<td width="90%">
</f:verbatim><h:inputText id="file-name" value="#{DialogManager.bean.properties.name}" size="35" maxlength="1024"
onkeyup="javascript:checkButtonState();" /><f:verbatim>&nbsp;*
</td>
</tr>
<tr>
<td><nobr></f:verbatim><h:outputText value="#{msg.title}" /><f:verbatim>:</nobr></td>
<td>
</f:verbatim><h:inputText id="title" value="#{DialogManager.bean.properties.title}" size="35" maxlength="1024" /><f:verbatim>
</td>
</tr>
<tr>
<td><nobr></f:verbatim><h:outputText value="#{msg.description}" /><f:verbatim>:</nobr></td>
<td>
</f:verbatim><h:inputText value="#{DialogManager.bean.properties.description}" size="35" maxlength="1024" /><f:verbatim>
</td>
</tr>
<tr>
<td><nobr></f:verbatim><h:outputText value="#{msg.link_destination}" /><f:verbatim>:</nobr></td>
<td>
</f:verbatim><h:outputText value="#{DialogManager.bean.destinationPath}" /><f:verbatim>
</td>
</tr>
</table></f:verbatim>