Difference between revisions of "PDF"

From Organic Design wiki
(New page: We need to be able to export MediaWiki...)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
We need to be able to export MediaWiki categories as PDF books for printing. We had this functionality in [[XmlWiki]] using the [[pdf-export.php]] code, but this now needs to be made into a standard MediaWiki extension, probably a special page. It seems a waste to make another pdf export when [[MW:Extension:Pdf Export]] is already available, so adding the old XmlWiki category book-building code to the existing one may be the better option, especially since their code is directly editable from the extension article.
 
We need to be able to export MediaWiki categories as PDF books for printing. We had this functionality in [[XmlWiki]] using the [[pdf-export.php]] code, but this now needs to be made into a standard MediaWiki extension, probably a special page. It seems a waste to make another pdf export when [[MW:Extension:Pdf Export]] is already available, so adding the old XmlWiki category book-building code to the existing one may be the better option, especially since their code is directly editable from the extension article.
 +
 +
==  #book ==
 +
A simpler way to do this for now would be to create a new extension which is a parser function to be inserted into category pages that are suitable for download as a book along with any parameters. Default parameters should be globals so they can be set on a per-wiki basis in LocalSettings.
 +
*[[Extension:Pdf Book.php]]
 +
 +
== Extracting information from PDF's ==
 +
There's many free programs and libraries which enable this functionality these days, for example see some from [http://sourceforge.net/search/?type_of_search=soft&words=pdf+extract SourceForge]
 +
 +
== See also ==
 +
*[[Editing PDF files in Linux]]

Latest revision as of 15:00, 28 July 2021

We need to be able to export MediaWiki categories as PDF books for printing. We had this functionality in XmlWiki using the pdf-export.php code, but this now needs to be made into a standard MediaWiki extension, probably a special page. It seems a waste to make another pdf export when MW:Extension:Pdf Export is already available, so adding the old XmlWiki category book-building code to the existing one may be the better option, especially since their code is directly editable from the extension article.

#book

A simpler way to do this for now would be to create a new extension which is a parser function to be inserted into category pages that are suitable for download as a book along with any parameters. Default parameters should be globals so they can be set on a per-wiki basis in LocalSettings.

Extracting information from PDF's

There's many free programs and libraries which enable this functionality these days, for example see some from SourceForge

See also