mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Google Doc Integration - The following configuration must be added to your alfresco-global.properties in order to enable the googleeditable repository behaviour: googledocs.username=myuser@bob.com googledocs.password=pwd123pwd googledocs.googleeditable.enabled=true Google Docs Share Integration - Enabled via share-config (see share-config-custom.xml.sample for details) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20018 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
71 lines
2.3 KiB
XML
Executable File
71 lines
2.3 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- Definition of Google Docs Model -->
|
|
|
|
<model name="gd:googledocs" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
|
|
|
<!-- Meta-data about the model -->
|
|
<description>Google Docs Model</description>
|
|
<author>unknown</author>
|
|
<version>1.0</version>
|
|
|
|
<!-- Imports are required to allow references to definitions in other models -->
|
|
<imports>
|
|
<!-- Import Alfresco Dictionary Definitions -->
|
|
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
|
|
</imports>
|
|
|
|
<!-- GoogleDocs Namespace -->
|
|
<namespaces>
|
|
<namespace uri="http://www.alfresco.org/model/googledocs/1.0" prefix="gd"/>
|
|
</namespaces>
|
|
|
|
<aspects>
|
|
|
|
<aspect name="gd:googleEditable">
|
|
<title>Google Editable</title>
|
|
<properties>
|
|
<property name="gd:googleEditable">
|
|
<title>Property who's only purpose is to allow the marker aspect to be automatically added.</title>
|
|
<type>d:boolean</type>
|
|
<protected>true</protected>
|
|
<default>true</default>
|
|
</property>
|
|
</properties>
|
|
</aspect>
|
|
|
|
<aspect name="gd:googleResource">
|
|
<title>Google Document</title>
|
|
<properties>
|
|
<property name="gd:url">
|
|
<title>GoogleDocs URL</title>
|
|
<type>d:text</type>
|
|
<mandatory>false</mandatory>
|
|
</property>
|
|
<property name="gd:resourceId">
|
|
<title>GoogleDocs id</title>
|
|
<type>d:text</type>
|
|
<mandatory>false</mandatory>
|
|
</property>
|
|
<property name="gd:resourceType">
|
|
<title>GoogleDocs Type</title>
|
|
<type>d:text</type>
|
|
<mandatory>false</mandatory>
|
|
</property>
|
|
</properties>
|
|
</aspect>
|
|
|
|
<!-- <aspect name="gd:googlefolder">
|
|
<title>Google Folder</title>
|
|
<properties>
|
|
<property name="gd:folderId">
|
|
<title>Google Folder Id</title>
|
|
<type>d:text</type>
|
|
<mandatory>false</mandatory>
|
|
</property>
|
|
</properties>
|
|
</aspect> -->
|
|
|
|
</aspects>
|
|
|
|
</model> |