mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
User Profile additions (for collaboration UI) - various new fields in User Profile screen including use of ajax file picker for Avatar image selection
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7480 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -185,15 +185,43 @@
|
|||||||
<property name="cm:presenceUsername">
|
<property name="cm:presenceUsername">
|
||||||
<type>d:text</type>
|
<type>d:text</type>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="cm:organization">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="cm:jobtitle">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="cm:location">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="cm:persondescription">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
|
||||||
|
<!-- system maintained values -->
|
||||||
<property name="cm:sizeCurrent">
|
<property name="cm:sizeCurrent">
|
||||||
<type>d:long</type>
|
<type>d:long</type>
|
||||||
</property>
|
</property>
|
||||||
<property name="cm:sizeQuota">
|
<property name="cm:sizeQuota">
|
||||||
<type>d:long</type>
|
<type>d:long</type>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
<associations>
|
||||||
|
<association name="cm:avatar">
|
||||||
|
<source>
|
||||||
|
<role>cm:avatarOf</role>
|
||||||
|
<mandatory>false</mandatory>
|
||||||
|
<many>false</many>
|
||||||
|
</source>
|
||||||
|
<target>
|
||||||
|
<class>cm:content</class>
|
||||||
|
<role>cm:hasAvatar</role>
|
||||||
|
<mandatory>false</mandatory>
|
||||||
|
<many>false</many>
|
||||||
|
</target>
|
||||||
|
</association>
|
||||||
|
</associations>
|
||||||
</type>
|
</type>
|
||||||
|
|
||||||
<!-- Classification -->
|
<!-- Classification -->
|
||||||
|
@@ -167,10 +167,16 @@ public interface ContentModel
|
|||||||
static final QName PROP_DEFAULT_HOME_FOLDER_PATH = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "defaultHomeFolderPath");
|
static final QName PROP_DEFAULT_HOME_FOLDER_PATH = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "defaultHomeFolderPath");
|
||||||
static final QName PROP_PRESENCEPROVIDER = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "presenceProvider");
|
static final QName PROP_PRESENCEPROVIDER = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "presenceProvider");
|
||||||
static final QName PROP_PRESENCEUSERNAME = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "presenceUsername");
|
static final QName PROP_PRESENCEUSERNAME = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "presenceUsername");
|
||||||
|
static final QName PROP_ORGANIZATION = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "organization");
|
||||||
|
static final QName PROP_JOBTITLE = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "jobtitle");
|
||||||
|
static final QName PROP_LOCATION = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "location");
|
||||||
|
static final QName PROP_PERSONDESC = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "persondescription");
|
||||||
|
|
||||||
static final QName PROP_SIZE_CURRENT = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "sizeCurrent");
|
static final QName PROP_SIZE_CURRENT = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "sizeCurrent");
|
||||||
static final QName PROP_SIZE_QUOTA = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "sizeQuota");
|
static final QName PROP_SIZE_QUOTA = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "sizeQuota");
|
||||||
|
|
||||||
|
static final QName ASSOC_AVATAR = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "avatar");
|
||||||
|
|
||||||
// Ownable aspect
|
// Ownable aspect
|
||||||
static final QName ASPECT_OWNABLE = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "ownable");
|
static final QName ASPECT_OWNABLE = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "ownable");
|
||||||
static final QName PROP_OWNER = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "owner");
|
static final QName PROP_OWNER = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "owner");
|
||||||
|
Reference in New Issue
Block a user