Manual:Extension/BlueSpiceUniversalExport and Manual:SMW/Templates overview page: Difference between pages

(Difference between pages)
No edit summary
 
No edit summary
Tag: 2017 source edit
 
Line 1: Line 1:
<bookshelf src="Book:User manual" />
To get a better overview of all templates in the wiki, you can catalog the templates using semantic attributes.
{{DISPLAYTITLE:Export options}}


'''BlueSpiceUniversalExport''' allows exporting wiki pages to various formats. It incorporates various modules, each serving as exporter for a particular export type.
==Steps==


==The export menu==
#'''Activate'''  the feature ''Semantic MediaWiki''  for the namespace "Template"  in the [[Manual:Extension/BlueSpiceNamespaceManager|namespace manager]]. [[File:Manual:1652434929387.png|alt=Namespace manager|center|thumb|450x450px|Namespace manager]]
Every content page on the wiki can be exported. Export fuctions are located in the general [[Manual:BlueSpice Layout#Page tools|page tools]] under the menu item ''Export''. The available export options depend on your wiki configuration. Clicking one of the links downloads the page content in the selected format.
#'''Create''' the page ''Property:Is_templateType''. '''Add''' the following content and '''save''' the page:<syntaxhighlight lang="text">
 
This is a property of type [[Has type::Text]].
<br />
</syntaxhighlight>[[File:Manual:1652435035799.png|alt=Create a property|center|thumb|750x750px|Create a property]]
[[File:Manual:pageexport.png|link=link=https://en.wiki.bluespice.com/wiki/File:UniversalExport1a.png|alt=|center|thumb|348x348px|Export options]]
#'''Add''' the attribute with a value in source editing mode to your templates, wrapped in a <code><nowiki><noinclude></noinclude></nowiki></code> tag . The <code><nowiki><noinclude>...</noinclude></nowiki></code> tag is required so that pages that include this template, are not cataloged as well:<syntaxhighlight lang="text"><noinclude>'''Property type''': [[is_templateType::General]]</noinclude>
 
</syntaxhighlight>[[File:Manual:property page.png|alt=add property to a template page|center|thumb|750x750px|add property to a template page]]
==Configuration==
#'''Add''' the following SMW-query on any wiki page to create an overview that shows your cataloged templates:<syntaxhighlight lang="text">
 
{{#ask: [[is_templateType::+]]
Configuration of UniversalExport (and its modules) can be done in the [[Manual:Extension/BlueSpiceConfigManager|Config manager]] in the ''Export'' section. Available settings include:
|?ist_Templatetype=Template type
 
|mainlabel=Template
*'''Table of contents:''' only applies to exporting books. Select how the ToC should be constructed (as a ToC for the entire book or for each page individually).
|format=table
*'''Hide namespace prefix in HTML:''' removes namespace prefixes when displaying page titles in HTML exports.
|class=datatable
*'''Hide namespace prefix in PDF:''' removes namespace prefixes when displaying page titles in PDF exports.
*'''Metadata (standard, JSON)''' : additional data to be passed to the rendering template in JSON format. This data will be avalible for usage in the template (advanced users).
*'''Metadata (override, JSON)''': offers overriding standard data sent to the rendering template. Values that are set by default can be overriden by using this option (JSON format) (advanced users).<br />
[[File:Manual:UniversalExport2a.png|link=link=link=https://en.wiki.bluespice.com/wiki/File:UniversalExport2a.png|alt=|center|thumb|372x372px|Configuration options]]
<br />
 
==Tags==
If the following tags are included in a page, they are usually applied both to the PDF book export and to the PDF single page export unless otherwise noted.
 
===Manual page breaks===
You can insert the following tag on a wiki page anywhere you want to force a manual page break in the PDF:<syntaxhighlight lang="text">
<bs:uepagebreak ></div>
</syntaxhighlight>In visual editing mode, a marker is displayed where the page breaks have been inserted.
<br />
[[File:pdf-pagebreak-marker.png|center|thumb|750x750px|Marker for page breaks in visual editing mode|link=Special:FilePath/pdf-pagebreak-marker.png]]
<br />
=== Landscape printing ===
To print a PDF page in landscape format, the following tag can be inserted in the wiki page in source editing mode at any position:
  <nowiki><bs:ueparams template="BlueSpice_Landscape" /></nowiki>
To make it easier for the user to add this tag with the visual editor, this tag can be added to a wikitext-template, for example, <code><nowiki>{{LandscapeFormatExport}}</nowiki></code>. The element can be inserted anywhere on the page.{{Box Note|boxtype=note|Note text=This tag only works for the PDF single page export.}}Within a wiki page, individual areas can be marked separately (e.g. wide tables). This way, the output in the export can be landscape or extra-wide. This is possible using the following css classes:
 
*"bs-rotated" -> landscape format
*"bs-narrow" -> 0,33 x A4 portrait
*"bs-ultrawide" -> 2 x A4 landscape
 
These classes can also be combined. Example:
<nowiki><div class="bs-rotated bs-ultrawide">...</div></nowiki>
The start and end div tags can also be added to templates (e.g., <code><nowiki>{{LandscapeStart}}</nowiki></code> and <code><nowiki>{{LandscapeEnd}}</nowiki></code>) to allow users to insert the tags using the visual editor.{{Box Note|boxtype=note|Note text=Display of header and footer areas could be problematic when using these tags.}}These css classes also work for the book export.
 
===PDF-specific styling===
{{Box Note|boxtype=important|Note text=The tag is only taken applied in the single page export (including linked pages and subpages). The tag from individual pages is ignored in the book export. The tag can, however, be inserted on the corresponding book page in the ''Book:'' namespace and is then applied to all pages in the book.}}
To style classes or IDs only in the PDF output, you can include the following tag at the beginning of a page:<syntaxhighlight lang="text">
<bs:uemeta body-class=class-name-here/>
</syntaxhighlight>
 
 
Example''': Changing background, header, and footer settings'''
 
#Insert the tag  <code><nowiki><bs:uemeta body-class=bg-grey bg-yellow no-header-image no-footer-text/></nowiki></code> at the top of your wiki page.
#To define the page background, add the following CSS to  <code>MediaWiki:Common.css</code> ein (admin rights needed):<syntaxhighlight lang="css">
/*PDF output*/
.bg-grey { background-color:#EDEDED !important;} /*sets the page background. There will be a white margin around it.*/
.bg-yellow .bs-page-content { background-color:#F7F0C6; padding:10px;}  /*sets the background color for the content and adds padding*/
.no-header-image #bs-runningheaderfix { background:none;} /*removes the PDF header*/
.no-footer-text #bs-runningfooterleft, .no-footer-text #bs-runningfootercenter, .no-footer-text #bs-runningfooterright  { display:none;} /*removes the text from the PDF footer*/
</syntaxhighlight>Compare the page before inserting the tag and after inserting the tag: <br />
<gallery widths="250" heights="400">
File:Manual:250px-pdf-class-output-vorher.png
File:Manual:250px-pdf-class-output-nachher.png
</gallery>
 
===Exclude content from PDF export===
To exclude the content of a page from the PDF export, it can be inserted via the visual editor under ''Insert> No PDF''. The text is then marked accordingly in the source text:
<nowiki><bs:uenoexport>Dieser Text wird nicht ins PDF exportiert.</bs:uenoexport></nowiki>
 
==Show content in PDF only==
If content should only be displayed in the PDF, but not on the wiki page, this content can be marked manually via the source text. First, a wiki administrator needs to add the following code to the page ''MediaWiki: Common.css'':<syntaxhighlight lang="css">
.bs-page-content .no-pdf {
    display: none;
}
.bs-page-content div.only-pdf {
    display:block;
}
.bs-page-content span.only-pdf {
    display:inline;
}
.only-pdf {
    display: none;
}
</syntaxhighlight>
 
 
A block element or an inline element can now be created for the PDF export. This content is not rendered on the wiki page in display mode. Source code examples:
<span class="p" style="box-sizing: inherit;"><</span><span class="nt" style="color: rgb(0, 128, 0)">div</span> <span class="na" style="color: rgb(125, 144, 41)">class</span><span class="o" style="color: rgb(102, 102, 102)">=</span><span class="s" style="color: rgb(186, 33, 33)">"only-pdf"</span><span class="p" style="box-sizing: inherit;">></span>This block is only shown in the PDF.<span class="p" style="box-sizing: inherit;"></</span><span class="nt" style="color: rgb(0, 128, 0)">div</span><span class="p" style="box-sizing: inherit;">></span>
The adjective <span class="p" style="box-sizing: inherit;"><</span><span class="nt" style="color: rgb(0, 128, 0)">span</span> <span class="na" style="color: rgb(125, 144, 41)">class</span><span class="o" style="color: rgb(102, 102, 102)">=</span><span class="s" style="color: rgb(186, 33, 33)">"no-pdf"</span><span class="p" style="box-sizing: inherit;">></span>beautiful<span class="p" style="box-sizing: inherit;"></</span><span class="nt" style="color: rgb(0, 128, 0)">span</span><span class="p" style="box-sizing: inherit;">><</span><span class="nt" style="color: rgb(0, 128, 0)">span</span> <span class="na" style="color: rgb(125, 144, 41)">class</span><span class="o" style="color: rgb(102, 102, 102)">=</span><span class="s" style="color: rgb(186, 33, 33)">"only-pdf"</span><span class="p" style="box-sizing: inherit;">>small</</span><span class="nt" style="color: rgb(0, 128, 0)">span</span><span class="p" style="box-sizing: inherit;">></span> is shown differently on the page and in the PDF.
<br />
==<span class="mw-headline" id="Darstellung_von_Email-Adressen">Display of email addresses</span>==
If an email link has an additional label on a wiki page, the email address will be listed separately in the PDF after the link label.
<br />
[[File:Manual:750px-pdf-email-wikipage-EN.png|link=link=Special:FilePath/pdf-email-wikipage-EN.png|alt=|center|thumb|479x479px|Email link on wiki page]]
<br />
[[File:Manual:750px-pdf-email-output-EN.png|link=link=Special:FilePath/pdf-email-output-EN.png|alt=|center|thumb|478x478px|PDF link in PDF output]]
<br />
==Printing==
MediaWiki, by default, provides a print view for the pages. This command is also available in the ''Export'' menu (option ''Print'').
 
{{#dpl:title=Manual:Extension/BlueSpiceConfigManager|include=#BlueSpiceUniversalExport}}
 
== Modules ==
The extension ''BlueSpiceUniversalExport'' contains several modules:
 
* '''BlueSpiceUEModulePDF:''' module for exporting pages in PDF (.pdf) format. It downloads the current page (PDF single page), the current page including all its subpages (PDF page with subpages), or the current page and the pages that are linked from that page (PDF page with linked pages).
* '''BlueSpiceUEModuleHTML:''' module for exporting pages as an html zip-archive (option HTML single page).
* '''BlueSpiceUEModuleBookPDF:''' module for exporting books.
{{Box Links-en|Topic1=[[Reference:BlueSpiceUniversalExport]]
|Topic2=[[Reference:BlueSpiceUEModulePDF]]
|Topic3=[[Reference:BlueSpiceUEModuleBookPDF]]
|Topic4=[[Reference:BlueSpiceUEModuleHTML]]
|Topic5=[[Manual:Extension/BlueSpiceBookshelf|Creating books]]
}}
}}
 
</syntaxhighlight>[[File:Manual:smw-query-templateslist.png|alt=List of templates in the wiki|center|thumb|750x750px|List of templates in the wiki]]
{{Translation}}
[[Category:SMW]]
 
[[en:{{FULLPAGENAME}}]]
[[Category:Page tools]]
[[de:Handbuch:SMW/Vorlagenübersicht]]

Revision as of 11:51, 13 May 2022

To get a better overview of all templates in the wiki, you can catalog the templates using semantic attributes.

Steps

  1. Activate the feature Semantic MediaWiki for the namespace "Template" in the namespace manager.
    Namespace manager
    Namespace manager
  2. Create the page Property:Is_templateType. Add the following content and save the page:
    This is a property of type [[Has type::Text]].
    
    Create a property
    Create a property
  3. Add the attribute with a value in source editing mode to your templates, wrapped in a <noinclude></noinclude> tag . The <noinclude>...</noinclude> tag is required so that pages that include this template, are not cataloged as well:
    <noinclude>'''Property type''': [[is_templateType::General]]</noinclude>
    
    add property to a template page
    add property to a template page
  4. Add the following SMW-query on any wiki page to create an overview that shows your cataloged templates:
    {{#ask: [[is_templateType::+]]
    |?ist_Templatetype=Template type
    |mainlabel=Template
    |format=table
    |class=datatable
    }}
    
    List of templates in the wiki
    List of templates in the wiki



To submit feedback about this documentation, visit our community forum.

Discussions