Changes between Version 4 and Version 5 of TracWikiToPdfPlugin/Doc0.10


Ignore:
Timestamp:
Nov 4, 2015, 10:19:26 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged as reference

Legend:

Unmodified
Added
Removed
Modified
  • TracWikiToPdfPlugin/Doc0.10

    v4 v5  
    11[[TOC(TracWikiToPdfPlugin,TracWikiToPdfPlugin/Doc0.10,TracWikiToPdfPlugin/Doc0.11)]]
    2 = 0.10 Manual =
    32
    4 For now, only those users with WIKI_ADMIN permission can combine wiki pages on one single file. It's possible to define values to title, subtitle, file version and date that are used on the PDF file (the placeholders in the HTML file must be #TITLE#, #SUBJECT#, #VERSAO# and #DATA#).
     3= 0.10 Manual
    54
    6 '''NEW''': Patch #4616 added the definition of a document on a wiki page - there is no need any more to enter a title and select all pages each time you want to create a PDF.[[BR]]
     5For now, only those users with the `WIKI_ADMIN` permission can combine wiki pages on one file. It's possible to define values to title, subtitle, file version and date that are used on the PDF file (the placeholders in the HTML file must be #TITLE#, #SUBJECT#, #VERSAO# and #DATA#).
     6
     7Patch #4616 added the definition of a document on a wiki page. There is no need to enter a title and select all pages each time you want to create a PDF.
     8
    79Instructions by mvlcek:
    810{{{
     
    2325}}}
    2426
    25 
    26 WikiToPdf also adds support to some wiki formatting that didn't work with CombineWikiPlugin neither PageToPdfPlugin:
     27WikiToPdf also adds support to some wiki formatting that didn't work with CombineWikiPlugin nor with the PageToPdfPlugin:
    2728
    2829 - Tables (`||Table||`)
     
    3031 - Code blocks (`{{{ code }}}`)
    3132
    32 ATTENTION: If you want to use a cover file, take care it is encoded in Latin-1 (ISO-8859-1) - otherwise the plugin will fail to use it!
     33'''Note''': If you want to use a cover file, take care it is encoded in Latin-1 (ISO-8859-1) - otherwise the plugin will fail to use it!
    3334
    34 == Example ==
     35== Example
    3536
    36 Configurations WikiToPDF in file trac.ini, more information about HTMLDOC (http://www.htmldoc.org/htmldoc.html#CMDREF)
    37 {{{
     37Configurations WikiToPDF in the `trac.ini` file:
     38{{{#!ini
    3839[components]
    3940wikitopdf.* = enabled
     
    5152
    5253[wikitopdf-admin]
    53 # HTMLDOC options. See the link above.
     54# HTMLDOC options, see link below.
    5455size = A4
    5556right = 1.5cm
     
    6768
    6869[wikitopdf-page]
    69 # HTMLDOC options. See the link above.
     70# HTMLDOC options, see link below.
    7071size = A4
    7172right = 1.5cm
     
    8081# jpeg = 90 # only add when the PDF's generated are too large
    8182}}}
     83
     84More information about HTMLDOC can be found [http://www.htmldoc.org/htmldoc.html#CMDREF here].