User talk:Cdan

    From The Document Foundation Wiki

    Libre Office CMIS UCP

    The implementation will be done in C++ and be part of the LibreOffice GIT development tree.

    Setup the build structure

    • In order for the new component to be delivered you have to add it to the my_components list in file postprocess/packcomponents/makefile.mk
    my_components = \
         abp \
         basprov \
         bib \
         ...
         ucbcmis1
         ...
    
    • To activate your new provider add an entry to the officecfg/registry/data/org/openoffice/ucb/Configuration.xcu configuration file
        <node oor:name="Provider15" oor:op="replace">
          <prop oor:name="ServiceName">
            <value>com.sun.star.ucb.CMISContentProvider</value>
          </prop>
          <prop oor:name="URLTemplate">
            <value>cmis</value>
          </prop>
          <prop oor:name="Arguments">
            <value>noproxy</value>
          </prop>
        </node>