Difference between revisions of "Mediawiki Extension PDF Embed"

From Micylou WIKI
Jump to navigation Jump to search
(Page creation)
 
m (Text replacement - "[{{fullurl:{{FULLPAGENAMEE}}|action=mpdf}} Download this page as PDF]" to "")
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''<span style="color:white; background:white">[[PageName::{{PAGENAME}}|]]</span>'''
+
<!-- Template Infobox Generic-->
<!-- Template Infobox Software -->
+
{{Template:Class-Infobox-Generic<!-- ALL MUST BE FILLED IN -->
{{Template-uk:Class-Infobox-Software
 
 
|image = <!-- If an logo is required, enter the link here -->
 
|image = <!-- If an logo is required, enter the link here -->
|Source = [[Source::DataSource]]<!-- [[Source::DataSource]], [[Source::Semantic Query]], ... -->
+
|Section = [[Section::{{PAGENAME}}]]
|Version = [[Version::MW-1.31-LTS]]<!-- [[Version::MW-1.31-LTS]] -->
+
|Source = [[Source::DataSource]] <!-- [[Source::DataSource]], [[Source::Query]] ... -->
|Language = [[Language::English]]<!-- [[Language::English]], [[Language::Français]] -->
+
|Language = [[Language::English]] <!-- [[Language::English]], [[Language::Français]], [[Language::Nederlands]] -->
|Subject = [[Subject::Mediawiki]]<!-- [[Subject::Mediawiki]], ... -->
+
|Topic = [[Topic::Mediawiki]] <!-- [[Topic::Mediawiki]], [[Subject::Microsoft]], ... -->
         |DocumentType =  [[DocumentType::Extension]]<!-- [[DocumentType::Extension]] -->
+
|SubTopic = [[SubTopic::Mediawiki Extension]] <!-- [[SubTopic::Mediawiki Extension]], [[SubTopic::Office 365]] , ... -->
|LastEditBy = [[LastEditBy::{{REVISIONUSER}}]]
+
         |DocumentType =  [[DocumentType::Documentation]] <!-- [[DocumentType::User Guide]], [[DocumentType::Procedure]], [[DocumentType::Script]], [[DocumentType::Gallery]], ...-->
|LastEdit = [[LastEdit::{{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY2}}]]
+
|LastEditBy = [[LastEditBy::{{REVISIONUSER}}]]  
|DocumentStatus = [[DocumentStatus::Active]] <!--[[DocumentStatus::Active]]  [[DocumentStatus::Development]] [[DocumentStatus::Obsolete]] -->
+
|LastEdit = [[LastEdit::{{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY2}}]]  
 +
|Status = [[Status::Active]] <!--[[Status::Active]]  [[Status::Development]] [[Status::Obsolete]] [[Status::Archived]] [[Status::To Delete]]-->
 +
|Access = [[Access::free]] <!--[[Access::free]] [[Access::Private]] [[Access::Subscription]] -->
 +
<!-- Template version 1.01 -->
 
}}
 
}}
<!-- End of Template Infobox Software -->
+
<!-- End of Template Infobox Generic-->
  
 
== Description ==
 
== Description ==

Latest revision as of 13:47, 14 April 2021

Source: DataSource
Language: English
Topic: Mediawiki
SubTopic: Mediawiki Extension
Last Edit By: DochyJP
LastEdit: 2021-04-14
Document type: Documentation
Status: Active
Access: free

Description

The PDFEmbed extension allows PDF files (uploaded to your wiki) to be embedded into a wiki page using <pdf></pdf> tags. The PDF file extension is automatically added and necessarily default permissions are configured. Future functionality will allow this extension to act as a media handler for PDF files.

Installation

Download

Download and place the file(s) in a directory called PDFEmbed in your extensions/ folder.

Activation

Add the following code at the bottom of your LocalSettings.php:

wfLoadExtension( 'PDFEmbed' );

Configuration

If the default configuration needs to be altered add these settings to the "LocalSettings.php" file below the require:

// Default width for the PDF object container.
$wgPdfEmbed['width'] = 800;

// Default height for the PDF object container.
$wgPdfEmbed['height'] = 1090;

Usage

The PDF to be embedded must first be uploaded to the wiki through "Special:Upload". The namespace prefixed file name is then used between the tags to embed it in a page.

<pdf>File:Example.pdf</pdf>

With optional width and height.

<pdf width="500" height="300">File:Example.pdf</pdf>

Scroll to page 10 after document is rendered.

<pdf page="10">File:Example.pdf</pdf>


See also

Extension:PdfHandler Extension:Widgets (PDF-Widget)



Back to top of page - Back to Welcome Page