Many browsers can show PDF documents embedded just like pictures within HTML documents using the <object> HTML tag. Unfortunately, they are usually unable to detect the preferred (screen) size and aspect ratio of the PDF document and display only a little unreadable thumbnail version of the PDF file.
This plugin adds %EMBEDPDF{...}% and %EMBEDPDFSIZE{...}% variables. These variables are helpful for embedding PDF documents in TWiki webs. %EMBEDPDF{...}% will create an <object> HTML tag to show the specified PDF file in a reasonable size (as specified within that PDF file). %EMBEDPDFSIZE{...}% will expand to the width and height of the file.
Caution
This plugin read files from your disk using TWiki::Func::readFile(). It may be possible for an attacker to gain access to arbitrary files on your disk. I have taken some simple precautions to prevent this, but I'm not sure whether they are sufficient.
TWiki may run out of memory if the PDF file referenced is very large. It is mainly intended for small single-page PDF files.
You might want to restrict write access to your Web to prevent intruders from exploiting possible vulnerabilities. I do not think exploits are possible through read-only access. Use at your own risk.
Syntax Rules
%EMBEDPDF{ <filename> }%
%EMBEDPDFSIZE{ <filename> }%
<filename> is the file name of an attachment of the current topic.
Examples
Assume that test.pdf has a height of 40 points and a width of 100 points. Then:
%EMBEDPDF{ test }% expands to <object data="%ATTACHURLPATH%/test.pdf" width="100" height="40" type="application/pdf"> <param name="src" value="%ATTACHURLPATH%/test.pdf" /> <a href="/twiki/pub/TWiki/EmbedPDFPlugin/pdf.pdf">pdf.pdf</a> </object>
%EMBEDPDFSIZE{ test }% expands to width="100" height="40"
Note that the .pdf extension is automatically added to the attachment name.
The plugin checks the user agent setting reported by your browser to detect IE. For IE, the width and height will be enlarged since IE displays the PDF viewer controls within the HTML document along with the PDF document itself.
EmbedPDFPlugin Global Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write %<plugin>_<setting>%, i.e. %INTERWIKIPLUGIN_SHORTDESCRIPTION%
Set SHORTDESCRIPTION = Embed PDF documents in TWiki pages
Debug plugin: (See output in data/debug.txt)
Set DEBUG = 0
Create a link under every embedded PDF file with the specified link text if set (useful for browsers that don't know how to embed PDF):
Set LINKTEXT = (click here to display this PDF file by itself)
Check whether a pre-rendered image of the PDF file with the specified extension is available, and if so, embed the image rather than the PDF file itself:
Set PRERENDERED = jpg
Plugin Installation Instructions
Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the server where TWiki is running.
For an automated installation, run the configure script and follow "Find More Extensions" in the in the Extensions section.
Or, follow these manual installation steps:
Download the ZIP file from the Plugins home (see below).
Unzip EmbedPDFPlugin.zip in your twiki installation directory. Content: