Configuration GoogleDocs

cancel
Showing results for 
Search instead for 
Did you mean: 
shouill
Member II

Configuration GoogleDocs

Bonjour,

après de nombreux tests de configuration je n'arrive toujours pas à rendre googledocs accéssible dans Share.

J'ai pourtant modifié le subsystem googledocs dans tomcat/shared/classes/alfresco/extension/subsystems

# Enables google editable functionality
googledocs.googleeditable.enabled=true

# Google docs application name
#googledocs.application.name=Alfresco ECM system

# Google docs URL
#googledocs.url=http://docs.google.com/feeds/default/private/full

# System google docs authentication credentials
googledocs.username=adresse google
googledocs.password=pass google

# Google docs spreadsheet service name
#googledocs.spreadsheet.service.name=wise

et le fichier share-custom.xml dans tomcat/shared/classes/alfresco/web-extension

 <!– Document Library config section –>
   <config evaluator="string-compare" condition="DocumentLibrary" replace="true">

      <!–
         Whether the folder Tree component should enumerate child folders or not.
         This is a relatively expensive operation, so should be set to "false" for Repositories with broad folder structures.
      –>
      <tree>
         <evaluate-child-folders>false</evaluate-child-folders>
      </tree>

      <!–
         Used by the "Manage Aspects" action

         For custom aspects, remember to also add the relevant i18n string(s)
            cm_myaspect=My Aspect
      –>
      <aspects>
         <!– Aspects that a user can see –>
         <visible>
            <aspect name="cm:generalclassifiable" />
            <aspect name="cm:complianceable" />
            <aspect name="cm:dublincore" />
            <aspect name="cm:effectivity" />
            <aspect name="cm:summarizable" />
            <aspect name="cm:versionable" />
            <aspect name="cm:templatable" />
            <aspect name="cm:emailed" />
            <aspect name="emailserver:aliasable" />
            <aspect name="cm:taggable" />
            <aspect name="app:inlineeditable" />
         <aspect name="gd:googleEditable" />
         </visible>

         <!– Aspects that a user can add. Same as "visible" if left empty –>
         <addable>
         </addable>

         <!– Aspects that a user can remove. Same as "visible" if left empty –>
         <removeable>
         </removeable>
      </aspects>
     <google-docs>
      <!–
      Enable/disable the Google Docs UI integration (Extra types on Create Content menu, Google Docs actions).
      If enabled, remember to also make sure the gd:googleEditable aspect is made visible in the <aspects> section above.
      –>
      <enabled>true</enabled>

      <!–
      The mimetypes of documents Google Docs allows you to create via the Share interface.
      The I18N label is created from the "type" attribute, e.g. google-docs.doc=Google Docs&trade; Document
      –>
      <creatable-types>
      <creatable type="doc">application/msword</creatable>
      <creatable type="xls">application/vnd.ms-excel</creatable>
      <creatable type="ppt">application/vnd.ms-powerpoint</creatable>
      </creatable-types>
     </google-docs>
     <!–
         Used by the "Change Type" action

         Define valid subtypes using the following example:
            <type name="cm:content">
               <subtype name="cm:mysubtype" />
            </type>

         Remember to also add the relevant i18n string(s):
            cm_mysubtype=My SubType
      –>
      <types>
         <type name="cm:content">
            <subtype name="cm:mycontentsubtype" />
         </type>

         <type name="cm:folder">
            <subtype name="cm:myfoldersubtype" />
         </type>
      </types>

      <!–
         If set, will present a WebDAV link for the current item on the Document and Folder details pages.
         Also used to generate the "View in Alfresco Explorer" action for folders.
      –>
      <repository-url>http://portail.cerealog.fr:8080/alfresco</repository-url>
   </config>

Avec tout ça j'ai donc bien l'aspect qui est ajouté mais je n'ai rien dans la création des document. Et lorsque l'aspect est ajouté, je n'ai aucune possibilité de modification supplémentaire.

Merci.
2 Replies
jeanjot
Active Member

Re: Configuration GoogleDocs

Bonsoir

Je vous renvoi à ce post sur le forum
http://forums.alfresco.com/fr/viewtopic.php?f=6&t=4107&start=0&hilit=googledocs

ou à ce post ou je détaille l'installation et l'utilisation de googledocs avec Alfresco version 3.3g en français :
http://tekonorma.fr/WPblogTN/2010/06/alfresco-et-google-docs/
shouill
Member II

Re: Configuration GoogleDocs

Merci.

J'étais déjà passé sur ces pages là mais je n'y ai pas trouvé de solution.