<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.wiki4.bluespice.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PraktiED</id>
	<title>BlueSpice Helpdesk - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.wiki4.bluespice.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PraktiED"/>
	<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/wiki/Special:Contributions/PraktiED"/>
	<updated>2026-04-14T15:31:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:75&amp;diff=1483</id>
		<title>SocialEntity:75</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:75&amp;diff=1483"/>
		<updated>2021-12-20T13:38:04Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 269,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;SMW queries&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 75,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;SMW queries&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SMW_queries&amp;diff=1482</id>
		<title>SMW queries</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SMW_queries&amp;diff=1482"/>
		<updated>2021-12-20T13:38:03Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here you can see some examples for simple queries using the  metadata of a wiki page. You can add these queries to any wiki page.&lt;br /&gt;
&lt;br /&gt;
==Creating page lists==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
[[:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
|format=ul&lt;br /&gt;
|limit=4&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;br /&amp;gt;{{#ask:&lt;br /&gt;
[[:+]][[Modification date::+]]&lt;br /&gt;
|format=ul&lt;br /&gt;
|limit=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Notes:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[:+]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;                     show Pages in the &#039;&#039;Main&#039;&#039; namespace. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Myspace:+]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;  shows pages in the namespace &#039;&#039;Myspace&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[:+||Help:+]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;shows pages in the Main namespace and in the namespace &#039;&#039;Help&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Output in category style===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
[[:+]][[Modification date::+]]&lt;br /&gt;
|format=category&lt;br /&gt;
|limit=12&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
[[:+]][[Modification date::+]]&lt;br /&gt;
|format=category&lt;br /&gt;
|limit=12&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Show pages from a category===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[Category:Administration]] &lt;br /&gt;
| limit=4 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=ol &lt;br /&gt;
}} &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[Category:Administration]] &lt;br /&gt;
| limit=4 &lt;br /&gt;
| searchlabel= &lt;br /&gt;
| format=ol&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Seiten mit gleichem Namensanfang===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Manual:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=ol &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;List of pages in the &#039;&#039;Main &#039;&#039; namespace and in the namespace &#039;&#039;Manual&#039;&#039; that begin with &amp;quot;Visu&amp;quot;.&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Manual:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=ol &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Results format: Table==&lt;br /&gt;
&lt;br /&gt;
===Format &amp;quot;broadtable&amp;quot;===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Manual:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=broadtable&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Manual:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=broadtable&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Format &amp;quot;datatable&amp;quot;===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Handbuch:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=table&lt;br /&gt;
| class=datatable&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box Note|boxtype=important|Note text=The format declaration  &amp;lt;pre&amp;gt;|format=datatable &amp;lt;/pre&amp;gt; currently does not work with the BlueSpice skin. Instead, use the following syntax: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
|format=table&lt;br /&gt;
|class=datatable&lt;br /&gt;
&amp;lt;/pre&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{#ask: &lt;br /&gt;
[[~Visu*]][[:+||Manual:+]]&lt;br /&gt;
[[Modification date::+]]&amp;lt;!-- necessary to filter deleted pages --&amp;gt;&lt;br /&gt;
| limit=5 &lt;br /&gt;
| searchlabel=&lt;br /&gt;
| format=table&lt;br /&gt;
| class=datatable&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=[https://www.semantic-mediawiki.org/wiki/Help:Inline_queries SMW &amp;quot;ask&amp;quot; queries]|Topic2=[https://www.semantic-mediawiki.org/wiki/Help:Result_formats SMW result formats]}}&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Organization]]&lt;br /&gt;
[[de:SMW-Abfragen]]&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:74&amp;diff=1480</id>
		<title>SocialEntity:74</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:74&amp;diff=1480"/>
		<updated>2021-12-20T13:37:10Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 467,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;Manual:Semantic MediaWiki/Examples/Customer data/Queries&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 74,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;Manual:Semantic MediaWiki/Examples/Customer data/Queries&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Semantic_MediaWiki/Examples/Customer_data/Queries&amp;diff=1479</id>
		<title>Manual:Semantic MediaWiki/Examples/Customer data/Queries</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Semantic_MediaWiki/Examples/Customer_data/Queries&amp;diff=1479"/>
		<updated>2021-12-20T13:37:09Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:Getting started with Semantic MediaWiki&amp;quot; /&amp;gt;&lt;br /&gt;
{{DISPLAYTITLE:Semantic data queries}}&lt;br /&gt;
&lt;br /&gt;
You can query and display the data that you collect in the wiki at at any time on any wiki page. &lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Ask&amp;quot; queries==&lt;br /&gt;
With the parser function &amp;quot;#ask&amp;quot;, we can now use the semantic properties and the category association to show the collected data on our wiki pages.&lt;br /&gt;
&lt;br /&gt;
As an example, we list the pages that collect customer data. You can include this  &amp;quot;ask&amp;quot; query on any wiki page:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |?Has location &lt;br /&gt;
 |?Has contact person&lt;br /&gt;
 |?Has First contact&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
This query first defines via the category &#039;&#039;Customer data&#039;&#039; that only  pages within this category should be included in the data query (1). &lt;br /&gt;
&lt;br /&gt;
Then, using the pipe-syntax  &amp;lt;code&amp;gt;|?&amp;lt;/code&amp;gt;  we define which property values we want to display (2).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:ask-Abfrage-einfach-EN.png|alt=Simple &amp;quot;ask&amp;quot; query|center|thumb|300x300px|Simple &amp;quot;ask&amp;quot; query]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The default results output is in a table format. The page from which  the customer data originates is automatically added as a first column (this can be customized as needed).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |?Has location &lt;br /&gt;
 |?Has contact person&lt;br /&gt;
 |?Has First contact&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Adjusting the output format==&lt;br /&gt;
The output of the data is very flexible and offers many customizing options. Let&#039;s look at some examples.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Table formatting===&lt;br /&gt;
&lt;br /&gt;
Output with adjusted table width of 100%  (format=broadtable) and with adjusted column labels. The first column also gets a custom label (mainlabel=Customer):&lt;br /&gt;
&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |?Has location = Location&lt;br /&gt;
 |?Has contact person = Contact&lt;br /&gt;
 |?Has First contact= Date of first contact&lt;br /&gt;
 |mainlabel = Customer&lt;br /&gt;
 |format= broadtable&lt;br /&gt;
}}Query:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |?Has location = Location&lt;br /&gt;
 |?Has contact person = Contact&lt;br /&gt;
 |?Has First contact= Date of first contact&lt;br /&gt;
 |mainlabel = Customer&lt;br /&gt;
 |format= broadtable&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
===Simple page list===&lt;br /&gt;
&lt;br /&gt;
Output of pages that use the template &amp;quot;Customer data&amp;quot; in a list format:&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |format= ul&lt;br /&gt;
}}&lt;br /&gt;
Query:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:&lt;br /&gt;
 [[Category:Customer data]]&lt;br /&gt;
 |format= ul&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Adjusting the query==&lt;br /&gt;
In semantic queries, results can be filtered by namespaces, categories and semantic attributes.&lt;br /&gt;
&lt;br /&gt;
===Examples===&lt;br /&gt;
The following query shows all results for the namespace &#039;&#039;Manual&#039;&#039; and the category &#039;&#039;Customer data&#039;&#039;. The output shows the location of the customers:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:[[Manual:+]] [[Category:Customer data]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
{{#ask:[[Manual:+]] [[Category:Customer data]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br /&amp;gt;The following query shows all results for the namespace &#039;&#039;Manual&#039;&#039; &#039;&#039;&#039;and&#039;&#039; for the namespace &#039;&#039;(Main)&#039;&#039;&#039;&#039;&#039;and&#039;&amp;lt;nowiki/&amp;gt;&#039;&#039; for the category &#039;&#039;customer data&#039;&#039;. All three selection criteria have to be valid for a page to be included in the results. (Note: The namespace (Main) is referenced as empty prefix (&amp;lt;code&amp;gt;:+&amp;lt;/code&amp;gt;).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:[[Manual:+||:+]] [[Category:Customer data]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
|mainlabel = Customer&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
{{#ask:[[Handbuch:+||:+]] [[Category:Customer data]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
|mainlabel = Kunde&lt;br /&gt;
}}&lt;br /&gt;
The following query shows the results from namespace &#039;&#039;Manual&#039;&#039; and from the category &#039;&#039;Customer data&#039;&#039;.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ask:[[Category:Customer data]] [[Has location::Regensburg]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
|mainlabel = Customer&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
{{#ask:[[Category:Customer data]] [[Has location::Regensburg]]&lt;br /&gt;
|?Has location = Location&lt;br /&gt;
|mainlabel = Customer&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=[https://www.semantic-mediawiki.org/wiki/Help:Inline_queries https://www.semantic-mediawiki.org/wiki/Help:Inline_queries] Help page for semantic inline queries}}&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Handbuch:Semantic_MediaWiki/Beispiele/Kundendaten/Abfrage]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1478</id>
		<title>Manual:Extension/BlueSpiceConfigManager</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1478"/>
		<updated>2021-12-20T13:36:30Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Config manager}}&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
With the Config manager, a wiki user with &#039;&#039;sysop&#039;&#039; rights can manage BlueSpice wiki-wide settings in one place. In the [[BlueSpice Layout|navigation]], it is located under &#039;&#039;Global navigations &amp;gt; Management &amp;gt; Config manager&#039;&#039;.This link loads the page &#039;&#039;Special:ConfigManager.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Layout==&lt;br /&gt;
&lt;br /&gt;
===Filter options===&lt;br /&gt;
All settings can be accessed through the following filter options:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Feature:&#039;&#039;&#039; group by type of functionality the setting belongs to (search, administration...)&lt;br /&gt;
*&#039;&#039;&#039;Extension:&#039;&#039;&#039; group by extension name&lt;br /&gt;
*&#039;&#039;&#039;Package:&#039;&#039;&#039; group by BlueSpice edition and services (BlueSpice free, BlueSpice pro, Matomo)&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:ConfigManager2a.png|center|550x550px|thumb|config manager filter|link=Special:FilePath/ConfigManager2a.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All settings are available in any type of grouping. Changing the grouping type does not add or remove setting options. It just groups them differently. After settings are adjusted, they can be saved by clicking &#039;&#039;Save&#039;&#039;, or cancelled by clicking &#039;&#039;Reset&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If a server administrator has configured a setting to no longer be writable, it will be shown as greyed-out in the config manager. You will have to talk to your server administrator about changing such a setting.}}&lt;br /&gt;
&lt;br /&gt;
===Searching for settings===&lt;br /&gt;
A search bar is located above the list of settings. Type in a keyword such as &amp;quot;logo&amp;quot; to find the corresponding setting. The search returns settings regardless of the currently selected group. {{Messagebox|boxtype=note|Note text=The search field has to be empty if you want to see the filter menu instead of the search.}}&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-search.png|alt=Config manager search box|center|thumb|400x400px|Config manager search box]]&lt;br /&gt;
&lt;br /&gt;
==Settings by extension==&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFoundation===&lt;br /&gt;
&lt;br /&gt;
====Updating logo and favicon====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Logo path:&#039;&#039;&#039; The logo image should be stored in the /images folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To upload the logo directly in the wiki:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Upload&#039;&#039;&#039; the logo on the page &#039;&#039;Extended file list&#039;&#039; (&#039;&#039;Special:ExtendedFilelist&#039;&#039;). This is a link under the &#039;&#039;Global actions&#039;&#039; navigation.&lt;br /&gt;
#&#039;&#039;&#039;Search&#039;&#039;&#039; for the logo name in the extended file list.&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; on the thumbnail image of the logo. This opens the logo on a separate page.&amp;lt;br /&amp;gt;[[File:Manual:config-logo1.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo1.png|alt=logo thumbnail image|center|thumb|280x280px|logo thumbnail image]]&lt;br /&gt;
#&#039;&#039;&#039;Copy&#039;&#039;&#039; the relative logo path from the address bar.In a typical Wiki configuration, this path starts with &#039;&#039;/w/....&#039;&#039; .&amp;lt;br /&amp;gt;[[File:Manual:config-logo2.png|alt=relative image path|center|thumb|450x450px|relative image path]]&lt;br /&gt;
#&#039;&#039;&#039;Paste&#039;&#039;&#039; the logo path into the text field for the logo.&amp;lt;br /&amp;gt;[[File:Manual:config-logo3.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo3.png|alt=logo path|center|thumb|450x450px|logo path]]&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Save&#039;&#039;.&lt;br /&gt;
#&#039;&#039;&#039;Refresh&#039;&#039;&#039; the page (Strg+F5). &amp;lt;br /&amp;gt;If the uploaded logo is too large, you can add the following code snippet to the page &#039;&#039;MediaWiki:Common.css&#039;&#039;. This automatically adjusts the image to the height of the main toolbar:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.bs-logo a {background-size: contain;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Favicon path:&#039;&#039;&#039; The favicon image should be stored in the &#039;&#039;/images&#039;&#039; folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade. [https://de.wikipedia.org/wiki/Favicon Favicon images] have the file extension &#039;&#039;.ico&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====System====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed file extensions:&#039;&#039;&#039; For security reasons, the types of files that users can upload are restricted. Here, you can allow additional file formats. If a file format is blacklisted in the server configuration, adding this file extension here will not allow this file type to be uploaded. See [https://mediawiki.org/wiki/Manual:Page_title mediawiki.org/wiki/Manual:Page_title] for more info.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed image extensions:&#039;&#039;&#039; The standard web image types are listed here. In general, you want to restrict image uploads to web images. See [https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types] for more on browser-supported image types.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAbout===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show link &amp;quot;About BlueSpice&amp;quot; in the main menu:&#039;&#039;&#039; Shows or hides the link to the page [[Extension/AboutBlueSpice|AboutBlueSpice]] in the main navigation.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:config-aboutbluespice.png|alt=main navigation|center|thumb|215x215px|main navigation]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceArticleInfo===&lt;br /&gt;
&#039;&#039;BlueSpiceArticleInfo&#039;&#039;, together with &#039;&#039;[[Manual:Extension/BlueSpiceAuthors|BlueSpiceAuthors]], [[Manual:Extension/BlueSpiceReaders|BlueSpiceReaders]], and [[Manual:Extension/BlueSpiceExtendedSearch|BlueSpiceExtendedSearch]]&#039;&#039; is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039; Sets the refresh rate for the &amp;quot;Last edit&amp;quot; value. By default, this date is updated every 10 seconds via JavaScript.&lt;br /&gt;
&lt;br /&gt;
[[File:ArticleInfo3.jpg|center|thumb|450x450px|article info|link=Special:FilePath/ArticleInfo3.jpg]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAuthors===&lt;br /&gt;
&#039;&#039;BlueSpiceAuthors,&#039;&#039; together with &#039;&#039;[[Manual:Extension/BlueSpiceArticleInfo|BlueSpiceArticleInfo]]&#039;&#039; and &#039;&#039;BlueSpiceReaders&#039;&#039;, is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Display authors:&#039;&#039;&#039; Show or hide authors on the page information page.&lt;br /&gt;
[[File:Manual:PageInformation Authors.png|alt=|center|page=authors in page information|thumb|332x332px|Authors of page]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAvatars===&lt;br /&gt;
[[File:Manual:configmanager-instantavatar.png|thumb|101x101px|InstantAvatar|link=Special:FilePath/Manual:configmanager-instantavatar.png]]&lt;br /&gt;
An avatar image is automatically generated if the user does not upload a profile picture or if the user decides to create an avatar image in the preferences.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Generator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;InstantAvatar:&#039;&#039;&#039; Generates an avatar image based on using the initials of the Real name or the Username&lt;br /&gt;
**&#039;&#039;&#039;[[wikipedia:Identicon|Identicon:]]&#039;&#039;&#039; Generates an avatar image based on parts of the user&#039;s IP address.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-identicon.png|alt=Identicon|center|thumb|500x500px|Identicon]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceBookshelf===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager after content:&#039;&#039;&#039; Displays previous/next book page navigation at the end of each book page. (1)&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager before content:&#039;&#039;&#039;  Displays previous/next book page navigation at the beginning of each book page. (2) &amp;lt;br /&amp;gt;[[File:Manual:book-pagenav.png|alt=Book navigation|center|thumb|450x450px|Book navigation ]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Use the display title from book source on article:&#039;&#039;&#039; Shows the title from the book navigation as page title instead of the page name. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-bookdisplaytitle.png|alt=book display title|center|thumb|450x450px|book display title]]&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If the page additionally contains a &amp;lt;nowiki&amp;gt;{{DISPLAYTITLE}}&amp;lt;/nowiki&amp;gt; tag, the display title of the page is shown instead of the book title.}}&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Prepend article table of contents and headlines with book numberation&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Supress namespace prefix of book articles in output&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceChecklist===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mark checklist changes as minor edit:&#039;&#039;&#039; If this setting is active, changes to a checklist (for example, checking a checkbox) in view mode are logged as minor edits. If this setting is inactive, a change to the checklist is  recorded as a regular version in the page history.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-checklistminoredit.png|alt=minor edit|center|thumb|550x550px|minor edit]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedSearch===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;External file paths&#039;&#039;&#039;: External locations to scan for and index files from. These locations are entered in key/value pairs of Physical path and URL prefix.&lt;br /&gt;
**&#039;&#039;Physical path: S&#039;&#039;torage path. For mounted drives, for example: &#039;&#039;X:\Documents&#039;&#039;&lt;br /&gt;
**&#039;&#039;URL prefix:&#039;&#039; All files indexed from the indexed physical location are prefixed in the search results. It should be used if files are available from a web server. By default, the URL prefix is set to the same value as &#039;&#039;Physical path&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+Examples for external file paths&lt;br /&gt;
!Example file&lt;br /&gt;
!Phys. Path&lt;br /&gt;
!URL Prefix&lt;br /&gt;
!Link in results list&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\Sales\Info\glossaryy.pdf&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/Sales/Info/glossary.pdf&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;8&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;9&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;10&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocs&lt;br /&gt;
inline.aspx?path=&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;11&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocsinline.aspx?&lt;br /&gt;
path=/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|/var/www/bluespice/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|/var/www/bluespice/w/&lt;br /&gt;
mounted_share/&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;12&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://wiki.company.local/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use simple autocomplete:&#039;&#039;&#039; forces a more compact autocomplete (1-column Sales thumbnail preview).&amp;lt;br /&amp;gt;[[File:Manual:configuration-autocomplete-simple.1575886540740.png|alt=compact autocomplete|center|thumb|450x450px|compact autocomplete]][[File:Manual:configuration-autocomplete-regular.1575886496796.png|alt=regular autocomplete|center|thumb|450x450px|Salesautocompletey]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Automatically set language filter&#039;&#039;&#039;: This setting applies to multi-languageSalesIt returns seyarch results for a user only in the user&#039;s language. Users can set their language in their [[Manual:Preferences|preferences]].&lt;br /&gt;
*&#039;&#039;&#039;Exclude patterns:&#039;&#039;&#039; Files at external file locations can be exluded from search based on regular expression patterns.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedStatistics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Exclude these users:&#039;&#039;&#039; Some user groups, like WikiSysop can skew the statistics, for example the statistics for search queries or because they complete automated maintenance tasks. These types of user groups can be excluded from the statistical results.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of interval steps:&#039;&#039;&#039; Sets the size of the x-axis for the results. For a few days, select the interval &#039;&#039;Day&#039;&#039; or &#039;&#039;Calendar Week&#039;&#039;, for periods over one year, select &#039;&#039;Year&#039;&#039; or &#039;&#039;Month&#039;&#039;. If you do not get any results for your query, try to adjust the interval accordingly.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceInsertCategory===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Insert category with its parents&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Set page categories as default in upload dialog&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicensertLink===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allow unmapped links&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allowed locations for external files&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Filesystem prefix&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Web accessible prefix:&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePageTemplates===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Force target namespace:&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide default templates:&#039;&#039;&#039; Hides the default &#039;&#039;Empty page&#039;&#039; template.&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePermissionManager===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Backup limit:&#039;&#039;&#039; Sets the number of backups for the permissions manager. Each time the page &#039;&#039;Special:PermissionManager&#039;&#039; is saved, a backup is created. If the backup limit is set to 5, the last five versions of the permissions configuration are saved as backups.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceRSSFeeder===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;URL whitelist:&#039;&#039;&#039; RSS feeds need to be whitelisted here by an administrator before they can be displayed in a wiki page.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of allowed redirects:&#039;&#039;&#039; If there are URL redirects for any of the whitelisted URLs, the number of redirects needs to be adjusted (usually to 1 or 2).&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-RSS.png|alt=RSS Feed settings|center|thumb|450x450px|RSS Feed settings]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceReaders ===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Number of readers to display:&#039;&#039;&#039; Sets the number of readers that are displayed on the Page information in the Quality management tools. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-readers.png|center|thumb|450x450px|page readers|link=Special:FilePath/Manual:configmanager-readers.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BlueSpiceSaferEdit===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Interval for lookup for concurrent editings:&#039;&#039;&#039; Sets the time in seconds for checking if another person is editing the page.&lt;br /&gt;
*&#039;&#039;&#039;Show name of current editor:&#039;&#039;&#039; Shows or hides the name of the user who is currently editing the page.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleBookPDF===&lt;br /&gt;
&lt;br /&gt;
* Table of Contents&lt;br /&gt;
**&#039;&#039;Only article titles (indent by grade):&#039;&#039; Only shows the article titles in the main contents table of the PDF.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-toc-simple.png|alt=PDF table of contents without article TOCs|center|thumb|450x450px|PDF table of contents without article TOCs]]&amp;lt;br /&amp;gt;&lt;br /&gt;
**&#039;&#039;Embed article TOCs (No indent of article titles):&#039;&#039; Shows the table of contents for each article in the main contents table of the PDF.[[File:Manual:configmanager-toc-embed.png|alt=Embed article TOCs|center|thumb|450x450px|Embed article TOCs]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleHTML===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the HTML main heading.&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModulePDF===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the PDF main heading for a page.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-pdfhidenamespace.png|alt=namespace in heading|center|thumb|450x450px|namespace in heading]]&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;BlueSpiceUniversalExport&amp;lt;/span&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Metadata (standard, JSON):&#039;&#039;&#039;&amp;lt;/span&amp;gt;  Additional data to be passed to the rendering template in JSON format. This data can be used in the export template. The template itself is maintened server-side.&lt;br /&gt;
*&#039;&#039;&#039;Metadata (override, JSON)&#039;&#039;&#039;: Allows overriding standard data sent to the rendering template in JSON format. Values that are set by default can be overriden with this option.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceVisualEditorConnector===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Enable VisualEditor for BlueSpice extensions&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Configuration variable to use a simplified save process&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Upload type&#039;&#039;&#039;&lt;br /&gt;
**Original (Here a confirmation of the rights of use/upload is obtained, file name and namespace of the file can be changed, a category can be assigned and a description of the file MUST be given).&lt;br /&gt;
**Simple (No confirmation of required rights is obtained here, the name and namespace of the file can be changed, a description and a category can be assigned, but does not have to be specified)&lt;br /&gt;
**One click (No confirmation about required rights is obtained here, the image cannot be renamed and no category can be assigned. Only the namespace can, but does not have to be adjusted before uploading)  &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceWhoIsOnline===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Time in seconds until a user is marked as offline:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds if a user logged out and no longer displayed as online. This can  be less frequent than the update inteval for newly logged-in users.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds for users.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExpiry===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Show watermark for expired pages in PDF&amp;lt;/span&amp;gt;:&#039;&#039;&#039;  Shows the watermark for expired pages in PDFs.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages in print version:&#039;&#039;&#039; Shows the watermark for expired pages when a page is printed.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Shows a watermark on the page itself.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-watermark.png|alt=watermark|center|thumb|250x250px|watermark]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReview===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Only the owner of a review can change it&amp;lt;/span&amp;gt;:&#039;&#039;&#039; If this is unchecked, any user with edit rights can update a workflow.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReviewExtended===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Workflow will be added to page history:&#039;&#039;&#039; This enables that workflow votes are listed under the page history with the corresponding version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configuration-addworkflowtohistory.png|alt=workflow log entries in page history|center|thumb|650x650px|workflow log entries in page history]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFlaggedRevsConnector===&lt;br /&gt;
&#039;&#039;&#039;Export&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The export settings affect how the pages of a book are generated in the PDF export.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Bookshelf: List accepted revisions log&amp;lt;/span&amp;gt;:&#039;&#039;&#039; Shows a log of stable page versions of pages in the PDF and when these pages were put into accepted status. If editors did not provide a comment when accepting the page, the &#039;&#039;Stable comment&#039;&#039; field for a revision is empty. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-revisionslog.png|alt=accepted revisions log|center|thumb|450x450px|accepted revisions log]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without stable revision:&#039;&#039;&#039; Displays a list of PDF pages at the beginning of the PDF that only exist as a first draft and have no released version.[[File:configmanager-book-nichtfreigegebeneseiten-EN.png|center|thumb|300x300px|Pages without acceptance feature|link=Special:FilePath/configmanager-book-nichtfreigegebeneseiten-EN.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without FlaggedRevs:&#039;&#039;&#039; Displays a list of PDF pages that do not have a release mechanism at the beginning of the PDF.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-book-listnoflaggedrev.png|alt=Pages with no FlaggedRevs feature.|center|thumb|260x260px|Pages with no FlaggedRevs feature.]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;UEModulePDF: Show FlaggedRevs info below main heading&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Prints the latest revision dates (last acceptance and last edit date) below the heading. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-flaggedrevsinfo.png|alt=FlaggedRevs info below heading|center|thumb|350x350px|FlaggedRevs info below heading]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quality assurance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically set the page to stable, when the workflow was finished successfully:&#039;&#039;&#039; The workflow ends with setting the page status to stable. (this setting is available until version 3.1)&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically delete the workflow, when a page was marked as stable:&#039;&#039;&#039; The workflow is deleted.&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show unstable pages for following groups:&#039;&#039;&#039;&amp;lt;/span&amp;gt; If the group &#039;&#039;user&#039;&#039; is removed from the &#039;&#039;BlueSpiceFlaggedRevs&#039;&#039; configuration, users in this group will not be able to see draft versions when they are added as reviewers in a review process. When the group user is removed, only &#039;&#039;sysop&#039;&#039; and &#039;&#039;reviewer&#039;&#039; users can access drafts. If you want other groups, for example &#039;&#039;editor&#039;&#039;, to see draft versions, you need to add them to the configuration. If no user groups are specified in the configuration field, not even reviewers and sysops users will see a visual status indication of a page. They will have access to drafts through the revision history for the page instead.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Searching and Navigation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Indexing only stable versions:&#039;&#039;&#039; Draft versions are excluded from the search results. If a page does not have a stable version, it is not shown as a search result.&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialBlog===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use teaser text for blog entries in the timeline:&#039;&#039;&#039; When you create a blog entry, you can create a teaser text for it by clicking the cogwheel symbol in the blog entry form. If this setting is active, the teaser text will be shown on the page &#039;&#039;Special:Timeline&#039;&#039; instead of the first part of the content.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;[[File:Manual:configmanager-blogteaser.png|center|thumb|380x380px|blog teaser text|link=Special:FilePath/Manual:configmanager-blogteaser.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialTopics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Automatically create all discussion pages.&#039;&#039;&#039; If a user creates the first discussion topic for a page using the link in the page footer of a wiki page, the needed discussion page is automatically created first.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics-create.png|alt=create discussion topic|center|thumb|350x350px|create discussion topic]]&amp;lt;br /&amp;gt;A message &amp;quot;This discussion page was created automatically&amp;quot; is inserted on the discussion page.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics.png|alt=automatically created discussion page|center|thumb|350x350px|automatically created discussion page]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If this setting is deactivated, the user is directed to the &amp;quot;Create page&amp;quot; default page first&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceMatomoConnector===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Site ID:&#039;&#039;&#039;  Matomo ID of the wiki. You can find the site ID as a url parameter in the browser address bar when you are logged into Matomo.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-matomo-idSite.png|alt=matomo site ID|center|thumb|250x250px|matomo site ID]]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Base url:&#039;&#039;&#039; The url to your Matomo installation.&lt;br /&gt;
*&#039;&#039;&#039;Show opt-out link in footer:&#039;&#039;&#039; Displays a link in your wiki footer, usually named &#039;&#039;Analysis service&#039;&#039;.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-matomo-optout-footer.png|alt=footer links|center|thumb|450x450px|footer links]]&amp;lt;br /&amp;gt;On the Analysis service page, there is a checkbox that allows a user to opt-out from being tracked for analysis purposes.[[File:Manual:configmanager-matomo-optout-checkbox.png|alt=Matomo opt-out checkbox|center|thumb|500x500px|Matomo opt-out checkbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=[[Reference:ConfigManager]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Handbuch:Erweiterung/{{SUBPAGENAME}}]]&lt;br /&gt;
[[en:Manual:Extension/{{SUBPAGENAME}}]]&lt;br /&gt;
[[Category:Administration]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:73&amp;diff=1476</id>
		<title>SocialEntity:73</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:73&amp;diff=1476"/>
		<updated>2021-12-20T13:35:24Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 267,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;Manual:Subpage&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 73,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;Manual:Subpage&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Subpage&amp;diff=1475</id>
		<title>Manual:Subpage</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Subpage&amp;diff=1475"/>
		<updated>2021-12-20T13:35:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is a subpage? ==&lt;br /&gt;
To structure wiki content, you can create subpages for a page. This is useful if you have a larger topic and you want to break this topic down into manageable chunks of information. For example, if you have a page about a car, you could have subpages about major car components such as Brakes and Transmission. Subpages can have subpages of their own.&lt;br /&gt;
&lt;br /&gt;
Subpages are automatically displayed in the breadcrumb navigation of the page:&lt;br /&gt;
&lt;br /&gt;
[[File:setup.png|525x525px]]&lt;br /&gt;
&lt;br /&gt;
==Characteristics of a subpage==&lt;br /&gt;
&amp;lt;section begin=&amp;quot;training&amp;quot; /&amp;gt;&amp;lt;section begin=&amp;quot;training-slides&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Syntax-based:&#039;&#039;&#039; A slash in the page title creates a subpage (e.g., &amp;lt;code&amp;gt;Installation Guide/System Preparation&amp;lt;/code&amp;gt;).&lt;br /&gt;
*&#039;&#039;&#039;Navigation:&#039;&#039;&#039; A subpage creates navigation points (breadcrumb).&lt;br /&gt;
*&#039;&#039;&#039;Hierarchy:&#039;&#039;&#039; Enables &amp;quot;strongly associated&amp;quot; page hierarchies.&lt;br /&gt;
*&#039;&#039;&#039;Language versions&#039;&#039;&#039;: Management of language versions of a page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;training-slides&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;bs:drawio filename=&amp;quot;Unterseiten-Syntax&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;training&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Creating  a subpage==&lt;br /&gt;
To create a subpage, it is simply appended to the page name with a slash without spaces. Subpages can in turn have subpages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Installation Guide/System Preparation&lt;br /&gt;
Installation Guide/System Preparation/Windows&lt;br /&gt;
Installation Guide/System Preparation Windows/IIS&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Box_Note|Note text = Since MediaWiki interprets slashes as subpages, you should not use slashes in page names.|boxtype=note}}&lt;br /&gt;
==Reasons for using subpages==&lt;br /&gt;
Typical applications for subpages are:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;To create modular pages:&#039;&#039;&#039; For a larger topic, you can create a main page and link it to individual detail pages. The advantage is that the detail pages can then be specifically linked from other pages.&lt;br /&gt;
*&#039;&#039;&#039;To maintain archives&#039;&#039;&#039;: If the discussions on the user discussion page become too long, file them in a subpage.&lt;br /&gt;
*&#039;&#039;&#039;To translate a page&#039;&#039;&#039;: If the content of a page should be available in other languages. You can create a subpage in German for an English page, for example.&lt;br /&gt;
*T&#039;&#039;&#039;o document a template:&#039;&#039;&#039; If you have a very complex template, you can document its functionality in subpages of the template.&lt;br /&gt;
&lt;br /&gt;
==Creating a list of subpages==&lt;br /&gt;
To list the subpages of the current page, add the following tag to the source text of the page:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: &lt;br /&gt;
&lt;br /&gt;
To display the subpages of the page &#039;&#039;VisualEditor &#039;&#039; in the namespace Manual without showing the namespace or the main page name in the results and without including redirected pages, the syntax is:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:PrefixIndex/Manual:VisualEditor/ |hideredirects=1 |stripprefix=1}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/Manual:VisualEditor/ |hideredirects=1 |stripprefix=1}}&lt;br /&gt;
&lt;br /&gt;
The correct display of the subpages is only visible in read-mode after saving the page. The list is displayed automatically in a multi-column layout and cannot be adjusted.&lt;br /&gt;
&lt;br /&gt;
For more flexibility in the output of subpages, you can work with the [[Manual:Extension/DynamicPageList3|extension DPL 3]] which is included in BlueSpice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=https://www.mediawiki.org/wiki/Help:Subpages|Topic2=[[Manual:Extension/DynamicPageList3 | Creating page lists]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[En:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Unterseiten_erstellen]]&lt;br /&gt;
[[Category:Training]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Organization]]&lt;br /&gt;
[[Category:Content]]&lt;br /&gt;
[[Category:Concept]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1473</id>
		<title>Manual:Extension/BlueSpiceConfigManager</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1473"/>
		<updated>2021-12-20T13:33:41Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Config manager}}&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
With the Config manager, a wiki user with &#039;&#039;sysop&#039;&#039; rights can manage BlueSpice wiki-wide settings in one place. In the [[BlueSpice Layout|navigation]], it is located under &#039;&#039;Global navigations &amp;gt; Management &amp;gt; Config manager&#039;&#039;.This link loads the page &#039;&#039;Special:ConfigManager.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Layout==&lt;br /&gt;
&lt;br /&gt;
===Filter options===&lt;br /&gt;
All settings can be accessed through the following filter options:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Feature:&#039;&#039;&#039; group by type of functionality the setting belongs to (search, administration...)&lt;br /&gt;
*&#039;&#039;&#039;Extension:&#039;&#039;&#039; group by extension name&lt;br /&gt;
*&#039;&#039;&#039;Package:&#039;&#039;&#039; group by BlueSpice edition and services (BlueSpice free, BlueSpice pro, Matomo)&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:ConfigManager2a.png|center|550x550px|thumb|config manager filter|link=Special:FilePath/ConfigManager2a.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All settings are available in any type of grouping. Changing the grouping type does not add or remove setting options. It just groups them differently. After settings are adjusted, they can be saved by clicking &#039;&#039;Save&#039;&#039;, or cancelled by clicking &#039;&#039;Reset&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If a server administrator has configured a setting to no longer be writable, it will be shown as greyed-out in the config manager. You will have to talk to your server administrator about changing such a setting.}}&lt;br /&gt;
&lt;br /&gt;
===Searching for settings===&lt;br /&gt;
A search bar is located above the list of settings. Type in a keyword such as &amp;quot;logo&amp;quot; to find the corresponding setting. The search returns settings regardless of the currently selected group. {{Messagebox|boxtype=note|Note text=The search field has to be empty if you want to see the filter menu instead of the search.}}&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-search.png|alt=Config manager search box|center|thumb|400x400px|Config manager search box]]&lt;br /&gt;
&lt;br /&gt;
==Settings by extension==&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFoundation===&lt;br /&gt;
&lt;br /&gt;
====Updating logo and favicon====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Logo path:&#039;&#039;&#039; The logo image should be stored in the /images folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To upload the logo directly in the wiki:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Upload&#039;&#039;&#039; the logo on the page &#039;&#039;Extended file list&#039;&#039; (&#039;&#039;Special:ExtendedFilelist&#039;&#039;). This is a link under the &#039;&#039;Global actions&#039;&#039; navigation.&lt;br /&gt;
#&#039;&#039;&#039;Search&#039;&#039;&#039; for the logo name in the extended file list.&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; on the thumbnail image of the logo. This opens the logo on a separate page.&amp;lt;br /&amp;gt;[[File:Manual:config-logo1.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo1.png|alt=logo thumbnail image|center|thumb|280x280px|logo thumbnail image]]&lt;br /&gt;
#&#039;&#039;&#039;Copy&#039;&#039;&#039; the relative logo path from the address bar.In a typical Wiki configuration, this path starts with &#039;&#039;/w/....&#039;&#039; .&amp;lt;br /&amp;gt;[[File:Manual:config-logo2.png|alt=relative image path|center|thumb|450x450px|relative image path]]&lt;br /&gt;
#&#039;&#039;&#039;Paste&#039;&#039;&#039; the logo path into the text field for the logo.&amp;lt;br /&amp;gt;[[File:Manual:config-logo3.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo3.png|alt=logo path|center|thumb|450x450px|logo path]]&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Save&#039;&#039;.&lt;br /&gt;
#&#039;&#039;&#039;Refresh&#039;&#039;&#039; the page (Strg+F5). &amp;lt;br /&amp;gt;If the uploaded logo is too large, you can add the following code snippet to the page &#039;&#039;MediaWiki:Common.css&#039;&#039;. This automatically adjusts the image to the height of the main toolbar:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.bs-logo a {background-size: contain;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Favicon path:&#039;&#039;&#039; The favicon image should be stored in the &#039;&#039;/images&#039;&#039; folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade. [https://de.wikipedia.org/wiki/Favicon Favicon images] have the file extension &#039;&#039;.ico&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====System====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed file extensions:&#039;&#039;&#039; For security reasons, the types of files that users can upload are restricted. Here, you can allow additional file formats. If a file format is blacklisted in the server configuration, adding this file extension here will not allow this file type to be uploaded. See [https://mediawiki.org/wiki/Manual:Page_title mediawiki.org/wiki/Manual:Page_title] for more info.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed image extensions:&#039;&#039;&#039; The standard web image types are listed here. In general, you want to restrict image uploads to web images. See [https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types] for more on browser-supported image types.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAbout===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show link &amp;quot;About BlueSpice&amp;quot; in the main menu:&#039;&#039;&#039; Shows or hides the link to the page [[Extension/AboutBlueSpice|AboutBlueSpice]] in the main navigation.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:config-aboutbluespice.png|alt=main navigation|center|thumb|215x215px|main navigation]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceArticleInfo===&lt;br /&gt;
&#039;&#039;BlueSpiceArticleInfo&#039;&#039;, together with &#039;&#039;[[Manual:Extension/BlueSpiceAuthors|BlueSpiceAuthors]], [[Manual:Extension/BlueSpiceReaders|BlueSpiceReaders]], and [[Manual:Extension/BlueSpiceExtendedSearch|BlueSpiceExtendedSearch]]&#039;&#039; is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039; Sets the refresh rate for the &amp;quot;Last edit&amp;quot; value. By default, this date is updated every 10 seconds via JavaScript.&lt;br /&gt;
&lt;br /&gt;
[[File:ArticleInfo3.jpg|center|thumb|450x450px|article info|link=Special:FilePath/ArticleInfo3.jpg]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAuthors===&lt;br /&gt;
&#039;&#039;BlueSpiceAuthors,&#039;&#039; together with &#039;&#039;[[Manual:Extension/BlueSpiceArticleInfo|BlueSpiceArticleInfo]]&#039;&#039; and &#039;&#039;BlueSpiceReaders&#039;&#039;, is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Display authors:&#039;&#039;&#039; Show or hide authors on the page information page.&lt;br /&gt;
[[File:Manual:PageInformation Authors.png|alt=|center|page=authors in page information|thumb|332x332px|Authors of page]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAvatars===&lt;br /&gt;
[[File:Manual:configmanager-instantavatar.png|thumb|101x101px|InstantAvatar|link=Special:FilePath/Manual:configmanager-instantavatar.png]]&lt;br /&gt;
An avatar image is automatically generated if the user does not upload a profile picture or if the user decides to create an avatar image in the preferences.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Generator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;InstantAvatar:&#039;&#039;&#039; Generates an avatar image based on using the initials of the Real name or the Username&lt;br /&gt;
**&#039;&#039;&#039;[[wikipedia:Identicon|Identicon:]]&#039;&#039;&#039; Generates an avatar image based on parts of the user&#039;s IP address.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-identicon.png|alt=Identicon|center|thumb|500x500px|Identicon]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceBookshelf===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager after content:&#039;&#039;&#039; Displays previous/next book page navigation at the end of each book page. (1)&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager before content:&#039;&#039;&#039;  Displays previous/next book page navigation at the beginning of each book page. (2) &amp;lt;br /&amp;gt;[[File:Manual:book-pagenav.png|alt=Book navigation|center|thumb|450x450px|Book navigation ]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Use the display title from book source on article:&#039;&#039;&#039; Shows the title from the book navigation as page title instead of the page name. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-bookdisplaytitle.png|alt=book display title|center|thumb|450x450px|book display title]]&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If the page additionally contains a &amp;lt;nowiki&amp;gt;{{DISPLAYTITLE}}&amp;lt;/nowiki&amp;gt; tag, the display title of the page is shown instead of the book title.}}&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Prepend article table of contents and headlines with book numberation&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Supress namespace prefix of book articles in output&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceChecklist===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mark checklist changes as minor edit:&#039;&#039;&#039; If this setting is active, changes to a checklist (for example, checking a checkbox) in view mode are logged as minor edits. If this setting is inactive, a change to the checklist is  recorded as a regular version in the page history.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-checklistminoredit.png|alt=minor edit|center|thumb|550x550px|minor edit]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedSearch===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;External file paths&#039;&#039;&#039;: External locations to scan for and index files from. These locations are entered in key/value pairs of Physical path and URL prefix.&lt;br /&gt;
**&#039;&#039;Physical path: S&#039;&#039;torage path. For mounted drives, for example: &#039;&#039;X:\Documents&#039;&#039;&lt;br /&gt;
**&#039;&#039;URL prefix:&#039;&#039; All files indexed from the indexed physical location are prefixed in the search results. It should be used if files are available from a web server. By default, the URL prefix is set to the same value as &#039;&#039;Physical path&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+Examples for external file paths&lt;br /&gt;
!Example file&lt;br /&gt;
!Phys. Path&lt;br /&gt;
!URL Prefix&lt;br /&gt;
!Link in results list&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\Sales\Info\glossaryy.pdf&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/Sales/Info/glossary.pdf&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;8&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;9&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;10&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocs&lt;br /&gt;
inline.aspx?path=&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;11&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocsinline.aspx?&lt;br /&gt;
path=/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|/var/www/bluespice/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|/var/www/bluespice/w/&lt;br /&gt;
mounted_share/&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;12&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://wiki.company.local/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use simple autocomplete:&#039;&#039;&#039; forces a more compact autocomplete (1-column Sales thumbnail preview).&amp;lt;br /&amp;gt;[[File:Manual:configuration-autocomplete-simple.1575886540740.png|alt=compact autocomplete|center|thumb|450x450px|compact autocomplete]][[File:Manual:configuration-autocomplete-regular.1575886496796.png|alt=regular autocomplete|center|thumb|450x450px|Salesautocompletey]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Automatically set language filter&#039;&#039;&#039;: This setting applies to multi-languageSalesIt returns seyarch results for a user only in the user&#039;s language. Users can set their language in their [[Manual:Preferences|preferences]].&lt;br /&gt;
*&#039;&#039;&#039;Exclude patterns:&#039;&#039;&#039; Files at external file locations can be exluded from search based on regular expression patterns.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedStatistics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Exclude these users:&#039;&#039;&#039; Some user groups, like WikiSysop can skew the statistics, for example the statistics for search queries or because they complete automated maintenance tasks. These types of user groups can be excluded from the statistical results.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of interval steps:&#039;&#039;&#039; Sets the size of the x-axis for the results. For a few days, select the interval &#039;&#039;Day&#039;&#039; or &#039;&#039;Calendar Week&#039;&#039;, for periods over one year, select &#039;&#039;Year&#039;&#039; or &#039;&#039;Month&#039;&#039;. If you do not get any results for your query, try to adjust the interval accordingly.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceInsertCategory===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Insert category with its parents&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Set page categories as default in upload dialog&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicensertLink===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allow unmapped links&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allowed locations for external files&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Filesystem prefix&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Web accessible prefix:&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePageTemplates===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Force target namespace:&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide default templates:&#039;&#039;&#039; Hides the default &#039;&#039;Empty page&#039;&#039; template.&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePermissionManager===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Backup limit:&#039;&#039;&#039; Sets the number of backups for the permissions manager. Each time the page &#039;&#039;Special:PermissionManager&#039;&#039; is saved, a backup is created. If the backup limit is set to 5, the last five versions of the permissions configuration are saved as backups.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceRSSFeeder===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;URL whitelist:&#039;&#039;&#039; RSS feeds need to be whitelisted here by an administrator before they can be displayed in a wiki page.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of allowed redirects:&#039;&#039;&#039; If there are URL redirects for any of the whitelisted URLs, the number of redirects needs to be adjusted (usually to 1 or 2).&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-RSS.png|alt=RSS Feed settings|center|thumb|450x450px|RSS Feed settings]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceReaders ===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Number of readers to display:&#039;&#039;&#039; Sets the number of readers that are displayed on the Page information in the Quality management tools. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-readers.png|center|thumb|450x450px|page readers|link=Special:FilePath/Manual:configmanager-readers.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== BlueSpiceSaferEdit===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Interval for lookup for concurrent editings:&#039;&#039;&#039; Sets the time in seconds for checking if another person is editing the page.&lt;br /&gt;
*&#039;&#039;&#039;Show name of current editor:&#039;&#039;&#039; Shows or hides the name of the user who is currently editing the page.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleBookPDF===&lt;br /&gt;
&lt;br /&gt;
* Table of Contents&lt;br /&gt;
**&#039;&#039;Only article titles (indent by grade):&#039;&#039; Only shows the article titles in the main contents table of the PDF.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-toc-simple.png|alt=PDF table of contents without article TOCs|center|thumb|450x450px|PDF table of contents without article TOCs]]&amp;lt;br /&amp;gt;&lt;br /&gt;
**&#039;&#039;Embed article TOCs (No indent of article titles):&#039;&#039; Shows the table of contents for each article in the main contents table of the PDF.[[File:Manual:configmanager-toc-embed.png|alt=Embed article TOCs|center|thumb|450x450px|Embed article TOCs]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleHTML===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the HTML main heading.&lt;br /&gt;
{{Box Note|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModulePDF===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the PDF main heading for a page.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-pdfhidenamespace.png|alt=namespace in heading|center|thumb|450x450px|namespace in heading]]&lt;br /&gt;
{{Messagebox|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;BlueSpiceUniversalExport&amp;lt;/span&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Metadata (standard, JSON):&#039;&#039;&#039;&amp;lt;/span&amp;gt;  Additional data to be passed to the rendering template in JSON format. This data can be used in the export template. The template itself is maintened server-side.&lt;br /&gt;
*&#039;&#039;&#039;Metadata (override, JSON)&#039;&#039;&#039;: Allows overriding standard data sent to the rendering template in JSON format. Values that are set by default can be overriden with this option.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceVisualEditorConnector===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Enable VisualEditor for BlueSpice extensions&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Configuration variable to use a simplified save process&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Upload type&#039;&#039;&#039;&lt;br /&gt;
**Original (Here a confirmation of the rights of use/upload is obtained, file name and namespace of the file can be changed, a category can be assigned and a description of the file MUST be given).&lt;br /&gt;
**Simple (No confirmation of required rights is obtained here, the name and namespace of the file can be changed, a description and a category can be assigned, but does not have to be specified)&lt;br /&gt;
**One click (No confirmation about required rights is obtained here, the image cannot be renamed and no category can be assigned. Only the namespace can, but does not have to be adjusted before uploading)  &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceWhoIsOnline ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Time in seconds until a user is marked as offline:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds if a user logged out and no longer displayed as online. This can  be less frequent than the update inteval for newly logged-in users.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds for users.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExpiry===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Show watermark for expired pages in PDF&amp;lt;/span&amp;gt;:&#039;&#039;&#039;  Shows the watermark for expired pages in PDFs.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages in print version:&#039;&#039;&#039; Shows the watermark for expired pages when a page is printed.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Shows a watermark on the page itself.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-watermark.png|alt=watermark|center|thumb|250x250px|watermark]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReview===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Only the owner of a review can change it&amp;lt;/span&amp;gt;:&#039;&#039;&#039; If this is unchecked, any user with edit rights can update a workflow.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReviewExtended ===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Workflow will be added to page history:&#039;&#039;&#039; This enables that workflow votes are listed under the page history with the corresponding version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configuration-addworkflowtohistory.png|alt=workflow log entries in page history|center|thumb|650x650px|workflow log entries in page history]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFlaggedRevsConnector===&lt;br /&gt;
&#039;&#039;&#039;Export&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The export settings affect how the pages of a book are generated in the PDF export.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Bookshelf: List accepted revisions log&amp;lt;/span&amp;gt;:&#039;&#039;&#039; Shows a log of stable page versions of pages in the PDF and when these pages were put into accepted status. If editors did not provide a comment when accepting the page, the &#039;&#039;Stable comment&#039;&#039; field for a revision is empty. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-revisionslog.png|alt=accepted revisions log|center|thumb|450x450px|accepted revisions log]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without stable revision:&#039;&#039;&#039; Displays a list of PDF pages at the beginning of the PDF that only exist as a first draft and have no released version.[[File:configmanager-book-nichtfreigegebeneseiten-EN.png|center|thumb|300x300px|Pages without acceptance feature|link=Special:FilePath/configmanager-book-nichtfreigegebeneseiten-EN.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without FlaggedRevs:&#039;&#039;&#039; Displays a list of PDF pages that do not have a release mechanism at the beginning of the PDF.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-book-listnoflaggedrev.png|alt=Pages with no FlaggedRevs feature.|center|thumb|260x260px|Pages with no FlaggedRevs feature.]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;UEModulePDF: Show FlaggedRevs info below main heading&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Prints the latest revision dates (last acceptance and last edit date) below the heading. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-flaggedrevsinfo.png|alt=FlaggedRevs info below heading|center|thumb|350x350px|FlaggedRevs info below heading]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quality assurance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically set the page to stable, when the workflow was finished successfully:&#039;&#039;&#039; The workflow ends with setting the page status to stable. (this setting is available until version 3.1)&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically delete the workflow, when a page was marked as stable:&#039;&#039;&#039; The workflow is deleted.&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show unstable pages for following groups:&#039;&#039;&#039;&amp;lt;/span&amp;gt; If the group &#039;&#039;user&#039;&#039; is removed from the &#039;&#039;BlueSpiceFlaggedRevs&#039;&#039; configuration, users in this group will not be able to see draft versions when they are added as reviewers in a review process. When the group user is removed, only &#039;&#039;sysop&#039;&#039; and &#039;&#039;reviewer&#039;&#039; users can access drafts. If you want other groups, for example &#039;&#039;editor&#039;&#039;, to see draft versions, you need to add them to the configuration. If no user groups are specified in the configuration field, not even reviewers and sysops users will see a visual status indication of a page. They will have access to drafts through the revision history for the page instead.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Searching and Navigation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Indexing only stable versions:&#039;&#039;&#039; Draft versions are excluded from the search results. If a page does not have a stable version, it is not shown as a search result.&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialBlog ===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use teaser text for blog entries in the timeline:&#039;&#039;&#039; When you create a blog entry, you can create a teaser text for it by clicking the cogwheel symbol in the blog entry form. If this setting is active, the teaser text will be shown on the page &#039;&#039;Special:Timeline&#039;&#039; instead of the first part of the content.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;[[File:Manual:configmanager-blogteaser.png|center|thumb|380x380px|blog teaser text|link=Special:FilePath/Manual:configmanager-blogteaser.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialTopics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Automatically create all discussion pages.&#039;&#039;&#039; If a user creates the first discussion topic for a page using the link in the page footer of a wiki page, the needed discussion page is automatically created first.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics-create.png|alt=create discussion topic|center|thumb|350x350px|create discussion topic]]&amp;lt;br /&amp;gt;A message &amp;quot;This discussion page was created automatically&amp;quot; is inserted on the discussion page.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics.png|alt=automatically created discussion page|center|thumb|350x350px|automatically created discussion page]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If this setting is deactivated, the user is directed to the &amp;quot;Create page&amp;quot; default page first&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceMatomoConnector===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Site ID:&#039;&#039;&#039;  Matomo ID of the wiki. You can find the site ID as a url parameter in the browser address bar when you are logged into Matomo.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-matomo-idSite.png|alt=matomo site ID|center|thumb|250x250px|matomo site ID]]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Base url:&#039;&#039;&#039; The url to your Matomo installation.&lt;br /&gt;
*&#039;&#039;&#039;Show opt-out link in footer:&#039;&#039;&#039; Displays a link in your wiki footer, usually named &#039;&#039;Analysis service&#039;&#039;.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-matomo-optout-footer.png|alt=footer links|center|thumb|450x450px|footer links]]&amp;lt;br /&amp;gt;On the Analysis service page, there is a checkbox that allows a user to opt-out from being tracked for analysis purposes.[[File:Manual:configmanager-matomo-optout-checkbox.png|alt=Matomo opt-out checkbox|center|thumb|500x500px|Matomo opt-out checkbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=[[Reference:ConfigManager]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Handbuch:Erweiterung/{{SUBPAGENAME}}]]&lt;br /&gt;
[[en:Manual:Extension/{{SUBPAGENAME}}]]&lt;br /&gt;
[[Category:Administration]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/EmbedVideo&amp;diff=1472</id>
		<title>Manual:Extension/EmbedVideo</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/EmbedVideo&amp;diff=1472"/>
		<updated>2021-12-20T13:32:33Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Embed videos}}&lt;br /&gt;
&lt;br /&gt;
BlueSpice integrates the MediaWiki extension &#039;&#039;EmbedVideo&#039;&#039; to embed video files from external video services such as YouTube or Vimeo. &#039;&#039;EmbedVideo&#039;&#039; supports more than 20 video services. In addition, you can also embed videos that have been uploaded to the wiki itself.&amp;lt;br /&amp;gt;&lt;br /&gt;
==Embedding external videos==&lt;br /&gt;
[[File:Manual:750px-video-extern-einbetten.PNG|link=link=Special:FilePath/video-extern-einbetten.PNG|alt=|center|thumb|533x533px|Embedded external YouTube videos]]&lt;br /&gt;
{{Box Note|boxtype=note|Note text=These instructions are taken and adapted from the [https://www.mediawiki.org/wiki/Extension:EmbedVideo Mediawiki help page] for EmbedVideo.}}&lt;br /&gt;
===Syntax===&lt;br /&gt;
Use the following parser tag to embed an external video in source editing mode:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#evt:&lt;br /&gt;
 service=youtube&lt;br /&gt;
 |id=https://www.youtube.com/watch?v=MLIE2642neg&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
You can add additional optional parameter (see [[#Attributes for parser tag #evt|list of attributes]]):&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#evt:&lt;br /&gt;
 service=youtube&lt;br /&gt;
 |id=https://www.youtube.com/watch?v=MLIE2642neg&lt;br /&gt;
 |dimensions=300&lt;br /&gt;
 |alignment=inline&lt;br /&gt;
 |description=ISS - Life on the space station &amp;lt;br/&amp;gt; 1:04:27&lt;br /&gt;
 |container=frame&lt;br /&gt;
 |urlargs=&lt;br /&gt;
 |autoresize=&lt;br /&gt;
 |valignment=&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
A shortened syntax is available with the &amp;lt;code&amp;gt;#ev&amp;lt;/code&amp;gt; tag:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ev:service|id|dimensions|alignment|description|container|urlargs|autoresize|valignment}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Placeholders for unused arguments between two arguments have to remain empty and cannot be removed::&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ev:service|id|||description}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;The shortest option to embed a video is by specifying the service name and the video ID:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ev:youtube|MLIE2642neg}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Example with video description (- you can include a line break with the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#ev:youtube|MLIE2642neg|||ISS - Life on the space station &amp;lt;br/&amp;gt; 1:04:27}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Attributes for parser tag #evt===&lt;br /&gt;
{| class=&amp;quot;contenttable-blue&amp;quot; style=&amp;quot;width:100%;&amp;quot; data-sourcepos=&amp;quot;123:1-133:266&amp;quot; dir=&amp;quot;auto&amp;quot;&lt;br /&gt;
! data-sourcepos=&amp;quot;123:2-123:46&amp;quot; |attribute&lt;br /&gt;
! data-sourcepos=&amp;quot;123:48-123:57&amp;quot; |required&lt;br /&gt;
! data-sourcepos=&amp;quot;123:59-123:67&amp;quot; |default&lt;br /&gt;
! data-sourcepos=&amp;quot;123:69-123:262&amp;quot; |description&lt;br /&gt;
|- data-sourcepos=&amp;quot;125:1-125:263&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;125:2-125:46&amp;quot; |&amp;lt;code&amp;gt;service=&amp;quot;(see supported services below)&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;125:48-125:57&amp;quot; |yes&lt;br /&gt;
| data-sourcepos=&amp;quot;125:59-125:67&amp;quot; |&lt;br /&gt;
| data-sourcepos=&amp;quot;125:69-125:262&amp;quot; |The video service that is called when the player is created.&lt;br /&gt;
|- data-sourcepos=&amp;quot;126:1-126:264&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;126:2-126:47&amp;quot; |&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;id=&amp;quot;[id|url]&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;126:49-126:58&amp;quot; |yes&lt;br /&gt;
| data-sourcepos=&amp;quot;126:60-126:68&amp;quot; |&lt;br /&gt;
| data-sourcepos=&amp;quot;126:70-126:263&amp;quot; |The video ID or full URL of the external video.&lt;br /&gt;
|- data-sourcepos=&amp;quot;127:1-127:596&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;127:2-127:48&amp;quot; |&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;dimensions=&amp;quot;[width|widthxheight|xwidth]&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;127:50-127:59&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;127:61-127:69&amp;quot; |640&lt;br /&gt;
| data-sourcepos=&amp;quot;127:71-127:595&amp;quot; |Dimensions in pixelsto size the container for the player. The default format is width x height. It is possible to omit one of the dimensions. The  &amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; always has to be included before the height.&lt;br /&gt;
Examples: &amp;lt;code&amp;gt;480&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;480x320&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;x320&amp;lt;/code&amp;gt;. If the height is not specified, it is calculated using the width and the default ratio of the video service. &lt;br /&gt;
&lt;br /&gt;
Some video services such as &#039;&#039;Gfycat&#039;&#039; don&#039;t have a standard height. Therefore, the height setting should be included for each video.  With &amp;lt;code&amp;gt;$wgEmbedVideoDefaultWidth&amp;lt;/code&amp;gt; the default width can be overwritten in the file &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; on the server.&lt;br /&gt;
|- data-sourcepos=&amp;quot;128:1-128:266&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;128:2-128:49&amp;quot; |&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;alignment=&amp;quot;[left|center|right|inline]&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;128:51-128:60&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;128:62-128:70&amp;quot; |none&lt;br /&gt;
| data-sourcepos=&amp;quot;128:72-128:265&amp;quot; |The video can be placed left, center, right, or inline. Inline allows to add multiple videos in one row. In mobile view, the videos are automatically aligned vertically.&lt;br /&gt;
|- data-sourcepos=&amp;quot;129:1-129:263&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;129:2-129:46&amp;quot; |&amp;lt;code&amp;gt;description=&amp;quot;[wiki text]&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;129:48-129:57&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;129:59-129:67&amp;quot; |none&lt;br /&gt;
| data-sourcepos=&amp;quot;129:69-129:262&amp;quot; |Shows a description below the player container.&lt;br /&gt;
|- data-sourcepos=&amp;quot;130:1-130:263&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;130:2-130:46&amp;quot; |&amp;lt;code&amp;gt;container=&amp;quot;[frame]&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;130:48-130:57&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;130:59-130:67&amp;quot; |none&lt;br /&gt;
| data-sourcepos=&amp;quot;130:69-130:262&amp;quot; |Determines the container type for the player.&lt;br /&gt;
&amp;lt;code&amp;gt;frame&amp;lt;/code&amp;gt;: Places the video player in a Mediawiki preview box.&lt;br /&gt;
|- data-sourcepos=&amp;quot;131:1-131:263&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;131:2-131:46&amp;quot; |&amp;lt;code&amp;gt;urlargs=&amp;quot;modestbranding=1&amp;amp;version=3&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;131:48-131:57&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;131:59-131:67&amp;quot; |none&lt;br /&gt;
| data-sourcepos=&amp;quot;131:69-131:262&amp;quot; |Allows adding additional URL-arguments to the embedded url. This is useful for settings that are only offered by an individual video service.&lt;br /&gt;
|- data-sourcepos=&amp;quot;132:1-132:263&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;132:2-132:46&amp;quot; |&amp;lt;code&amp;gt;autoresize=&amp;quot;false&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;132:48-132:57&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;132:59-132:67&amp;quot; |true&lt;br /&gt;
| data-sourcepos=&amp;quot;132:69-132:262&amp;quot; |Automatically adjusts the video size if the video would extend beyond the size of the container.&lt;br /&gt;
|- data-sourcepos=&amp;quot;133:1-133:266&amp;quot;&lt;br /&gt;
| data-sourcepos=&amp;quot;133:2-133:49&amp;quot; |&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;valignment=&amp;quot;[top|middle|bottom|baseline]&amp;quot;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| data-sourcepos=&amp;quot;133:51-133:60&amp;quot; |no&lt;br /&gt;
| data-sourcepos=&amp;quot;133:62-133:70&amp;quot; |none&lt;br /&gt;
| data-sourcepos=&amp;quot;133:72-133:265&amp;quot; |Aligns the vertical placement of the video either to the top, middle, bottom, or baseline of the parent element. Using this parameter forces the alignment parameter to be inline.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Video container for multiple videos==&lt;br /&gt;
&lt;br /&gt;
===The &amp;lt;nowiki&amp;gt;&amp;lt;evlplayer&amp;gt; tag&amp;lt;/nowiki&amp;gt;===&lt;br /&gt;
Using the tag &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;evlplayer&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and the parser function &amp;lt;code&amp;gt;#evl&amp;lt;/code&amp;gt;, you can play multiple videos with one video player.&lt;br /&gt;
[[File:Manual:350px-video-extern-videocontainer-hook.PNG|link=link=Special:FilePath/Manual:video-extern-videocontainer-hook.PNG|alt=|center|thumb|346x346px|Play multiple videos in one player]]&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;evlplayer id=&amp;quot;Player ID&amp;quot; w=&amp;quot;width&amp;quot; h=&amp;quot;height&amp;quot; class=&amp;quot;class&amp;quot; style=&amp;quot;style&amp;quot;&amp;gt;defult content&amp;lt;/evlplayer&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;A default video can be loaded using &amp;lt;code&amp;gt;defaultid&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;evlplayer id=&amp;quot;player1&amp;quot; w=&amp;quot;480&amp;quot; h=&amp;quot;360&amp;quot; service=&amp;quot;youtube&amp;quot; defaultid=&amp;quot;mCtmECVnrOM&amp;quot; /&amp;gt;&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Attributes for tag &amp;lt;nowiki&amp;gt;&amp;lt;evlplayer&amp;gt; &amp;lt;/nowiki&amp;gt;====&lt;br /&gt;
{| class=&amp;quot;contenttable-blue&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;11%&amp;quot; |attribute&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;10%&amp;quot; |required&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;23%&amp;quot; |default&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;54%&amp;quot; |description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |id&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |default&lt;br /&gt;
| style=&amp;quot;&amp;quot; |An optional unique identifier for this container.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |w&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |800&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Width to send to the embedded player when its generated.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |h&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |16:9 ratio is achieved by the width setting&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Height to send to the embedded player when its generated.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |class&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Additional CSS class to add to the container div style no Additional in-line CSS to apply to the container div.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |style&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Additional inline CSS to apply to the container div.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |defaultid&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Video ID of default video, if you want a default video.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;&amp;quot; |service&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Service of default video, if you want a default video.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Adding video links===&lt;br /&gt;
Use the parser tag &amp;lt;nowiki&amp;gt;{{#evl}}&amp;lt;/nowiki&amp;gt; to define the videos that should be passed to the player:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#evl:&amp;lt;video id&amp;gt;|&amp;lt;Link text&amp;gt;&amp;gt;|&amp;lt;video to play&amp;gt;|service=youtube|player=&amp;lt;player id&amp;gt;}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Example:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{#evl:mCtmECVnrOM|Departure to Mars|player=example-player}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;In addition to the attributes for the tag  &amp;lt;code&amp;gt;#evt&amp;lt;/code&amp;gt; , there are some additional attributes available for the  &amp;lt;code&amp;gt;#evl&amp;lt;/code&amp;gt; tag.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Attributes for parser tag #evl====&lt;br /&gt;
{| class=&amp;quot;contenttable-blue&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;width:100px;&amp;quot; width=&amp;quot;5%&amp;quot; |attribtute&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;4%&amp;quot; |required&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;3%&amp;quot; |default&lt;br /&gt;
! style=&amp;quot;background-color:rgb(234, 236, 240);text-align:center;&amp;quot; width=&amp;quot;86%&amp;quot; |description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;&amp;quot; |video id&lt;br /&gt;
| style=&amp;quot;&amp;quot; |yes&lt;br /&gt;
| style=&amp;quot;&amp;quot; |none&lt;br /&gt;
| style=&amp;quot;&amp;quot; |The ID of the video you would like to play.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;&amp;quot; |link text&lt;br /&gt;
| style=&amp;quot;&amp;quot; |yes&lt;br /&gt;
| style=&amp;quot;&amp;quot; |none&lt;br /&gt;
| style=&amp;quot;&amp;quot; |The text to display inside the link.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:100px;&amp;quot; |player&lt;br /&gt;
| style=&amp;quot;&amp;quot; |no&lt;br /&gt;
| style=&amp;quot;&amp;quot; |‘default’&lt;br /&gt;
| style=&amp;quot;&amp;quot; |Player container to load video in. &#039;&#039;Note that the ID &#039;default&#039; will only exist if you&#039;ve defined a player with no ID.&amp;lt;nowiki/&amp;gt;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;evlplayer w=&amp;quot;600&amp;quot; id=&amp;quot;example-player&amp;quot;&amp;gt;&lt;br /&gt;
default content&lt;br /&gt;
&amp;lt;/evlplayer&amp;gt;&lt;br /&gt;
{{#evl:OLeWbRdW6rY|Let eet Go|1|player=example-player}}&lt;br /&gt;
{{#evl:mCtmECVnrOM|Departure to Mars|2|player=example-player}}&lt;br /&gt;
{{#evl:MLIE2642neg|ISS - Life in the space station|3|player=example-player}}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
==Embedding local videos==&lt;br /&gt;
Videos that have been uploaded to the Wiki can also be embedded in source editing mode. This can also be done using the extension [[Manual:Extension/BlueSpicePlayer|BlueSpicePlayer]]. BlueSpicePlayer has no functions to embed external videos, however. &lt;br /&gt;
&lt;br /&gt;
The two extensions have the following differences when embedding local video files:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;contenttable-blue&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
! style=&amp;quot;width:20%;&amp;quot; |Syntax/Parameter&lt;br /&gt;
! style=&amp;quot;width:39%;&amp;quot; |EmbedVideo&lt;br /&gt;
!BlueSpicePlayer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |Syntax&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |corresponds to the syntax of embedding image files:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[File:samplename.mp4]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bs:showtime&amp;gt;samplename.mp4&amp;lt;/bs:showtime&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |Size&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |Only the width can be defined. The video fills the entire width of the player container:[[File:300px-video-size-embedvideo-600.PNG|alt=|center]]&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[File:Manual:300px-video-size-showtime-600.PNG]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
|Width and height can be defined separately. If the width of the video is smaller than the video container, the canvas is filled in black.&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bs:showtime width=&amp;quot;600&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;..[[File:Manual:300px-video-size-showtime-600.PNG|alt=BlueSpicePlayer with 600px width|center|thumb|BlueSpicePlayer with 600px width]].&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |Loop&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; | -&amp;lt;br /&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bs:showtime repeat=&amp;quot;yes&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Autostart&lt;br /&gt;
| -&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bs:showtime autostart=&amp;quot;yes&amp;quot;&amp;lt;/code&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Star/End&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[File:samplename.mp4|start=2|end=6]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
Time can be added as: &#039;&#039;ss, mm:ss, hh:mm:ss&#039;&#039;&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |HTML-Output&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |embedded as &amp;lt;video&amp;gt; tag&lt;br /&gt;
|embedded through nested &amp;lt;nowiki&amp;gt;&amp;lt;div&amp;gt; tags&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |Adjusts to mobile display&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|no&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; class=&amp;quot;col-blue-light-bg&amp;quot; |Player controls&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |play button&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; | yes&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |progress bar&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |volume adjustment&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |fullscreen mode&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |picture-in-picture&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |download&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |yes&lt;br /&gt;
|no&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:20%;&amp;quot; |speed adjustment&lt;br /&gt;
| style=&amp;quot;width:39%;&amp;quot; |no&lt;br /&gt;
|yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Supported video services==&lt;br /&gt;
The following video services are supported by the extension EmbedVideo. In parentheses, you find the service names that are used with the tags &amp;lt;code&amp;gt;#evt&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;#ev&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
Archive.org Videos (archiveorg), Bambuser (bambuser), Bing (bing), Blip.tv (blip), C3TV (mediaccde), CollegeHumor (collegehumor), Dailymotion (dailymotion), Disclose.tv (disclose), Daum TVPot (tvpot), Div Share (divshare), Facebook (facebook), FunnyOrDie (funnyordie), Gfycat (gfycat), Hitbox (hitbox), JW Player (jwplayer), Kickstarter (kickstarter), Metacafe (metacafe), Microsoft Stream (microsoftstream), Mixer (mixer), Nico Nico Video (nico), RuTube (rutube), SoundCloud (soundcloud), Spotify Album (spotifyalbum), Spotify Artist (spotifyartist), Spotify Song (spotifytrack), TeacherTube (teachertube), TED Talks (ted), Tubi TV (tubitv), Tudou (tudou), Twitch (twitch), Videomaten (videomaten), Vimeo (vimeo), Vine (vine), Yahoo Screen (yahoo), YouTube (youtube), YouTube Playlist (youtubeplaylist), YouTube Video List (youtubevideolist), Youku (youku)&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en&lt;br /&gt;
|Topic1=[https://www.mediawiki.org/wiki/Extension:EmbedVideo Mediawiki help page for the extension EmbedVideo]&lt;br /&gt;
|Topic2=[[Manual:Extension/Showtime|Help page for the extension BlueSpicePlayer - only for video files that have been uploaded to the wiki]]&lt;br /&gt;
|Topic3=[[Template:Embed video|Template to embed video using the Visual Editor toolbar]]}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Category:Editing]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Handbuch:Erweiterung/EmbedVideo]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1470</id>
		<title>Manual:Extension/BlueSpiceConfigManager</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceConfigManager&amp;diff=1470"/>
		<updated>2021-12-20T13:30:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Config manager}}&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
With the Config manager, a wiki user with &#039;&#039;sysop&#039;&#039; rights can manage BlueSpice wiki-wide settings in one place. In the [[BlueSpice Layout|navigation]], it is located under &#039;&#039;Global navigations &amp;gt; Management &amp;gt; Config manager&#039;&#039;.This link loads the page &#039;&#039;Special:ConfigManager.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Layout==&lt;br /&gt;
&lt;br /&gt;
===Filter options===&lt;br /&gt;
All settings can be accessed through the following filter options:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Feature:&#039;&#039;&#039; group by type of functionality the setting belongs to (search, administration...)&lt;br /&gt;
*&#039;&#039;&#039;Extension:&#039;&#039;&#039; group by extension name&lt;br /&gt;
*&#039;&#039;&#039;Package:&#039;&#039;&#039; group by BlueSpice edition and services (BlueSpice free, BlueSpice pro, Matomo)&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:ConfigManager2a.png|center|550x550px|thumb|config manager filter|link=Special:FilePath/ConfigManager2a.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All settings are available in any type of grouping. Changing the grouping type does not add or remove setting options. It just groups them differently. After settings are adjusted, they can be saved by clicking &#039;&#039;Save&#039;&#039;, or cancelled by clicking &#039;&#039;Reset&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{{Box Note|boxtype=note|Note text=If a server administrator has configured a setting to no longer be writable, it will be shown as greyed-out in the config manager. You will have to talk to your server administrator about changing such a setting.}}&lt;br /&gt;
&lt;br /&gt;
===Searching for settings===&lt;br /&gt;
A search bar is located above the list of settings. Type in a keyword such as &amp;quot;logo&amp;quot; to find the corresponding setting. The search returns settings regardless of the currently selected group. {{Box Note|boxtype=note|Note text=The search field has to be empty if you want to see the filter menu instead of the search.}}&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-search.png|alt=Config manager search box|center|thumb|400x400px|Config manager search box]]&lt;br /&gt;
&lt;br /&gt;
==Settings by extension==&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFoundation===&lt;br /&gt;
&lt;br /&gt;
====Updating logo and favicon====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Logo path:&#039;&#039;&#039; The logo image should be stored in the /images folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To upload the logo directly in the wiki:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Upload&#039;&#039;&#039; the logo on the page &#039;&#039;Extended file list&#039;&#039; (&#039;&#039;Special:ExtendedFilelist&#039;&#039;). This is a link under the &#039;&#039;Global actions&#039;&#039; navigation.&lt;br /&gt;
#&#039;&#039;&#039;Search&#039;&#039;&#039; for the logo name in the extended file list.&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; on the thumbnail image of the logo. This opens the logo on a separate page.&amp;lt;br /&amp;gt;[[File:Manual:config-logo1.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo1.png|alt=logo thumbnail image|center|thumb|280x280px|logo thumbnail image]]&lt;br /&gt;
#&#039;&#039;&#039;Copy&#039;&#039;&#039; the relative logo path from the address bar.In a typical Wiki configuration, this path starts with &#039;&#039;/w/....&#039;&#039; .&amp;lt;br /&amp;gt;[[File:Manual:config-logo2.png|alt=relative image path|center|thumb|450x450px|relative image path]]&lt;br /&gt;
#&#039;&#039;&#039;Paste&#039;&#039;&#039; the logo path into the text field for the logo.&amp;lt;br /&amp;gt;[[File:Manual:config-logo3.png|link=https://en.wiki.bluespice.com/wiki/File:Manual:config-logo3.png|alt=logo path|center|thumb|450x450px|logo path]]&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Save&#039;&#039;.&lt;br /&gt;
#&#039;&#039;&#039;Refresh&#039;&#039;&#039; the page (Strg+F5). &amp;lt;br /&amp;gt;If the uploaded logo is too large, you can add the following code snippet to the page &#039;&#039;MediaWiki:Common.css&#039;&#039;. This automatically adjusts the image to the height of the main toolbar:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.bs-logo a {background-size: contain;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Favicon path:&#039;&#039;&#039; The favicon image should be stored in the &#039;&#039;/images&#039;&#039; folder of your installation. If you store it in the /skins folder of your BlueSpice installation, it could be overwritten with an upgrade. [https://de.wikipedia.org/wiki/Favicon Favicon images] have the file extension &#039;&#039;.ico&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====System====&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed file extensions:&#039;&#039;&#039; For security reasons, the types of files that users can upload are restricted. Here, you can allow additional file formats. If a file format is blacklisted in the server configuration, adding this file extension here will not allow this file type to be uploaded. See [https://mediawiki.org/wiki/Manual:Page_title mediawiki.org/wiki/Manual:Page_title] for more info.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Allowed image extensions:&#039;&#039;&#039; The standard web image types are listed here. In general, you want to restrict image uploads to web images. See [https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types] for more on browser-supported image types.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAbout===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show link &amp;quot;About BlueSpice&amp;quot; in the main menu:&#039;&#039;&#039; Shows or hides the link to the page [[Extension/AboutBlueSpice|AboutBlueSpice]] in the main navigation.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:config-aboutbluespice.png|alt=main navigation|center|thumb|215x215px|main navigation]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceArticleInfo===&lt;br /&gt;
&#039;&#039;BlueSpiceArticleInfo&#039;&#039;, together with &#039;&#039;[[Manual:Extension/BlueSpiceAuthors|BlueSpiceAuthors]], [[Manual:Extension/BlueSpiceReaders|BlueSpiceReaders]], and [[Manual:Extension/BlueSpiceExtendedSearch|BlueSpiceExtendedSearch]]&#039;&#039; is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039; Sets the refresh rate for the &amp;quot;Last edit&amp;quot; value. By default, this date is updated every 10 seconds via JavaScript.&lt;br /&gt;
&lt;br /&gt;
[[File:ArticleInfo3.jpg|center|thumb|450x450px|article info|link=Special:FilePath/ArticleInfo3.jpg]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAuthors===&lt;br /&gt;
&#039;&#039;BlueSpiceAuthors,&#039;&#039; together with &#039;&#039;[[Manual:Extension/BlueSpiceArticleInfo|BlueSpiceArticleInfo]]&#039;&#039; and &#039;&#039;BlueSpiceReaders&#039;&#039;, is part of the &#039;&#039;Page information&#039;&#039; in the quality management tools.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Display authors:&#039;&#039;&#039; Show or hide authors on the page information page.&lt;br /&gt;
&lt;br /&gt;
[[File:Authors3.jpg|center|thumb|450x450px|page authors in page information|link=Special:FilePath/Authors3.jpg]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceAvatars===&lt;br /&gt;
[[File:Manual:configmanager-instantavatar.png|thumb|101x101px|InstantAvatar|link=Special:FilePath/Manual:configmanager-instantavatar.png]]&lt;br /&gt;
An avatar image is automatically generated if the user does not upload a profile picture or if the user decides to create an avatar image in the preferences.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Generator&#039;&#039;&#039;&lt;br /&gt;
**&#039;&#039;&#039;InstantAvatar:&#039;&#039;&#039; Generates an avatar image based on using the initials of the Real name or the Username&lt;br /&gt;
**&#039;&#039;&#039;[[wikipedia:Identicon|Identicon:]]&#039;&#039;&#039; Generates an avatar image based on parts of the user&#039;s IP address.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-identicon.png|alt=Identicon|center|thumb|500x500px|Identicon]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceBookshelf===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager after content:&#039;&#039;&#039; Displays previous/next book page navigation at the end of each book page. (1)&lt;br /&gt;
*&#039;&#039;&#039;Show book chapter pager before content:&#039;&#039;&#039;  Displays previous/next book page navigation at the beginning of each book page. (2) &amp;lt;br /&amp;gt;[[File:Manual:book-pagenav.png|alt=Book navigation|center|thumb|450x450px|Book navigation ]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Use the display title from book source on article:&#039;&#039;&#039; Shows the title from the book navigation as page title instead of the page name. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-bookdisplaytitle.png|alt=book display title|center|thumb|450x450px|book display title]]&lt;br /&gt;
{{Box Note|boxtype=note|Note text=If the page additionally contains a &amp;lt;nowiki&amp;gt;{{DISPLAYTITLE}}&amp;lt;/nowiki&amp;gt; tag, the display title of the page is shown instead of the book title.}}&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Prepend article table of contents and headlines with book numberation&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Supress namespace prefix of book articles in output&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceChecklist===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mark checklist changes as minor edit:&#039;&#039;&#039; If this setting is active, changes to a checklist (for example, checking a checkbox) in view mode are logged as minor edits. If this setting is inactive, a change to the checklist is  recorded as a regular version in the page history.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-checklistminoredit.png|alt=minor edit|center|thumb|550x550px|minor edit]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedSearch===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;External file paths&#039;&#039;&#039;: External locations to scan for and index files from. These locations are entered in key/value pairs of Physical path and URL prefix.&lt;br /&gt;
**&#039;&#039;Physical path: S&#039;&#039;torage path. For mounted drives, for example: &#039;&#039;X:\Documents&#039;&#039;&lt;br /&gt;
**&#039;&#039;URL prefix:&#039;&#039; All files indexed from the indexed physical location are prefixed in the search results. It should be used if files are available from a web server. By default, the URL prefix is set to the same value as &#039;&#039;Physical path&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|+Examples for external file paths&lt;br /&gt;
!Example file&lt;br /&gt;
!Phys. Path&lt;br /&gt;
!URL Prefix&lt;br /&gt;
!Link in results list&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\Sales\Info\glossaryy.pdf&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |S:\&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&amp;lt;nowiki&amp;gt;file:///S:/Sales/Info/glossary.pdf&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;8&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;9&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://sharepoint/Sales/&lt;br /&gt;
documents/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;10&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocs&lt;br /&gt;
inline.aspx?path=&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;11&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://intranet/showdocsinline.aspx?&lt;br /&gt;
path=/Sales/Info/glossary.pdf&lt;br /&gt;
|-&lt;br /&gt;
|/var/www/bluespice/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|/var/www/bluespice/w/&lt;br /&gt;
mounted_share/&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;span class=&amp;quot;mw-lingo-term&amp;quot; data-lingo-term-id=&amp;quot;5e056c500a1c4b6a7110b50d807bade5&amp;quot; data-hasqtip=&amp;quot;12&amp;quot;&amp;gt;https&amp;lt;/span&amp;gt;://wiki.company.local/w/mounted_&lt;br /&gt;
share/Sales/Info/glossary.pdf&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use simple autocomplete:&#039;&#039;&#039; forces a more compact autocomplete (1-column Sales thumbnail preview).&amp;lt;br /&amp;gt;[[File:Manual:configuration-autocomplete-simple.1575886540740.png|alt=compact autocomplete|center|thumb|450x450px|compact autocomplete]][[File:Manual:configuration-autocomplete-regular.1575886496796.png|alt=regular autocomplete|center|thumb|450x450px|Salesautocompletey]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Automatically set language filter&#039;&#039;&#039;: This setting applies to multi-languageSalesIt returns seyarch results for a user only in the user&#039;s language. Users can set their language in their [[Manual:Preferences|preferences]].&lt;br /&gt;
*&#039;&#039;&#039;Exclude patterns:&#039;&#039;&#039; Files at external file locations can be exluded from search based on regular expression patterns.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExtendedStatistics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Exclude these users:&#039;&#039;&#039; Some user groups, like WikiSysop can skew the statistics, for example the statistics for search queries or because they complete automated maintenance tasks. These types of user groups can be excluded from the statistical results.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of interval steps:&#039;&#039;&#039; Sets the size of the x-axis for the results. For a few days, select the interval &#039;&#039;Day&#039;&#039; or &#039;&#039;Calendar Week&#039;&#039;, for periods over one year, select &#039;&#039;Year&#039;&#039; or &#039;&#039;Month&#039;&#039;. If you do not get any results for your query, try to adjust the interval accordingly.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceInsertCategory===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Insert category with its parents&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Set page categories as default in upload dialog&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicensertLink===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allow unmapped links&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Allowed locations for external files&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Filesystem prefix&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Web accessible prefix:&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePageTemplates===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Force target namespace:&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide default templates:&#039;&#039;&#039; Hides the default &#039;&#039;Empty page&#039;&#039; template.&lt;br /&gt;
&lt;br /&gt;
===BlueSpicePermissionManager===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Backup limit:&#039;&#039;&#039; Sets the number of backups for the permissions manager. Each time the page &#039;&#039;Special:PermissionManager&#039;&#039; is saved, a backup is created. If the backup limit is set to 5, the last five versions of the permissions configuration are saved as backups.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceRSSFeeder===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;URL whitelist:&#039;&#039;&#039; RSS feeds need to be whitelisted here by an administrator before they can be displayed in a wiki page.&lt;br /&gt;
*&#039;&#039;&#039;Maximum number of allowed redirects:&#039;&#039;&#039; If there are URL redirects for any of the whitelisted URLs, the number of redirects needs to be adjusted (usually to 1 or 2).&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-RSS.png|alt=RSS Feed settings|center|thumb|450x450px|RSS Feed settings]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceReaders===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Number of readers to display:&#039;&#039;&#039; Sets the number of readers that are displayed on the Page information in the Quality management tools. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-readers.png|center|thumb|450x450px|page readers|link=Special:FilePath/Manual:configmanager-readers.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSaferEdit===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Interval for lookup for concurrent editings:&#039;&#039;&#039; Sets the time in seconds for checking if another person is editing the page.&lt;br /&gt;
*&#039;&#039;&#039;Show name of current editor:&#039;&#039;&#039; Shows or hides the name of the user who is currently editing the page.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleBookPDF===&lt;br /&gt;
&lt;br /&gt;
*Table of Contents&lt;br /&gt;
**&#039;&#039;Only article titles (indent by grade):&#039;&#039; Only shows the article titles in the main contents table of the PDF.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-toc-simple.png|alt=PDF table of contents without article TOCs|center|thumb|450x450px|PDF table of contents without article TOCs]]&amp;lt;br /&amp;gt;&lt;br /&gt;
**&#039;&#039;Embed article TOCs (No indent of article titles):&#039;&#039; Shows the table of contents for each article in the main contents table of the PDF.[[File:Manual:configmanager-toc-embed.png|alt=Embed article TOCs|center|thumb|450x450px|Embed article TOCs]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModuleHTML===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the HTML main heading.&lt;br /&gt;
{{Box Note|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceUEModulePDF===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Hide namespace prefix in PDF:&#039;&#039;&#039; If activated, the namespace is shown in the PDF main heading for a page.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-pdfhidenamespace.png|alt=namespace in heading|center|thumb|450x450px|namespace in heading]]&lt;br /&gt;
{{Box Note|boxtype=note|Note text=If the page contains a &amp;quot;displaytitle&amp;quot; tag in the page source, the page display title is shown and this setting has no effect.}}&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;BlueSpiceUniversalExport&amp;lt;/span&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Metadata (standard, JSON):&#039;&#039;&#039;&amp;lt;/span&amp;gt;  Additional data to be passed to the rendering template in JSON format. This data can be used in the export template. The template itself is maintened server-side.&lt;br /&gt;
*&#039;&#039;&#039;Metadata (override, JSON)&#039;&#039;&#039;: Allows overriding standard data sent to the rendering template in JSON format. Values that are set by default can be overriden with this option.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceVisualEditorConnector===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Enable VisualEditor for BlueSpice extensions&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Configuration variable to use a simplified save process&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Upload type&#039;&#039;&#039;&lt;br /&gt;
**Original (Here a confirmation of the rights of use/upload is obtained, file name and namespace of the file can be changed, a category can be assigned and a description of the file MUST be given).&lt;br /&gt;
**Simple (No confirmation of required rights is obtained here, the name and namespace of the file can be changed, a description and a category can be assigned, but does not have to be specified)&lt;br /&gt;
**One click (No confirmation about required rights is obtained here, the image cannot be renamed and no category can be assigned. Only the namespace can, but does not have to be adjusted before uploading)  &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceWhoIsOnline===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Time in seconds until a user is marked as offline:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds if a user logged out and no longer displayed as online. This can  be less frequent than the update inteval for newly logged-in users.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Update interval in seconds:&#039;&#039;&#039;&amp;lt;/span&amp;gt; The system checks every &#039;&#039;x&#039;&#039; seconds for users.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceExpiry===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Show watermark for expired pages in PDF&amp;lt;/span&amp;gt;:&#039;&#039;&#039;  Shows the watermark for expired pages in PDFs.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages in print version:&#039;&#039;&#039; Shows the watermark for expired pages when a page is printed.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show watermark for expired pages&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Shows a watermark on the page itself.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-watermark.png|alt=watermark|center|thumb|250x250px|watermark]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReview===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;col-red&amp;quot;&amp;gt;Only the owner of a review can change it&amp;lt;/span&amp;gt;:&#039;&#039;&#039; If this is unchecked, any user with edit rights can update a workflow.&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceReviewExtended===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Workflow will be added to page history:&#039;&#039;&#039; This enables that workflow votes are listed under the page history with the corresponding version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configuration-addworkflowtohistory.png|alt=workflow log entries in page history|center|thumb|650x650px|workflow log entries in page history]]&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceFlaggedRevsConnector===&lt;br /&gt;
&#039;&#039;&#039;Export&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The export settings affect how the pages of a book are generated in the PDF export.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;Bookshelf: List accepted revisions log&amp;lt;/span&amp;gt;:&#039;&#039;&#039; Shows a log of stable page versions of pages in the PDF and when these pages were put into accepted status. If editors did not provide a comment when accepting the page, the &#039;&#039;Stable comment&#039;&#039; field for a revision is empty. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-revisionslog.png|alt=accepted revisions log|center|thumb|450x450px|accepted revisions log]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without stable revision:&#039;&#039;&#039; Displays a list of PDF pages at the beginning of the PDF that only exist as a first draft and have no released version.[[File:configmanager-book-nichtfreigegebeneseiten-EN.png|center|thumb|300x300px|Pages without acceptance feature|link=Special:FilePath/configmanager-book-nichtfreigegebeneseiten-EN.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;Bookshelf: List pages without FlaggedRevs:&#039;&#039;&#039; Displays a list of PDF pages that do not have a release mechanism at the beginning of the PDF.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:configmanager-book-listnoflaggedrev.png|alt=Pages with no FlaggedRevs feature.|center|thumb|260x260px|Pages with no FlaggedRevs feature.]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;UEModulePDF: Show FlaggedRevs info below main heading&#039;&#039;&#039;&amp;lt;/span&amp;gt;: Prints the latest revision dates (last acceptance and last edit date) below the heading. &amp;lt;br /&amp;gt;[[File:Manual:configmanager-bookshelf-flaggedrevsinfo.png|alt=FlaggedRevs info below heading|center|thumb|350x350px|FlaggedRevs info below heading]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quality assurance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically set the page to stable, when the workflow was finished successfully:&#039;&#039;&#039; The workflow ends with setting the page status to stable. (this setting is available until version 3.1)&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Automatically delete the workflow, when a page was marked as stable:&#039;&#039;&#039; The workflow is deleted.&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Show unstable pages for following groups:&#039;&#039;&#039;&amp;lt;/span&amp;gt; If the group &#039;&#039;user&#039;&#039; is removed from the &#039;&#039;BlueSpiceFlaggedRevs&#039;&#039; configuration, users in this group will not be able to see draft versions when they are added as reviewers in a review process. When the group user is removed, only &#039;&#039;sysop&#039;&#039; and &#039;&#039;reviewer&#039;&#039; users can access drafts. If you want other groups, for example &#039;&#039;editor&#039;&#039;, to see draft versions, you need to add them to the configuration. If no user groups are specified in the configuration field, not even reviewers and sysops users will see a visual status indication of a page. They will have access to drafts through the revision history for the page instead.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Searching and Navigation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-header&amp;quot;&amp;gt;&#039;&#039;&#039;Indexing only stable versions:&#039;&#039;&#039; Draft versions are excluded from the search results. If a page does not have a stable version, it is not shown as a search result.&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-fieldLayout-field&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;bsgFlaggedRevsConnectorUEModulePDFShowFRTag&amp;quot; class=&amp;quot;oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-checkboxInputWidget&amp;quot; aria-disabled=&amp;quot;false&amp;quot; data-ooui&amp;gt;&amp;lt;span class=&amp;quot;oo-ui-checkboxInputWidget-checkIcon oo-ui-widget oo-ui-widget-enabled oo-ui-iconElement oo-ui-iconElement-icon oo-ui-icon-check oo-ui-iconWidget oo-ui-image-invert&amp;quot; aria-disabled=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialBlog===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Use teaser text for blog entries in the timeline:&#039;&#039;&#039; When you create a blog entry, you can create a teaser text for it by clicking the cogwheel symbol in the blog entry form. If this setting is active, the teaser text will be shown on the page &#039;&#039;Special:Timeline&#039;&#039; instead of the first part of the content.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;[[File:Manual:configmanager-blogteaser.png|center|thumb|380x380px|blog teaser text|link=Special:FilePath/Manual:configmanager-blogteaser.png]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===BlueSpiceSocialTopics===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Automatically create all discussion pages.&#039;&#039;&#039; If a user creates the first discussion topic for a page using the link in the page footer of a wiki page, the needed discussion page is automatically created first.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics-create.png|alt=create discussion topic|center|thumb|350x350px|create discussion topic]]&amp;lt;br /&amp;gt;A message &amp;quot;This discussion page was created automatically&amp;quot; is inserted on the discussion page.  &amp;lt;br /&amp;gt;[[File:Manual:configmanager-socialtopics.png|alt=automatically created discussion page|center|thumb|350x350px|automatically created discussion page]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If this setting is deactivated, the user is directed to the &amp;quot;Create page&amp;quot; default page first&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===BlueSpiceMatomoConnector===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Site ID:&#039;&#039;&#039;  Matomo ID of the wiki. You can find the site ID as a url parameter in the browser address bar when you are logged into Matomo.&lt;br /&gt;
&lt;br /&gt;
[[File:Manual:configmanager-matomo-idSite.png|alt=matomo site ID|center|thumb|250x250px|matomo site ID]]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Base url:&#039;&#039;&#039; The url to your Matomo installation.&lt;br /&gt;
*&#039;&#039;&#039;Show opt-out link in footer:&#039;&#039;&#039; Displays a link in your wiki footer, usually named &#039;&#039;Analysis service&#039;&#039;.&amp;lt;br /&amp;gt;[[File:Manual:configmanager-matomo-optout-footer.png|alt=footer links|center|thumb|450x450px|footer links]]&amp;lt;br /&amp;gt;On the Analysis service page, there is a checkbox that allows a user to opt-out from being tracked for analysis purposes.[[File:Manual:configmanager-matomo-optout-checkbox.png|alt=Matomo opt-out checkbox|center|thumb|500x500px|Matomo opt-out checkbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en|Topic1=[[Reference:ConfigManager]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Handbuch:Erweiterung/{{SUBPAGENAME}}]]&lt;br /&gt;
[[en:Manual:Extension/{{SUBPAGENAME}}]]&lt;br /&gt;
[[Category:Administration]]&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1465</id>
		<title>File:Manual:Semantic MediaWiki-Nomenklatur-86700495.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1465"/>
		<updated>2021-12-20T13:23:25Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-autocomplete-simple.1575886540740.png&amp;diff=1464</id>
		<title>File:Manual:configuration-autocomplete-simple.1575886540740.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-autocomplete-simple.1575886540740.png&amp;diff=1464"/>
		<updated>2021-12-20T13:23:25Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-autocomplete-regular.1575886496796.png&amp;diff=1463</id>
		<title>File:Manual:configuration-autocomplete-regular.1575886496796.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-autocomplete-regular.1575886496796.png&amp;diff=1463"/>
		<updated>2021-12-20T13:23:24Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-addworkflowtohistory.png&amp;diff=1462</id>
		<title>File:Manual:configuration-addworkflowtohistory.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configuration-addworkflowtohistory.png&amp;diff=1462"/>
		<updated>2021-12-20T13:23:24Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-watermark.png&amp;diff=1461</id>
		<title>File:Manual:configmanager-watermark.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-watermark.png&amp;diff=1461"/>
		<updated>2021-12-20T13:23:24Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-toc-simple.png&amp;diff=1460</id>
		<title>File:Manual:configmanager-toc-simple.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-toc-simple.png&amp;diff=1460"/>
		<updated>2021-12-20T13:23:24Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-toc-embed.png&amp;diff=1459</id>
		<title>File:Manual:configmanager-toc-embed.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-toc-embed.png&amp;diff=1459"/>
		<updated>2021-12-20T13:23:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-socialtopics-create.png&amp;diff=1458</id>
		<title>File:Manual:configmanager-socialtopics-create.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-socialtopics-create.png&amp;diff=1458"/>
		<updated>2021-12-20T13:23:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-socialtopics.png&amp;diff=1457</id>
		<title>File:Manual:configmanager-socialtopics.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-socialtopics.png&amp;diff=1457"/>
		<updated>2021-12-20T13:23:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-RSS.png&amp;diff=1456</id>
		<title>File:Manual:configmanager-RSS.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-RSS.png&amp;diff=1456"/>
		<updated>2021-12-20T13:23:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-pdfhidenamespace.png&amp;diff=1455</id>
		<title>File:Manual:configmanager-pdfhidenamespace.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-pdfhidenamespace.png&amp;diff=1455"/>
		<updated>2021-12-20T13:23:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-optout-footer.png&amp;diff=1454</id>
		<title>File:Manual:configmanager-matomo-optout-footer.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-optout-footer.png&amp;diff=1454"/>
		<updated>2021-12-20T13:23:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-optout-checkbox.png&amp;diff=1453</id>
		<title>File:Manual:configmanager-matomo-optout-checkbox.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-optout-checkbox.png&amp;diff=1453"/>
		<updated>2021-12-20T13:23:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-idSite.png&amp;diff=1452</id>
		<title>File:Manual:configmanager-matomo-idSite.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-matomo-idSite.png&amp;diff=1452"/>
		<updated>2021-12-20T13:23:21Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookshelf-revisionslog.png&amp;diff=1451</id>
		<title>File:Manual:configmanager-bookshelf-revisionslog.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookshelf-revisionslog.png&amp;diff=1451"/>
		<updated>2021-12-20T13:23:21Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookshelf-flaggedrevsinfo.png&amp;diff=1450</id>
		<title>File:Manual:configmanager-bookshelf-flaggedrevsinfo.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookshelf-flaggedrevsinfo.png&amp;diff=1450"/>
		<updated>2021-12-20T13:23:21Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-book-nichtfreigegebeneseiten-EN.png&amp;diff=1449</id>
		<title>File:Manual:configmanager-book-nichtfreigegebeneseiten-EN.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-book-nichtfreigegebeneseiten-EN.png&amp;diff=1449"/>
		<updated>2021-12-20T13:23:21Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-book-listnoflaggedrev.png&amp;diff=1448</id>
		<title>File:Manual:configmanager-book-listnoflaggedrev.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-book-listnoflaggedrev.png&amp;diff=1448"/>
		<updated>2021-12-20T13:23:20Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:800px-configmanager-readers.png&amp;diff=1447</id>
		<title>File:Manual:800px-configmanager-readers.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:800px-configmanager-readers.png&amp;diff=1447"/>
		<updated>2021-12-20T13:23:20Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:758px-configmanager-blogteaser.png&amp;diff=1446</id>
		<title>File:Manual:758px-configmanager-blogteaser.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:758px-configmanager-blogteaser.png&amp;diff=1446"/>
		<updated>2021-12-20T13:23:19Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1438</id>
		<title>File:Semantic MediaWiki-Nomenklatur-86700495.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1438"/>
		<updated>2021-12-20T12:26:25Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: (username removed) (log details removed)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1437</id>
		<title>File:Semantic MediaWiki-Nomenklatur-86700495.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1437"/>
		<updated>2021-12-20T12:25:39Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: (username removed) (log details removed)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1436</id>
		<title>File:Semantic MediaWiki-Nomenklatur-86700495.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Semantic_MediaWiki-Nomenklatur-86700495.drawio.png&amp;diff=1436"/>
		<updated>2021-12-20T12:25:35Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1365</id>
		<title>Video-Tutorials</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1365"/>
		<updated>2021-12-20T11:07:03Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1361</id>
		<title>Video-Tutorials</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1361"/>
		<updated>2021-12-20T11:05:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: /* Basics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
=Tutorials=&lt;br /&gt;
{{Box Note|boxtype=note|Note text=All videos open directly in &amp;lt;span class=&amp;quot;youtube&amp;quot;&amp;gt;[https://www.youtube.com/user/BlueSpiceVideo YouTube]&amp;lt;/span&amp;gt;.}}&lt;br /&gt;
==Quality Management==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Page_assignments-thumb.png|alt=Page assignments|border|center|300x300px|Page assignments|link=https://youtu.be/Xp16ooC8nJc]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;4:05&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Reminders-thumb.png|alt=Reminders|border|center|300x300px|Reminders|link=https://youtu.be/AY73tL-JH-E]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:03&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Expiry-thumb.png|alt=Expiry|border|center|300x300px|Expiry|link=https://youtu.be/xVmTvME3ldk]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:57&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Administration==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Rights management-thumb.png|alt=Rights management|border|center|300x300px|Rights management|link=https://youtu.be/IjSx13hmfXk|]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;10:13&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Semantic MediaWiki==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:SMW_Tutorials-thumb.png|alt=Semantic MediaWiki Tutorials|border|center|300x300px|Semantic MediaWiki Tutorials|link=https://www.youtube.com/playlist?list=PLw2YgbWET_ph1IGqIyiZD8w9FIHlYASui]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;Tutorial series for SMW&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[en:{{PAGENAME}}]]&lt;br /&gt;
[[de:Tutorials]]&lt;br /&gt;
__HIDETITLE__&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:65&amp;diff=1360</id>
		<title>SocialEntity:65</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:65&amp;diff=1360"/>
		<updated>2021-12-20T11:04:42Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 779,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;Tutorials&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 65,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;Tutorials&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1359</id>
		<title>Video-Tutorials</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1359"/>
		<updated>2021-12-20T11:04:42Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
=Tutorials=&lt;br /&gt;
{{Box Note|boxtype=note|Note text=All videos open directly in &amp;lt;span class=&amp;quot;youtube&amp;quot;&amp;gt;[https://www.youtube.com/user/BlueSpiceVideo YouTube]&amp;lt;/span&amp;gt;.}}&lt;br /&gt;
==Basics==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Menus and navigation-thumb.png|alt=Menus and navigation|border|center|300x300px|Menus and navigation|link=https://youtu.be/WyGqu6HOlrk]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:04&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Personalization-EN-thumb.png|alt=Personalization|border|center|300x300px|Personalization|link=https://youtu.be/7Gl7gBJ0w0Y]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;6:54&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Search-EN-thumb.png|alt=Using the search|border|center|300x300px|Using the search|link=https://youtu.be/bLRae7-8keM]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;8:15&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:thumb-3.1-creating a page.png|alt=Creating a page|border|center|300x300px|Creating a page|link=https://youtu.be/n1dR_fH0WGw]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:49&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Elements of a wiki page - thumb.png|alt=A wiki page: Its elements and tools|border|center|300x300px|A wiki page: Its elements and tools|link=https://youtu.be/y_a28oamSiI|]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:50&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Adding images and PDFs-EN-thumb.png|alt=Adding images and PDFs|border|center|300x300px|Adding images and PDFs|link=https://youtu.be/CSgv8us_DQg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:07&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Formatting text.png|alt=Formatting text|border|center|300x300px|Formatting text|link=https://youtu.be/wsb7gvK6OMw]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;7:25&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;[[File:3_1-Working with tables-thumb.png|alt=Working with tables|border|center|300x300px|Formatting text|link=https://youtu.be/DSpGUzwq0b0]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;8:00&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:Namespace-thumb.png|alt=Formatting text|border|center|300x300px|Namespaces|link=https://youtu.be/CITmttQcsjg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;4:33&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Renaming and moving a page.png|alt=Renaming and moving a page|border|center|300x300px|Renaming and moving a page|link=https://youtu.be/Ccjun2UdGhc]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:06&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Deleting a page.png|alt=Deleting a page|border|center|300x300px|Deleting a page|link=https://youtu.be/NHBpsi5LIPg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:51&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;[[File:thumb-plain.png|300x300px]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Quality Management==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Page_assignments-thumb.png|alt=Page assignments|border|center|300x300px|Page assignments|link=https://youtu.be/Xp16ooC8nJc]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;4:05&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Reminders-thumb.png|alt=Reminders|border|center|300x300px|Reminders|link=https://youtu.be/AY73tL-JH-E]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:03&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Expiry-thumb.png|alt=Expiry|border|center|300x300px|Expiry|link=https://youtu.be/xVmTvME3ldk]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:57&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Administration==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Rights management-thumb.png|alt=Rights management|border|center|300x300px|Rights management|link=https://youtu.be/IjSx13hmfXk|]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;10:13&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Semantic MediaWiki==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:SMW_Tutorials-thumb.png|alt=Semantic MediaWiki Tutorials|border|center|300x300px|Semantic MediaWiki Tutorials|link=https://www.youtube.com/playlist?list=PLw2YgbWET_ph1IGqIyiZD8w9FIHlYASui]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;Tutorial series for SMW&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[en:{{PAGENAME}}]]&lt;br /&gt;
[[de:Tutorials]]&lt;br /&gt;
__HIDETITLE__&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1356</id>
		<title>Video-Tutorials</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Video-Tutorials&amp;diff=1356"/>
		<updated>2021-12-20T11:03:39Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=Tutorials=&lt;br /&gt;
{{Box Note|boxtype=note|Note text=All videos open directly in &amp;lt;span class=&amp;quot;youtube&amp;quot;&amp;gt;[https://www.youtube.com/user/BlueSpiceVideo YouTube]&amp;lt;/span&amp;gt;.}}&lt;br /&gt;
==Basics==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Menus and navigation-thumb.png|alt=Menus and navigation|border|center|300x300px|Menus and navigation|link=https://youtu.be/WyGqu6HOlrk]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:04&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Personalization-EN-thumb.png|alt=Personalization|border|center|300x300px|Personalization|link=https://youtu.be/7Gl7gBJ0w0Y]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;6:54&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Search-EN-thumb.png|alt=Using the search|border|center|300x300px|Using the search|link=https://youtu.be/bLRae7-8keM]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;8:15&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:thumb-3.1-creating a page.png|alt=Creating a page|border|center|300x300px|Creating a page|link=https://youtu.be/n1dR_fH0WGw]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:49&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Elements of a wiki page - thumb.png|alt=A wiki page: Its elements and tools|border|center|300x300px|A wiki page: Its elements and tools|link=https://youtu.be/y_a28oamSiI|]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:50&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Adding images and PDFs-EN-thumb.png|alt=Adding images and PDFs|border|center|300x300px|Adding images and PDFs|link=https://youtu.be/CSgv8us_DQg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;5:07&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Formatting text.png|alt=Formatting text|border|center|300x300px|Formatting text|link=https://youtu.be/wsb7gvK6OMw]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;7:25&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;[[File:3_1-Working with tables-thumb.png|alt=Working with tables|border|center|300x300px|Formatting text|link=https://youtu.be/DSpGUzwq0b0]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;8:00&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:Namespace-thumb.png|alt=Formatting text|border|center|300x300px|Namespaces|link=https://youtu.be/CITmttQcsjg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;4:33&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Renaming and moving a page.png|alt=Renaming and moving a page|border|center|300x300px|Renaming and moving a page|link=https://youtu.be/Ccjun2UdGhc]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:06&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Deleting a page.png|alt=Deleting a page|border|center|300x300px|Deleting a page|link=https://youtu.be/NHBpsi5LIPg]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:51&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;[[File:thumb-plain.png|300x300px]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Quality Management==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Page_assignments-thumb.png|alt=Page assignments|border|center|300x300px|Page assignments|link=https://youtu.be/Xp16ooC8nJc]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;4:05&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Reminders-thumb.png|alt=Reminders|border|center|300x300px|Reminders|link=https://youtu.be/AY73tL-JH-E]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:03&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3_1-Expiry-thumb.png|alt=Expiry|border|center|300x300px|Expiry|link=https://youtu.be/xVmTvME3ldk]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;3:57&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Administration==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:3 1-Rights management-thumb.png|alt=Rights management|border|center|300x300px|Rights management|link=https://youtu.be/IjSx13hmfXk|]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;10:13&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Semantic MediaWiki==&lt;br /&gt;
&amp;lt;div class=&amp;quot;flexwrapper&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;shadow&amp;quot;&amp;gt;[[File:SMW_Tutorials-thumb.png|alt=Semantic MediaWiki Tutorials|border|center|300x300px|Semantic MediaWiki Tutorials|link=https://www.youtube.com/playlist?list=PLw2YgbWET_ph1IGqIyiZD8w9FIHlYASui]]&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;Tutorial series for SMW&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[en:{{PAGENAME}}]]&lt;br /&gt;
[[de:Tutorials]]&lt;br /&gt;
__HIDETITLE__&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Attribute-EN.png&amp;diff=1354</id>
		<title>File:Manual:SMW-Attribute-EN.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Attribute-EN.png&amp;diff=1354"/>
		<updated>2021-12-20T11:01:35Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Vorlage-EN.png&amp;diff=1353</id>
		<title>File:Manual:SMW-Vorlage-EN.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Vorlage-EN.png&amp;diff=1353"/>
		<updated>2021-12-20T11:01:34Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Formular-EN.png&amp;diff=1352</id>
		<title>File:Manual:SMW-Formular-EN.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Formular-EN.png&amp;diff=1352"/>
		<updated>2021-12-20T11:01:34Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Kategorie-EN.png&amp;diff=1351</id>
		<title>File:Manual:SMW-Kategorie-EN.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:SMW-Kategorie-EN.png&amp;diff=1351"/>
		<updated>2021-12-20T11:01:34Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:63&amp;diff=1350</id>
		<title>SocialEntity:63</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:63&amp;diff=1350"/>
		<updated>2021-12-20T11:00:06Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 773,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;Template:Embed video&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 63,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;Template:Embed video&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Template:Embed_video&amp;diff=1349</id>
		<title>Template:Embed video</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Template:Embed_video&amp;diff=1349"/>
		<updated>2021-12-20T11:00:06Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: Created page with &amp;quot;&amp;lt;includeonly&amp;gt;{{#ifeq: {{{hostingtype|}}}|external|{{#evt:service={{{service}}}  |id={{{videopath}}}  |dimensions={{{dimensions}}}  |{{#if: {{{description|}}}|description={{{de...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#ifeq: {{{hostingtype|}}}|external|{{#evt:service={{{service}}}&lt;br /&gt;
 |id={{{videopath}}}&lt;br /&gt;
 |dimensions={{{dimensions}}}&lt;br /&gt;
 |{{#if: {{{description|}}}|description={{{description}}}|}}&lt;br /&gt;
 |{{#if: {{{alignment|}}}|alignment={{{alignment}}}|}}&lt;br /&gt;
 |{{#if: {{{container|}}}|container={{{container}}}|}}&lt;br /&gt;
 |{{#if: {{{autoresize|}}}|autoresize={{{autoresize}}}|}}&lt;br /&gt;
 |{{#if: {{{valignment|}}}|valignment={{{valignment}}}|}}}}|{{#ifeq: {{{hostingtype|}}}|wiki|[[File:{{{videopath}}}|{{#ifeq: {{{dimensions|}}}|{{{dimensions}}}x{{{dimensions}}}px|}}|{{#if: {{{alignment|}}}|{{{alignment|}}}|}}|{{#if: {{{container|}}}|thumb|}}|{{#if: {{{description|}}}|{{{description}}}|}}]]|error}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;params&amp;quot;: {&lt;br /&gt;
		&amp;quot;hostingtype&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Hosting type&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Indicates if the video is stored on the wiki or on a video streaming service.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;external, wiki&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: &amp;quot;external&amp;quot;,&lt;br /&gt;
			&amp;quot;autovalue&amp;quot;: &amp;quot;external&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;service&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Service&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Name of the video service (supported services only). For local videos use wiki &amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;youtube, wiki, vimeo, ted, facebook&amp;quot;,&lt;br /&gt;
			&amp;quot;autovalue&amp;quot;: &amp;quot;youtube&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;videopath&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;URL of the external video or file name of the internal video&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Path to the video&amp;quot;,&lt;br /&gt;
			&amp;quot;autovalue&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;dimensions&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Dimensions&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Dimensions in pixelsto size the container for the player.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;480, 480x320&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: &amp;quot;640&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;alignment&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Alignment&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;The video can be placed left, center, right, or inline. Inline allows to add multiple videos in one row. In mobile view, the videos are automatically aligned vertically.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;left, center, right, or inline&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;description&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Description&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Shows a description below the player container.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;Departure to Mars&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;container&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Container&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Determines the container type for the player. The value frame places the video player in a Mediawiki preview box.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;frame&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;autoresize&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Autoresize&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Automatically adjusts the video size if the video would extend beyond the size of the container.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;true, false&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: &amp;quot;true&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;valignment&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Vertical alignment&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Aligns the vertical placement of the video either to the top, middle, bottom, or baseline of the parent element. Using this parameter forces the alignment parameter to be inline.&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;top, middle, bottom, baseline&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
},&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;Embeds a single external video on the page.&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:62&amp;diff=1348</id>
		<title>SocialEntity:62</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=SocialEntity:62&amp;diff=1348"/>
		<updated>2021-12-20T10:58:36Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
    &amp;quot;wikipageid&amp;quot;: 771,&lt;br /&gt;
    &amp;quot;namespace&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;titletext&amp;quot;: &amp;quot;Reference:EmbedVideo&amp;quot;,&lt;br /&gt;
    &amp;quot;description&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
    &amp;quot;parentid&amp;quot;: 0,&lt;br /&gt;
    &amp;quot;id&amp;quot;: 62,&lt;br /&gt;
    &amp;quot;ownerid&amp;quot;: 10,&lt;br /&gt;
    &amp;quot;type&amp;quot;: &amp;quot;wikipage&amp;quot;,&lt;br /&gt;
    &amp;quot;archived&amp;quot;: false,&lt;br /&gt;
    &amp;quot;tags&amp;quot;: [&lt;br /&gt;
        &amp;quot;Reference:EmbedVideo&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;resolved&amp;quot;: false&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Reference:EmbedVideo&amp;diff=1347</id>
		<title>Reference:EmbedVideo</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Reference:EmbedVideo&amp;diff=1347"/>
		<updated>2021-12-20T10:58:36Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: Created page with &amp;quot;{{BSExtensionInfobox |desc=Adds a parser function called #ev for embedding video clips from popular video sharing services. |status=stable |developer=Alexia E. Smith, Andrew W...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BSExtensionInfobox&lt;br /&gt;
|desc=Adds a parser function called #ev for embedding video clips from popular video sharing services.&lt;br /&gt;
|status=stable&lt;br /&gt;
|developer=Alexia E. Smith, Andrew Whitworth, Jim R. Wilson, Mohammad Derakhshani&lt;br /&gt;
|type=MediaWiki&lt;br /&gt;
|edition=BlueSpice free, BlueSpice pro, BlueSpice Farm, BlueSpice Cloud&lt;br /&gt;
|active=Yes&lt;br /&gt;
|compatible=MediaWiki&lt;br /&gt;
|category=Rich Articles&lt;br /&gt;
|license=MIT&lt;br /&gt;
|docu=https://www.mediawiki.org/wiki/Extension:EmbedVideo&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;EmbedVideo&#039;&#039;&#039; extension adds a parser function called &amp;lt;code&amp;gt;#ev&amp;lt;/code&amp;gt; for embedding video clips from over 24 popular video sharing services in multiple languages and countries. It also adds video and audio media handlers to support transforming standard &amp;lt;nowiki&amp;gt;[[File:Example.mp4]]&amp;lt;/nowiki&amp;gt; file links into embedded HTML5 &amp;lt;nowiki&amp;gt;&amp;lt;video&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;audio&amp;gt;&amp;lt;/nowiki&amp;gt; tags.&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-search.png&amp;diff=1346</id>
		<title>File:Manual:configmanager-search.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-search.png&amp;diff=1346"/>
		<updated>2021-12-20T10:57:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-identicon.png&amp;diff=1345</id>
		<title>File:Manual:configmanager-identicon.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-identicon.png&amp;diff=1345"/>
		<updated>2021-12-20T10:57:23Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-checklistminoredit.png&amp;diff=1344</id>
		<title>File:Manual:configmanager-checklistminoredit.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-checklistminoredit.png&amp;diff=1344"/>
		<updated>2021-12-20T10:57:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookdisplaytitle.png&amp;diff=1343</id>
		<title>File:Manual:configmanager-bookdisplaytitle.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Manual:configmanager-bookdisplaytitle.png&amp;diff=1343"/>
		<updated>2021-12-20T10:57:22Z</updated>

		<summary type="html">&lt;p&gt;PraktiED: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>PraktiED</name></author>
	</entry>
</feed>