Project

General

Profile

Plugins Directory » DocPu, Document publishing plugin

Author: Christian Raschko
Website: -
Code repository: -
Registered on: 2010-11-27 (over 13 years ago)
Current version: 0.0.3
Compatible with: Redmine 0.9.x, 1.0.x, 1.1.x
User ratings:   (0)

This plugin enables PDF export and generation for Redmine wiki pages using the LaTeX typesetting system. But it is even more than an simple PDF exporter since it uses the LaTeX text and figure layout engine...

At a glance...

Download current version (v0.0.3): redmine_doc_pu_v003.zip

Download this document as PDF (generated with DocPu!): doc_pu_sample.pdf

Screenshots:

begin pdf page

License

All documents released under the terms of the WTFPL license.

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                    Version 2, December 2004

 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

 Everyone is permitted to copy and distribute verbatim or modified
 copies of this license document, and changing it is allowed as long
 as the name is changed.

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. You just DO WHAT THE FUCK YOU WANT TO. 

DocPu, Document publishing plugin

This plugin enables PDF export and generation for Redmine wiki pages using the LaTeX typesetting system. But it is even more than an simple PDF exporter since it is uses the LaTeX text and figure layout engine which produces extremely nice rendered page layouts.

Features:
  • Merge multiple wiki pages to one single PDF document
  • Automatically generate title page and table of content
  • Automatically generate an index from all strong or italic words
  • Wiki page references are translated to PDF links
  • Code highlighting is supported for Redmine code block
  • Solid table boarders can be drawn
  • Add chapter for every wiki page
  • Remove Redmine macros, eg. {{toc}}
  • Convert wiki footnotes to LaTeX footnotes
  • Use floating or fixed images
  • ...

DocPu uses and extends the RedCloth4 LaTeX export module, which is a converter for the Textile markup language.

Installation

Since DocPu uses LaTeX and RedCloth4, you have to install them first.

Installing RedCloth4

Currently Redmine uses RedCloth3, so you have to additionally install RedCloth4.
The simplest solution is by typing gem install RedCloth, but this only works if you have a compiler set-up, since some parts are written in C code.
For windows users a pre compiled gem package can be downloaded from the repository. Download it first and install it via eg. gem install RedCloth-4.2.2-x86-mswin32-60.gem

Installing LaTeX

On Windows machines you can download and install the MikTex LaTeX distribution. Four all other platforms see http://www.latex-project.org/ftp.html.

DocPu Requires the following LaTeX packages, be sure you have them installed as well:

  • listings
  • ulem
  • graphicx
  • float
  • multirow
  • makeidx
  • hyperref

Testing LaTeX

It's a good idea to test the LaTeX installation before using it with DocPu. Create an empty folder and copy the article_en_tcfi.tex file from the plugin template directory(redmine_doc_pu/templates) to it. Now create an empty file named document.tex, afterwards you can compile the document with pdflatex article_en_tcfi.tex (or path_to_latex/pdflatex). The file should compile successful with the message:

Output written on article_en_tcfi.pdf (1 page, 28874 bytes).

Installing DocPu plugin

To install DocPu, simple download it and extract its content into the Redmine plugin directory. Now run rake db:migrate_plugins from the Redmine directory and restart server. The more detailed installation guide can be found here.

Configure DocPu plugin

Goto Redmine administration and select Plugins. You should see the DocPu plugin installed. Now select Configure and fill in the correct LaTeX and makeindex binary paths.

DocPu settings

In this example, LaTeX and makindex binary paths are set in PATH environment variable. You can also specify the full path, eg. C:\Program Files\MiKTeX 2.7\miktex\bin\pdflatex.exe on windows.

Now it's time to set Roles and permissions for the DocPu plugin in Redmine. Therefore, goto administration and select Roles and permissions. You will see a new category called Document publishing, within that category there are 3 different security settings:

  • View documents: Shows all documents assigned to a project, if disabled the project menu Publish is not displayed.
  • Build documents: Build a document, enables the permission to execute the LaTeX binary.
  • Edit documents: Edit document, this also involves creating, editing and deleting documents.

The last step is to enable the Document publishing module in the project settings.

DocPu wiki syntax

DocPu mainly uses the Redmine/Textile wiki syntax with some minor extensions.

Font styles and enumeration

You can use all supported font styles from the Redmine wiki such as bold, italic, underlined or deleted text. Links such as link are also supported.

  • An enumeration
  • Another enumeration
    • A sub enumeration
    • Another sub enumeration

And all enumerations are supported.

  1. Enumeration 1
  2. Enumeration 2
  3. Enumeration 3
  • Description: A simple description text.
  • More description: Another longer description text. Another longer description text. Another longer description text. Another longer description text. Another longer description text.

Images

The image position can be fixed or floated. Fixed images occur at the text position where they are defined. Floating images will be laid out by LaTeX to best fit the page layout guidelines. Also a image caption is supported by using the alternative text field.

I am a floating image

  • Fixed images: !image.jpg!
  • Floating images: !>image.jpg!
  • Fixed images with caption: !image.jpg(Caption text goes here)!

I am a fixed image

You can also create a reference to an image by writing {{!image.jpg!}}, see figure {{!poo_sample_fix.jpg!}}.

Tables

DocPu supports the Redmine/Textile table syntax with table span and heading.

|_.UserID|_.Name|_.Group|
|\3=.IT|
|\2=.IT|Test|
|1|Artur Pirozhkov|/2.Users|
|2|Vasya Rogov|
|3|John Smith|Admin|
Example:

This table was generated from the code above.

UserID Name Group
IT
IT Test
1 Artur Pirozhkov Users
2 Vasya Rogov
3 John Smith Admin

Code highlighting

Code highlighting is also supported using the LaTeX listings package. All CodeRay languages are supported.

<pre><code class="ruby">
</code>

Example:

This listing was generated from the code above.

# The Greeter class
class Greeter
  def initialize(name)
    @name = name.capitalize
  end

  def salute
    puts "Hello #{@name}!" 
  end
end

Wiki page references and footnotes

Another feature of DocPu1 is the generation of wiki page references. Simply write [[WikiPage]] or [[WikiPage|My page name]] to add a wiki page reference.
For an example see section DocPuSample or My page name.

1 This is a foonote.

Changelog

0.0.3 (2010-12-06)

Compatible with Redmine 0.9.x, 1.0.x, 1.1.x.

  • Added Bulgarian language support, thanks to Ivan Cenov.
redmine_doc_pu_v003.zip (27.5 KB) redmine_doc_pu_v003.zip Christian Raschko, 2010-12-06 08:45

0.0.2 (2010-12-01)

Compatible with Redmine 0.9.x, 1.0.x, 1.1.x.

  • Fixed the "Internal Server error", this bug exists because all paths are defined relative to the redmine server working directory. Now it uses the RAILS_ROOT absolute path.
  • Changed the German LaTeX template to use utf8 files.
redmine_doc_pu_v002.zip (26 KB) redmine_doc_pu_v002.zip Christian Raschko, 2010-12-01 07:04

0.0.1 (2010-11-27)

Compatible with Redmine 0.9.x, 1.0.x, 1.1.x.

doc_pu_sample.pdf (148 KB) doc_pu_sample.pdf Christian Raschko, 2010-11-27 12:42
doc_pu.jpg (3.6 KB) doc_pu.jpg Christian Raschko, 2010-11-27 12:55
doc_pu_permissions.jpg (7.11 KB) doc_pu_permissions.jpg Christian Raschko, 2010-11-27 12:55
doc_pu_settings_dlg.jpg (21 KB) doc_pu_settings_dlg.jpg Christian Raschko, 2010-11-27 12:55
poo_sample_fix.jpg (3.68 KB) poo_sample_fix.jpg Christian Raschko, 2010-11-27 12:55
poo_sample_float.jpg (3.68 KB) poo_sample_float.jpg Christian Raschko, 2010-11-27 12:55
doc_pu_shot_3.jpg (98.6 KB) doc_pu_shot_3.jpg Christian Raschko, 2010-11-27 14:33
doc_pu_shot_1_thumb.jpg (3.9 KB) doc_pu_shot_1_thumb.jpg Christian Raschko, 2010-11-27 14:33
doc_pu_shot_1.jpg (56.3 KB) doc_pu_shot_1.jpg Christian Raschko, 2010-11-27 14:33
doc_pu_shot_2_thumb.jpg (5.31 KB) doc_pu_shot_2_thumb.jpg Christian Raschko, 2010-11-27 14:33
doc_pu_shot_2.jpg (80.1 KB) doc_pu_shot_2.jpg Christian Raschko, 2010-11-27 14:33
doc_pu_shot_3_thumb.jpg (5.3 KB) doc_pu_shot_3_thumb.jpg Christian Raschko, 2010-11-27 14:33
redmine_doc_pu_v001.zip (26 KB) redmine_doc_pu_v001.zip Christian Raschko, 2010-12-01 06:57