Changes between Version 31 and Version 32 of WikiExportPlugin


Ignore:
Timestamp:
Feb 6, 2014, 2:22:16 PM (10 years ago)
Author:
Ryan J Ollos
Comment:

Markup highlighting.

Legend:

Unmodified
Added
Removed
Modified
  • WikiExportPlugin

    v31 v32  
    1414Python-uno is not installed by default. For install it, depends of OS:
    1515 * Linux: If your Linux uses apt, you can install python-uno with the next command:
    16 {{{
    17  apt-get install python-uno python-beautifulsoup python-imaging
     16 {{{#!sh
     17apt-get install python-uno python-beautifulsoup python-imaging
    1818}}}
    1919  * With Debian Lenny 5.0, if you want to run '''soffice''' with `-headless` option, you must install these following packages too:
    20 {{{
     20  {{{#!sh
    2121apt-get install openoffice.org openoffice.org-headless openoffice.org-java-common
    2222}}}
     
    2626Before use, you must start open office in service mode. To start soffice in this mode, use a command like this:
    2727
    28 {{{
    29  soffice "-accept=socket,host=localhost,port=8100;urp;" -headless              (1)
    30  soffice -accept=socket,host=localhost,port=8100;urp;StarOffice.ServiceManager (2)
     28{{{#!sh
     29soffice "-accept=socket,host=localhost,port=8100;urp;" -headless              (1)
     30soffice -accept=socket,host=localhost,port=8100;urp;StarOffice.ServiceManager (2)
    3131}}}
    3232
     
    5656A possible configuration of this plugin is the next:
    5757
    58 {{{
     58{{{#!ini
    5959 [openOffice-exporter]
    6060 user = john
     
    8383 1. Create a wiki page called '''!WikiTemplateConf'''
    8484 1. Adds to that page a text similar to the next:
     85 {{{
    8586{{{
    86    {{{
    87    template_list= .+, Manual, List
    88    template_file= default.odt, manual.odt, list.odt
    89    }}}
    90 
     87template_list= .+, Manual, List
     88template_file= default.odt, manual.odt, list.odt
     89}}}
    9190}}}
    9291 1. template_list, regular expresion of wikipagenames.
     
    101100
    102101{{{
    103    styles = Default, Heading 1, Heading 2                          Works fine
     102styles = Default, Heading 1, Heading 2                          Works fine
    104103}}}
    105104
    106105{{{
    107    styles = Default,Heading 1,Heading 2                            Doesn't work
     106styles = Default,Heading 1,Heading 2                            Doesn't work
    108107}}}
    109108