<?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=Hslater</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=Hslater"/>
	<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/wiki/Special:Contributions/Hslater"/>
	<updated>2026-04-04T09:41:42Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8638</id>
		<title>How to debug</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=How_to_debug&amp;diff=8638"/>
		<updated>2024-04-26T10:40:50Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Remove obsolete debugging settings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Help others to help you==&lt;br /&gt;
Sometimes things go wrong. In many cases the user is then confronted with cryptic or no error messages at all. This page provides help about getting more information about what exactly went wrong, so it can be fixed quickly. This is especially important when asking for help on locations like [https://community.bluespice.com community.bluespice.com].&lt;br /&gt;
&lt;br /&gt;
Additional information can also be found at [[mediawikiwiki:Manual:How_to_debug|&amp;quot;Manual:How to debug&amp;quot; on MediaWiki.org]].&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=warning|header=Check for sensitive information|text=Most of the techniques described here will output very detailed information about the error, but also about the system and the context. The output may contain sensitive information like usernames, passwords, pathes, access-keys and many more. Before posting any information retrieved by this kind of debugging on a public location (like [https://community.bluespice.com community.bluespice.com]), make sure to redact all potential sensitive information!|icon=yes}}&lt;br /&gt;
&lt;br /&gt;
== Generic information ==&lt;br /&gt;
In general it is a good idea to provide additional context information about the error. Usually this information is easily to access/gather by the one who reports an error and very valueable to anyone trying to help.&lt;br /&gt;
&lt;br /&gt;
Such information can be&lt;br /&gt;
* Browser used (Firefox, Chrome, Edge, ...), ideally with the version&lt;br /&gt;
* URLs (which page the error occurs on, additional parameters that may play into the error)&lt;br /&gt;
* User permission level or role (admin, reader, editor, reviewer, ...)&lt;br /&gt;
&lt;br /&gt;
Again: Be careful if the shared information contains sensible data and redact it if required.&lt;br /&gt;
&lt;br /&gt;
== Server side debugging ==&lt;br /&gt;
There are various ways to get more information about errors by changing some configuration on the server side.&lt;br /&gt;
&lt;br /&gt;
=== Wiki application ===&lt;br /&gt;
&lt;br /&gt;
==== Enable detailed error reporting ====&lt;br /&gt;
Within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file, please add the following lines:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgDebugDumpSql&#039;]  = true;&lt;br /&gt;
$GLOBALS[&#039;wgShowExceptionDetails&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This will turn error messages like &amp;lt;code&amp;gt;internal_api_error_DBQueryError&amp;lt;/code&amp;gt; into a more detailed stack of program calls, including database queries and responses.&lt;br /&gt;
&lt;br /&gt;
==== General debug log ====&lt;br /&gt;
Sometimes it can be useful to see all debugging information the application produces. To enable this general debug log please add the following lines within you &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt; file:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
if ( isset( $_GET[&#039;dodebuglog&#039;] ) ) {&lt;br /&gt;
    $GLOBALS[&#039;wgDebugLogFile&#039;] = &amp;quot;$IP/cache/debug.log&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Be aware that this configuration is set conditionally. It will only be used if the URL accessed in the browser contains some query string like  &amp;lt;code&amp;gt;dodebuglog=1&amp;lt;/code&amp;gt;. This is to allow a more isolated debug log file. Otherwise other requests (like calls to the &amp;lt;code&amp;gt;load.php&amp;lt;/code&amp;gt; entrypoint for CSS and JS content) may also add into this file, which makes analysis more difficult.&lt;br /&gt;
&lt;br /&gt;
===== Important log channels =====&lt;br /&gt;
{{Textbox|boxtype=important|header=Channel names must be &#039;&#039;exactly&#039;&#039; like listed here! Watch out for casing and spaces!|text=|icon=yes}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Source (Extension)&lt;br /&gt;
!Channel name(s)&lt;br /&gt;
!Use case&lt;br /&gt;
|-&lt;br /&gt;
|MW CORE&lt;br /&gt;
|&amp;lt;code&amp;gt;http&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;HttpError&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;JobExecutor&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;LocalFile&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;exception&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;DeferredUpdates&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Parsoid&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;resourceloader&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;runJobs&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;session&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;login&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|MWSTAKE COMPONENTS&lt;br /&gt;
|&amp;lt;code&amp;gt;ContentProvisioner&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;runjobs-trigger-runner&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Math&lt;br /&gt;
|&amp;lt;code&amp;gt;Math&amp;lt;/code&amp;gt;&lt;br /&gt;
|Math&lt;br /&gt;
|-&lt;br /&gt;
|PluggableAuth&lt;br /&gt;
|&amp;lt;code&amp;gt;PluggableAuth&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP, SAML, OpenIDConnect&lt;br /&gt;
|-&lt;br /&gt;
|LDAPProvider&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAP&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;MediaWiki\\Extension\\LDAPProvider\\Client&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|LDAPAuthentication2&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAPAuthentication2&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|LDAPGroups&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAPGroups&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|LDAPUserInfo&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAPUserInfo&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|LDAPSyncAll&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAPSyncAll&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|LDAPAuthorization&lt;br /&gt;
|&amp;lt;code&amp;gt;LDAPAuthorization&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP&lt;br /&gt;
|-&lt;br /&gt;
|Auth_remoteuser&lt;br /&gt;
|&amp;lt;code&amp;gt;session&amp;lt;/code&amp;gt;&lt;br /&gt;
|LDAP (SSO/Kerberos)&lt;br /&gt;
|-&lt;br /&gt;
|SimpleSAMLphp&lt;br /&gt;
|&amp;lt;code&amp;gt;SimpleSAMLphp&amp;lt;/code&amp;gt;&lt;br /&gt;
|SAML&lt;br /&gt;
|-&lt;br /&gt;
|OpenIDConnect&lt;br /&gt;
|&amp;lt;code&amp;gt;OpenID Connect&amp;lt;/code&amp;gt;&lt;br /&gt;
|OpenIDConnect&lt;br /&gt;
|-&lt;br /&gt;
|ImportOfficeFiles&lt;br /&gt;
|&amp;lt;code&amp;gt;ImportOfficeFiles&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;ImportOfficeFiles_RemoveOrphanedDirectories&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ImportOfficeFiles_UI&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Workflows&lt;br /&gt;
|&amp;lt;code&amp;gt;workflows&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|BlueSpiceArticlePreviewCapture&lt;br /&gt;
|&amp;lt;code&amp;gt;ArticlePreviewCapture&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|OAuth&lt;br /&gt;
|&amp;lt;code&amp;gt;OAuth&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|BlueSpiceUEModulePDF, BlueSpiceUEModuleBookPDF&lt;br /&gt;
|&amp;lt;code&amp;gt;BS::UEModulePDF&amp;lt;/code&amp;gt;&lt;br /&gt;
|PDF&lt;br /&gt;
|-&lt;br /&gt;
|BlueSpiceExtendedSearch&lt;br /&gt;
|&amp;lt;code&amp;gt;BSExtendedSearch&amp;lt;/code&amp;gt;&lt;br /&gt;
|Search&lt;br /&gt;
|-&lt;br /&gt;
|BlueSpiceWikiFarm&lt;br /&gt;
|&amp;lt;code&amp;gt;SimpleFarmerAPI&amp;lt;/code&amp;gt;&lt;br /&gt;
|Farm operations &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Clientside output of serverside logs ===&lt;br /&gt;
Can be enabled using [[mediawikiwiki:Manual:$wgDebugToolbar|$wgDebugToolbar]]&lt;br /&gt;
&lt;br /&gt;
Example:&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS[&#039;wgDebugToolbar&#039;] = isset( $_GET[&#039;dodebuglog&#039;] )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Client side debugging ==&lt;br /&gt;
Many errors occur only on the client and server side debugging will not help. In such cases the webbrowser can be used to retrieve more information.&lt;br /&gt;
&lt;br /&gt;
=== Browser development tools ===&lt;br /&gt;
Most modern browsers have sophisticated development tools. Usually they can be accessed by pressing the &amp;lt;code&amp;gt;F12&amp;lt;/code&amp;gt; key on the keyboard. &lt;br /&gt;
&lt;br /&gt;
==== JavaScript console ====&lt;br /&gt;
When some interface element (button, dialog, ...) does not behave like it should, it is usually worth checking the browsers JavaScript console.&lt;br /&gt;
&lt;br /&gt;
{{Textbox|boxtype=tip|header=Nothing listed?|text=Sometimes it may be required to re-do the action that lead to the error with &#039;&#039;open console&#039;&#039; rather than opening it later.}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_01.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
One can click the link on the right side of the line to see the location of where the error has emerged from.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_JS_console_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
====Network panel====&lt;br /&gt;
Sometimes network communication in the background of the application fails. In such cases, the &amp;quot;Network&amp;quot; panel of the browsers developer tools may reveal more information.&lt;br /&gt;
&lt;br /&gt;
The error is also shown in the &amp;quot;Console&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_01.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
When in the &amp;quot;Network&amp;quot; panel, one can select the faulty request from the list to get more information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_02.png|center|frame]]&lt;br /&gt;
&lt;br /&gt;
The various tabs &amp;quot;Header&amp;quot;, &amp;quot;Payload&amp;quot;, &amp;quot;Response&amp;quot;, etc. can provide useful information.  When reporting such an issue, you can just &amp;quot;copy&amp;quot; the information using the context menu.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:How_to_debug_Network_panel_03.png|center|frame]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7973</id>
		<title>Reference:BlueSpicePlayer</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7973"/>
		<updated>2023-12-11T06:39:51Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Add ogg format&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BSExtensionInfo&lt;br /&gt;
|status=stable&lt;br /&gt;
|developer=HalloWelt&lt;br /&gt;
|type=BlueSpice&lt;br /&gt;
|edition=BlueSpice pro, BlueSpice Farm, BlueSpice Cloud&lt;br /&gt;
|compatible=BlueSpice&lt;br /&gt;
|category=Rich Articles&lt;br /&gt;
|license=GPL v2+&lt;br /&gt;
|features=BlueSpice &#039;&#039;&#039;Player&#039;&#039;&#039; is a video player that enables you to play all the usual HTML5 video formats in your wiki.&lt;br /&gt;
&lt;br /&gt;
*Activated with the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;showtime&amp;gt;Video.mp4&amp;lt;/showtime&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag&lt;br /&gt;
*Settings:&lt;br /&gt;
**change the size&lt;br /&gt;
**start the video immediately (autoplay)&lt;br /&gt;
**play the video in a loop&lt;br /&gt;
*Supported formats: mp4, ogv, ogg, flv and webm&lt;br /&gt;
*It is possible to include multiple videos on one page&lt;br /&gt;
*In IE and flv, the HTML5 player falls back to a Flash version (default in VideoJS)&lt;br /&gt;
*For compatibility reasons, &#039;&#039;bs: jwplayer&#039;&#039; is also supported as a tag&lt;br /&gt;
&lt;br /&gt;
In the user settings (&amp;lt;code&amp;gt;Special:Preferences&amp;lt;/code&amp;gt;) under &#039;&#039;Appearance,&#039;&#039; users can set  if the videos should start automatically.&lt;br /&gt;
|desc=Integrates an HTML video player for uploaded videos&lt;br /&gt;
}}&lt;br /&gt;
{{wcagCheck&lt;br /&gt;
|wcagStatus=2-testing complete&lt;br /&gt;
|wcagCheckedfor=Web, Authoring tool&lt;br /&gt;
|wcagTestdate=2022-08-09&lt;br /&gt;
|wcagLevel=AA&lt;br /&gt;
|wcagSupport=partially supports&lt;br /&gt;
|wcagWorkaround=yes&lt;br /&gt;
|wcagComments=Authoring tool: insert tag in source editing mode&lt;br /&gt;
&lt;br /&gt;
Web:  Player controls are keyboard and screenreader accessible&lt;br /&gt;
&lt;br /&gt;
No subtitles can be added. Workaround: Use extension &#039;&#039;&#039;EmbedVideo&#039;&#039;&#039; and link to external captioned or subtitled videos.&lt;br /&gt;
|extensionType=extended&lt;br /&gt;
|extensionFocus=reader&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7972</id>
		<title>Reference:BlueSpicePlayer</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7972"/>
		<updated>2023-12-11T05:30:32Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Spelling Perferences&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BSExtensionInfo&lt;br /&gt;
|status=stable&lt;br /&gt;
|developer=HalloWelt&lt;br /&gt;
|type=BlueSpice&lt;br /&gt;
|edition=BlueSpice pro, BlueSpice Farm, BlueSpice Cloud&lt;br /&gt;
|compatible=BlueSpice&lt;br /&gt;
|category=Rich Articles&lt;br /&gt;
|license=GPL v2+&lt;br /&gt;
|features=BlueSpice &#039;&#039;&#039;Player&#039;&#039;&#039; is a video player that enables you to play all the usual HTML5 video formats in your wiki.&lt;br /&gt;
&lt;br /&gt;
*Activated with the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;showtime&amp;gt;Video.mp4&amp;lt;/showtime&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag&lt;br /&gt;
*Settings:&lt;br /&gt;
**change the size&lt;br /&gt;
**start the video immediately (autoplay)&lt;br /&gt;
**play the video in a loop&lt;br /&gt;
*Supported formats: mp4, ogv, flv and webm&lt;br /&gt;
*It is possible to include multiple videos on one page&lt;br /&gt;
*In IE and flv, the HTML5 player falls back to a Flash version (default in VideoJS)&lt;br /&gt;
*For compatibility reasons, &#039;&#039;bs: jwplayer&#039;&#039; is also supported as a tag&lt;br /&gt;
&lt;br /&gt;
In the user settings (&amp;lt;code&amp;gt;Special:Preferences&amp;lt;/code&amp;gt;) under &#039;&#039;Appearance,&#039;&#039; users can set  if the videos should start automatically.&lt;br /&gt;
|desc=Integrates an HTML video player for uploaded videos&lt;br /&gt;
}}&lt;br /&gt;
{{wcagCheck&lt;br /&gt;
|wcagStatus=2-testing complete&lt;br /&gt;
|wcagCheckedfor=Web, Authoring tool&lt;br /&gt;
|wcagTestdate=2022-08-09&lt;br /&gt;
|wcagLevel=AA&lt;br /&gt;
|wcagSupport=partially supports&lt;br /&gt;
|wcagWorkaround=yes&lt;br /&gt;
|wcagComments=Authoring tool: insert tag in source editing mode&lt;br /&gt;
&lt;br /&gt;
Web:  Player controls are keyboard and screenreader accessible&lt;br /&gt;
&lt;br /&gt;
No subtitles can be added. Workaround: Use extension &#039;&#039;&#039;EmbedVideo&#039;&#039;&#039; and link to external captioned or subtitled videos.&lt;br /&gt;
|extensionType=extended&lt;br /&gt;
|extensionFocus=reader&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7971</id>
		<title>Reference:BlueSpicePlayer</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7971"/>
		<updated>2023-12-11T05:23:16Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Fix tag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BSExtensionInfo&lt;br /&gt;
|status=stable&lt;br /&gt;
|developer=HalloWelt&lt;br /&gt;
|type=BlueSpice&lt;br /&gt;
|edition=BlueSpice pro, BlueSpice Farm, BlueSpice Cloud&lt;br /&gt;
|compatible=BlueSpice&lt;br /&gt;
|category=Rich Articles&lt;br /&gt;
|license=GPL v2+&lt;br /&gt;
|features=BlueSpice &#039;&#039;&#039;Player&#039;&#039;&#039; is a video player that enables you to play all the usual HTML5 video formats in your wiki.&lt;br /&gt;
&lt;br /&gt;
*Activated with the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;showtime&amp;gt;Video.mp4&amp;lt;/showtime&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag&lt;br /&gt;
*Settings:&lt;br /&gt;
**change the size&lt;br /&gt;
**start the video immediately (autoplay)&lt;br /&gt;
**play the video in a loop&lt;br /&gt;
*Supported formats: mp4, ogv, flv and webm&lt;br /&gt;
*It is possible to include multiple videos on one page&lt;br /&gt;
*In IE and flv, the HTML5 player falls back to a Flash version (default in VideoJS)&lt;br /&gt;
*For compatibility reasons, &#039;&#039;bs: jwplayer&#039;&#039; is also supported as a tag&lt;br /&gt;
&lt;br /&gt;
In the user settings (&amp;lt;code&amp;gt;Special:Perferences&amp;lt;/code&amp;gt;) under &#039;&#039;Appearance,&#039;&#039; users can set  if the videos should start automatically.&lt;br /&gt;
|desc=Integrates an HTML video player for uploaded videos&lt;br /&gt;
}}&lt;br /&gt;
{{wcagCheck&lt;br /&gt;
|wcagStatus=2-testing complete&lt;br /&gt;
|wcagCheckedfor=Web, Authoring tool&lt;br /&gt;
|wcagTestdate=2022-08-09&lt;br /&gt;
|wcagLevel=AA&lt;br /&gt;
|wcagSupport=partially supports&lt;br /&gt;
|wcagWorkaround=yes&lt;br /&gt;
|wcagComments=Authoring tool: insert tag in source editing mode&lt;br /&gt;
&lt;br /&gt;
Web:  Player controls are keyboard and screenreader accessible&lt;br /&gt;
&lt;br /&gt;
No subtitles can be added. Workaround: Use extension &#039;&#039;&#039;EmbedVideo&#039;&#039;&#039; and link to external captioned or subtitled videos.&lt;br /&gt;
|extensionType=extended&lt;br /&gt;
|extensionFocus=reader&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7970</id>
		<title>Reference:BlueSpicePlayer</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Reference:BlueSpicePlayer&amp;diff=7970"/>
		<updated>2023-12-11T05:00:54Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Fix tag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BSExtensionInfo&lt;br /&gt;
|status=stable&lt;br /&gt;
|developer=HalloWelt&lt;br /&gt;
|type=BlueSpice&lt;br /&gt;
|edition=BlueSpice pro, BlueSpice Farm, BlueSpice Cloud&lt;br /&gt;
|compatible=BlueSpice&lt;br /&gt;
|category=Rich Articles&lt;br /&gt;
|license=GPL v2+&lt;br /&gt;
|features=BlueSpice &#039;&#039;&#039;Player&#039;&#039;&#039; is a video player that enables you to play all the usual HTML5 video formats in your wiki.&lt;br /&gt;
&lt;br /&gt;
*Activated with the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;showtime&amp;gt; Video.mp4 &amp;lt;/showtime&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag&lt;br /&gt;
*Settings:&lt;br /&gt;
**change the size&lt;br /&gt;
**start the video immediately (autoplay)&lt;br /&gt;
**play the video in a loop&lt;br /&gt;
*Supported formats: mp4, ogv, flv and webm&lt;br /&gt;
*It is possible to include multiple videos on one page&lt;br /&gt;
*In IE and flv, the HTML5 player falls back to a Flash version (default in VideoJS)&lt;br /&gt;
*For compatibility reasons, &#039;&#039;bs: jwplayer&#039;&#039; is also supported as a tag&lt;br /&gt;
&lt;br /&gt;
In the user settings (&amp;lt;code&amp;gt;Special:Perferences&amp;lt;/code&amp;gt;) under &#039;&#039;Appearance,&#039;&#039; users can set  if the videos should start automatically.&lt;br /&gt;
|desc=Integrates an HTML video player for uploaded videos&lt;br /&gt;
}}&lt;br /&gt;
{{wcagCheck&lt;br /&gt;
|wcagStatus=2-testing complete&lt;br /&gt;
|wcagCheckedfor=Web, Authoring tool&lt;br /&gt;
|wcagTestdate=2022-08-09&lt;br /&gt;
|wcagLevel=AA&lt;br /&gt;
|wcagSupport=partially supports&lt;br /&gt;
|wcagWorkaround=yes&lt;br /&gt;
|wcagComments=Authoring tool: insert tag in source editing mode&lt;br /&gt;
&lt;br /&gt;
Web:  Player controls are keyboard and screenreader accessible&lt;br /&gt;
&lt;br /&gt;
No subtitles can be added. Workaround: Use extension &#039;&#039;&#039;EmbedVideo&#039;&#039;&#039; and link to external captioned or subtitled videos.&lt;br /&gt;
|extensionType=extended&lt;br /&gt;
|extensionFocus=reader&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceBookshelf/4-4&amp;diff=3881</id>
		<title>Manual:Extension/BlueSpiceBookshelf/4-4</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceBookshelf/4-4&amp;diff=3881"/>
		<updated>2022-07-07T07:59:42Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Changed &amp;#039;Art&amp;#039; to &amp;#039;Type&amp;#039;. Changed &amp;#039;Beschreibung&amp;#039; to &amp;#039;Description&amp;#039;. Changed &amp;#039;Kapitelnavigation&amp;#039; to &amp;#039;Chapter navigation&amp;#039;.  Changed &amp;#039;ja&amp;#039; and &amp;#039;nein&amp;#039; to &amp;#039;Yes&amp;#039; and &amp;#039;No&amp;#039;. (English manual).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
{{DISPLAYTITLE:Books}}&lt;br /&gt;
&lt;br /&gt;
In BlueSpice pro, several wiki pages can be displayed for a structured book with chapter navigation. The book can also be printed as a PDF file with a cover sheet.&lt;br /&gt;
&lt;br /&gt;
==Characteristics of books==&lt;br /&gt;
By default, books are created as a &amp;quot;general book&amp;quot;. General books have the following characteristics:&lt;br /&gt;
&lt;br /&gt;
*They povide a chapter navigation.&lt;br /&gt;
*On book pages, the book navigation is displayed instead of the main navigation.&lt;br /&gt;
*A wiki page that belongs to a general book is identified by a &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bookshelf /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag in the source code.&lt;br /&gt;
*Each page can only be included &#039;&#039;&#039;in one&#039;&#039;&#039; general book.&lt;br /&gt;
*Books can be printed completely or partially as a PDF with a cover sheet.&lt;br /&gt;
*They are listed alphabetically on the bookshelf. It is not possible to hide individual books.&lt;br /&gt;
*The bookshelf can be reached via the main navigation.&lt;br /&gt;
&lt;br /&gt;
==Creating a book==&lt;br /&gt;
Books are created from the page  &#039;&#039;Special:BookshelfBookManager&#039;&#039;. This page can be reached from the &#039;&#039;[[Manual:Extension/BlueSpiceDiscovery|Global actions]]&#039;&#039; menu under  &#039;&#039;Management &amp;gt; Books&#039;&#039;.&lt;br /&gt;
[[File:Manual:book-manager.png|alt=Book manager|center|thumb|650x650px|Book manager]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To create a book:&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the &amp;lt;code&amp;gt;+&amp;lt;/code&amp;gt;-button.&lt;br /&gt;
#&#039;&#039;&#039;Enter&#039;&#039;&#039; a &#039;&#039;Book title.&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Select&#039;&#039;&#039; &amp;quot;General books&amp;quot; as type of the book.[[File:Manual:create-book.png|alt=Create a book|center|thumb|550x550px|Create a book]]&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Done&#039;&#039;. The book editor loads next.&lt;br /&gt;
{{Messagebox|boxtype=important|icon=|Note text=The book is only created in the wiki when at least one page has been saved in the book.|bgcolor=}}&lt;br /&gt;
&lt;br /&gt;
===Adding pages===&lt;br /&gt;
You are now in the book editing mode.&lt;br /&gt;
[[File:Manual:bookshelf-schaltflächen.png|alt=Book edit buttons|center|thumb|220x220px|Book edit buttons]]&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the  &#039;&#039;Plus&#039;&#039; button (1).  A dialog window opens.&lt;br /&gt;
#&#039;&#039;&#039;Search&#039;&#039;&#039; for a page in the wiki and select it. Soll in der Buchnavigation ein anderer Name angezeigt werden so können Sie ienen Anzeigetitle angeben (optional).&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Done&#039;&#039;.&lt;br /&gt;
#&#039;&#039;&#039;Add&#039;&#039;&#039; additional pages.&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the arrow of the &#039;&#039;Save&#039;&#039; button and select &#039;&#039;Save and add chapter navigation.&#039;&#039; This process inserts the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bookshelf /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag into the source code of all wiki pages in the book. This causes a revision of the pages.[[File:Manual:save chapternavigation.png|alt=Add chapter navigation|center|thumb|350x350px|Add chapter navigation]]&lt;br /&gt;
{{Messagebox|boxtype=tip|icon=|Note text=You can click a page title of a book page before adding a new book    page. This is then inserted as a sub-chapter. You can move pages to the desired position later using drag &amp;amp; drop with the mouse.|bgcolor=}}&lt;br /&gt;
The book is now displayed on the wiki bookshelf. The bookshelf can be reached via the entry links in the main navigation.&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=There is no option to go directly from the bookshelf to the book manager.|bgcolor=}}&lt;br /&gt;
&lt;br /&gt;
===Mass-adding of pages===&lt;br /&gt;
After clicking &amp;quot;Mass add&amp;quot;, a dialog is opened. It contains different criteria for page selection:&lt;br /&gt;
&lt;br /&gt;
* All pages of a category&lt;br /&gt;
* All subpages of a certain page&lt;br /&gt;
* From a page collection - page collections are lists of pages located in the MediaWiki namespace. They are usually created from [https://en.wiki.bluespice.com/wiki/Manual:Extension/BlueSpiceExtendedSearch#Export search results].&lt;br /&gt;
* By a semantic property - pages can be selected based on the value of a certain semantic property.&lt;br /&gt;
&lt;br /&gt;
After adding your book pages click S&#039;&#039;ave&#039;&#039; at the bottom of the page. Now you have created a page in the namespace &#039;&#039;Book&#039;&#039;. It simply contains the list of pages that have been added to the book.&lt;br /&gt;
&lt;br /&gt;
==Adding metadata==&lt;br /&gt;
While editing a book (adding or removing pages), meta-data for the book can be added. References to these metadata can be included in the PDF template. To edit metadata, select the top-most node of the book (first page) and click the wrench icon. A dialog will be opened where various meta-data can be added or removed:&lt;br /&gt;
&lt;br /&gt;
* Title&lt;br /&gt;
* Subtitle&lt;br /&gt;
* Author 1 and 2&lt;br /&gt;
* Document-ID&lt;br /&gt;
* Document type&lt;br /&gt;
* Department&lt;br /&gt;
* Version&lt;br /&gt;
* Template (PDF): If you maintain multiple PDF templates for books, you can select one of them here.&lt;br /&gt;
* Table of Contents (Only article titles, or Embed article TOCs)&lt;br /&gt;
&lt;br /&gt;
==Adding a cover image==&lt;br /&gt;
&amp;lt;span&amp;gt;To add a cover photo for the book, add a metadata item&amp;lt;/span&amp;gt; &#039;&#039;Bookshelf image&#039;&#039;&amp;lt;span&amp;gt;. Select this option from the dropdown and click&amp;lt;/span&amp;gt; &#039;&#039;Add&#039;&#039;&amp;lt;span&amp;gt;. Once the meta data is added enter the name of the image in the value field. Any image currently uploaded to the wiki can be used. Type the name without the &amp;quot;File:&amp;quot; prefix (enter the image name and file extension).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Types of books==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Type&lt;br /&gt;
!Description&lt;br /&gt;
!Chapter navigation&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;General books&#039;&#039;&#039;&lt;br /&gt;
|Visible to all users. Only general books can have a chapter navigation. In almost all cases a book is set up as a &amp;quot;general book&amp;quot;.&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Own books&#039;&#039;&#039;&lt;br /&gt;
|An own book is only visible in the bookshelf to the user who created the book. Such a book does not have a chapter navigation. Own books are usually created to export wiki pages as a PDF with a cover sheet.&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Temporary books&#039;&#039;&#039;&lt;br /&gt;
|This selection is also available to wiki users who are not logged into the wiki and is therefore mainly useful for public wikis. These books are only temporarily stored in the user&#039;s browser and not in the wiki itself. If the browser cache is deleted or the user switches to another browser, the book is no longer available. The main aim of temporary books is so that users can collectively print out wiki pages as PDFs.&lt;br /&gt;
|No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Exporting a book==&lt;br /&gt;
Books, individual chapters or even individual book pages can be exported as PDF files:&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;Open&#039;&#039;&#039; the book in the book manager.&lt;br /&gt;
# &#039;&#039;&#039;Select&#039;&#039;&#039; each of the pages or chapters to export by clicking the appropriate check boxes. Sub-chapters are selected automatically.&lt;br /&gt;
# &#039;&#039;&#039;Click&#039;&#039;&#039; the Export Selections drop-down menu to open a list of the available formats.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Actions in the book manager==&lt;br /&gt;
Der Link Verwaltung &amp;gt; Bücher im Menü &#039;&#039;Globale Aktionen&#039;&#039; lädt die Seite &#039;&#039;Spezial:Bücherverwaltung&#039;&#039;. Hier können Sie Ihre Bücher bearbeiten.&lt;br /&gt;
[[File:Manual:book-manager-actions-EN.png|alt=Book manager actions|center|thumb|650x650px|Book manager actions]]&lt;br /&gt;
* &amp;lt;span&amp;gt;&#039;&#039;&#039;Edit&#039;&#039;&#039;&amp;lt;/span&amp;gt; (1): Links to the Book editor where you can edit the book contents and metadata.&lt;br /&gt;
* &#039;&#039;&#039;Delete&#039;&#039;&#039; (2): Deletes the book page in the namespace &#039;&#039;Book&#039;&#039; &#039;&#039;&#039;without&#039;&#039;&#039; deleting the wiki pages.&lt;br /&gt;
* &#039;&#039;&#039;Duplicate&#039;&#039;&#039; (3): Duplicates this book, including &#039;&#039;&#039;all the pages&#039;&#039;&#039; of the book to a different namespace.&lt;br /&gt;
* &#039;&#039;&#039;Export&#039;&#039;&#039; (4): Exports all wiki pages in this book to PDF.&lt;br /&gt;
* &#039;&#039;&#039;Assign&#039;&#039;&#039; (5): Assigns the book to designated users. These users are the responsible editors of the book.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
===Display options===&lt;br /&gt;
{{#dpl:title=Manual:Extension/BlueSpiceConfigManager|include=#BlueSpiceBookShelf}}&lt;br /&gt;
&lt;br /&gt;
===Export===&lt;br /&gt;
Wiki-Administratoren können folgende Anpassungen für den Buchexport vornehmen:&lt;br /&gt;
{{#dpl:title=Manual:Extension/BlueSpiceConfigManager|include=#Export}}&lt;br /&gt;
&lt;br /&gt;
===Configuring the file size limits  (server)===&lt;br /&gt;
By default, the book export is limited to 50MB in file size. To adjust this value, complete the following steps: &lt;br /&gt;
&lt;br /&gt;
#In Apache Tomcat, open the file &#039;&#039;web.xml&#039;&#039;: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
sudo -s&lt;br /&gt;
nano /opt/tomcat/webapps/manager/WEB-INF/web.xml&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Look for the following lines and adjust the value (e.g. for 250MB=26214400) &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;max-file-size&amp;gt;262144000&amp;lt;/max-file-size&amp;gt;&lt;br /&gt;
&amp;lt;max-request-size&amp;gt;262144000&amp;lt;/max-request-size&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#The web app BShtml2PDF also has a setting that needs to be adjusted: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
nano /opt/tomcat/webapps/BShtml2PDF/WEB-INF&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Enter your values in the following lines: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;param-name&amp;gt;maxMemSize&amp;lt;/param-name&amp;gt; &amp;lt;param-value&amp;gt;26214400&amp;lt;/param-value&amp;gt;&lt;br /&gt;
&amp;lt;param-name&amp;gt;maxFileize&amp;lt;/param-name&amp;gt; &amp;lt;param-value&amp;gt;26214400&amp;lt;/param-value&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Apache Tomcat neu starten &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
service tomcat restart&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
==Deleting a book==&lt;br /&gt;
&lt;br /&gt;
Wenn Sie ein Buch löschen, entfernen Sie nur die Buchseite des Buches (also das Inhaltsverzeichnis). Die Wiki-Seiten im Buch werden jedoch nicht gelöscht. Bevor Sie das Buch löschen, werden Sie in einem Popup-Menü darüber informiert, dass das &#039;&#039;bookshelf&#039;&#039;-&amp;lt;span class=&amp;quot;mw-lingo-term ve-pasteProtect&amp;quot; data-lingo-term-id=&amp;quot;c101058e7ea21bbbf2a5ac893088e90b&amp;quot; data-hasqtip=&amp;quot;4&amp;quot;&amp;gt;Tag&amp;lt;/span&amp;gt; nicht automatisch von den Seiten entfernt wird.&lt;br /&gt;
&lt;br /&gt;
Die &#039;&#039;bookshelf&#039;&#039;-Tags haben nach dem Löschen des Buches keine Auswirkung auf die Wiki-Seiten. Wenn Sie sie manuell entfernen möchten, können Sie zur Seite &#039;&#039;Spezial:Text ersetzen&#039;&#039; gehen und ein &amp;quot;Suchen und Ersetzen&amp;quot; durchführen.&lt;br /&gt;
&lt;br /&gt;
==Duplicating a book ==&lt;br /&gt;
You can create an entire copy of the book by duplicating it:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To duplicate a book:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Enter&#039;&#039;&#039; a &#039;&#039;target name&#039;&#039;: The default vlaue is the book name with the suffix &#039;&#039;(copy)&#039;&#039;. Change this to create a different book title.&lt;br /&gt;
#&#039;&#039;&#039;Select&#039;&#039;&#039; a &#039;&#039;namespace&#039;&#039;: Choose a namespace that is different from the original namespace.&lt;br /&gt;
&lt;br /&gt;
If you are not careful, you might experience some unintended consequences. By creating a new book, you also create copies of all the wiki pages in the original book. Since a namespace cannot contain the same page twice, you have to copy the files to a different namespace.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;About the duplicated files:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Book page:&#039;&#039;&#039; A new page in the namespace book. If you don&#039;t enter a new title, the book will be created with the same title and the suffix &#039;&#039;(Copy). E.g. Employee Manual (Copy).&#039;&#039; This file includes a copy of the structure of your original book with the corresponding links to the duplicated pages in the new copy.&lt;br /&gt;
*&#039;&#039;&#039;Wiki pages&#039;&#039;&#039;: All pages contained in the original book are duplicated. The following scenarios are possible:&lt;br /&gt;
**&#039;&#039;&#039;Same namespace:&#039;&#039;&#039; If you duplicate a book in the same namespace, no actual duplicates of the actual wiki are created. Instead, the bookshelf tag is updated to point to the copy of the book. For example, if your original book contains the page &#039;&#039;HR:Quality assurance&#039;&#039;  (the book is in the namespace HR), the &#039;&#039;Quality assurance&#039;&#039; page now contains the bookshelf tag &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
**&#039;&#039;&#039;Different namespace&#039;&#039;&#039;: If you create the book copy in a different namespace, the bookshelf tag in the original files remains unchanged. The new pages in the different namespace are created with a bookshelf tag for the new book copy. This is most likely the scenario you want.&lt;br /&gt;
==Permissions==&lt;br /&gt;
To create and edit books, users need &#039;&#039;edit&#039;&#039; rights in Book namespace. Additionally, a user can only add pages to the book that that user can read. If a user tries to export a book to PDF that contains pages for which the user does not have permissions, the user will get an error message.&lt;br /&gt;
==Tips for working with books ==&lt;br /&gt;
&lt;br /&gt;
*Use a competent team to decide on the content that should be transferred into an online book.&lt;br /&gt;
*Decide on how to handle existing numerations or references.&lt;br /&gt;
*Seize the opportunity: Get rid of unnecessary content (or don&#039;t include it in your book).&lt;br /&gt;
*Decide on standards for documents: When does it make sense to link documents in the wiki? When is is sensible to include the document&#039;s content into a wiki article?&lt;br /&gt;
*Decide on a fitting course of action: Do you want to create the articles in the wiki first, and compile them in a book structure afterwards, or do you want to create the book structure first, and create and edit the articles contained gradually?&lt;br /&gt;
{{Box Links-en&lt;br /&gt;
|Topic1=[[Reference:BlueSpiceBookshelf]]&lt;br /&gt;
|Topic2=&lt;br /&gt;
|Topic3=[[Manual:Extension/BlueSpiceBookshelf/Customized_PDF_Output|Customizing page breaks]]}}&lt;br /&gt;
{{Translation}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Organization]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceBookshelf/4-4&amp;diff=3880</id>
		<title>Manual:Extension/BlueSpiceBookshelf/4-4</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceBookshelf/4-4&amp;diff=3880"/>
		<updated>2022-07-07T07:34:46Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Removed &amp;#039;Sie als Art des Buches&amp;#039; from &amp;#039;Select Sie als Art des Buches &amp;quot;General books&amp;quot; as type of the book.&amp;#039; (English manual).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
{{DISPLAYTITLE:Books}}&lt;br /&gt;
&lt;br /&gt;
In BlueSpice pro, several wiki pages can be displayed for a structured book with chapter navigation. The book can also be printed as a PDF file with a cover sheet.&lt;br /&gt;
&lt;br /&gt;
==Characteristics of books==&lt;br /&gt;
By default, books are created as a &amp;quot;general book&amp;quot;. General books have the following characteristics:&lt;br /&gt;
&lt;br /&gt;
*They povide a chapter navigation.&lt;br /&gt;
*On book pages, the book navigation is displayed instead of the main navigation.&lt;br /&gt;
*A wiki page that belongs to a general book is identified by a &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bookshelf /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag in the source code.&lt;br /&gt;
*Each page can only be included &#039;&#039;&#039;in one&#039;&#039;&#039; general book.&lt;br /&gt;
*Books can be printed completely or partially as a PDF with a cover sheet.&lt;br /&gt;
*They are listed alphabetically on the bookshelf. It is not possible to hide individual books.&lt;br /&gt;
*The bookshelf can be reached via the main navigation.&lt;br /&gt;
&lt;br /&gt;
==Creating a book==&lt;br /&gt;
Books are created from the page  &#039;&#039;Special:BookshelfBookManager&#039;&#039;. This page can be reached from the &#039;&#039;[[Manual:Extension/BlueSpiceDiscovery|Global actions]]&#039;&#039; menu under  &#039;&#039;Management &amp;gt; Books&#039;&#039;.&lt;br /&gt;
[[File:Manual:book-manager.png|alt=Book manager|center|thumb|650x650px|Book manager]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To create a book:&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the &amp;lt;code&amp;gt;+&amp;lt;/code&amp;gt;-button.&lt;br /&gt;
#&#039;&#039;&#039;Enter&#039;&#039;&#039; a &#039;&#039;Book title.&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Select&#039;&#039;&#039; &amp;quot;General books&amp;quot; as type of the book.[[File:Manual:create-book.png|alt=Create a book|center|thumb|550x550px|Create a book]]&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Done&#039;&#039;. The book editor loads next.&lt;br /&gt;
{{Messagebox|boxtype=important|icon=|Note text=The book is only created in the wiki when at least one page has been saved in the book.|bgcolor=}}&lt;br /&gt;
&lt;br /&gt;
===Adding pages===&lt;br /&gt;
You are now in the book editing mode.&lt;br /&gt;
[[File:Manual:bookshelf-schaltflächen.png|alt=Book edit buttons|center|thumb|220x220px|Book edit buttons]]&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the  &#039;&#039;Plus&#039;&#039; button (1).  A dialog window opens.&lt;br /&gt;
#&#039;&#039;&#039;Search&#039;&#039;&#039; for a page in the wiki and select it. Soll in der Buchnavigation ein anderer Name angezeigt werden so können Sie ienen Anzeigetitle angeben (optional).&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; &#039;&#039;Done&#039;&#039;.&lt;br /&gt;
#&#039;&#039;&#039;Add&#039;&#039;&#039; additional pages.&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the arrow of the &#039;&#039;Save&#039;&#039; button and select &#039;&#039;Save and add chapter navigation.&#039;&#039; This process inserts the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bookshelf /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag into the source code of all wiki pages in the book. This causes a revision of the pages.[[File:Manual:save chapternavigation.png|alt=Add chapter navigation|center|thumb|350x350px|Add chapter navigation]]&lt;br /&gt;
{{Messagebox|boxtype=tip|icon=|Note text=You can click a page title of a book page before adding a new book    page. This is then inserted as a sub-chapter. You can move pages to the desired position later using drag &amp;amp; drop with the mouse.|bgcolor=}}&lt;br /&gt;
The book is now displayed on the wiki bookshelf. The bookshelf can be reached via the entry links in the main navigation.&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=There is no option to go directly from the bookshelf to the book manager.|bgcolor=}}&lt;br /&gt;
&lt;br /&gt;
===Mass-adding of pages===&lt;br /&gt;
After clicking &amp;quot;Mass add&amp;quot;, a dialog is opened. It contains different criteria for page selection:&lt;br /&gt;
&lt;br /&gt;
* All pages of a category&lt;br /&gt;
* All subpages of a certain page&lt;br /&gt;
* From a page collection - page collections are lists of pages located in the MediaWiki namespace. They are usually created from [https://en.wiki.bluespice.com/wiki/Manual:Extension/BlueSpiceExtendedSearch#Export search results].&lt;br /&gt;
* By a semantic property - pages can be selected based on the value of a certain semantic property.&lt;br /&gt;
&lt;br /&gt;
After adding your book pages click S&#039;&#039;ave&#039;&#039; at the bottom of the page. Now you have created a page in the namespace &#039;&#039;Book&#039;&#039;. It simply contains the list of pages that have been added to the book.&lt;br /&gt;
&lt;br /&gt;
==Adding metadata==&lt;br /&gt;
While editing a book (adding or removing pages), meta-data for the book can be added. References to these metadata can be included in the PDF template. To edit metadata, select the top-most node of the book (first page) and click the wrench icon. A dialog will be opened where various meta-data can be added or removed:&lt;br /&gt;
&lt;br /&gt;
* Title&lt;br /&gt;
* Subtitle&lt;br /&gt;
* Author 1 and 2&lt;br /&gt;
* Document-ID&lt;br /&gt;
* Document type&lt;br /&gt;
* Department&lt;br /&gt;
* Version&lt;br /&gt;
* Template (PDF): If you maintain multiple PDF templates for books, you can select one of them here.&lt;br /&gt;
* Table of Contents (Only article titles, or Embed article TOCs)&lt;br /&gt;
&lt;br /&gt;
==Adding a cover image==&lt;br /&gt;
&amp;lt;span&amp;gt;To add a cover photo for the book, add a metadata item&amp;lt;/span&amp;gt; &#039;&#039;Bookshelf image&#039;&#039;&amp;lt;span&amp;gt;. Select this option from the dropdown and click&amp;lt;/span&amp;gt; &#039;&#039;Add&#039;&#039;&amp;lt;span&amp;gt;. Once the meta data is added enter the name of the image in the value field. Any image currently uploaded to the wiki can be used. Type the name without the &amp;quot;File:&amp;quot; prefix (enter the image name and file extension).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Types of books==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Art&lt;br /&gt;
!Beschreibung&lt;br /&gt;
!Kapitelnavigation&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;General books&#039;&#039;&#039;&lt;br /&gt;
|Visible to all users. Only general books can have a chapter navigation. In almost all cases a book is set up as a &amp;quot;general book&amp;quot;.&lt;br /&gt;
|ja&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Own books&#039;&#039;&#039;&lt;br /&gt;
|An own book is only visible in the bookshelf to the user who created the book. Such a book does not have a chapter navigation. Own books are usually created to export wiki pages as a PDF with a cover sheet.&lt;br /&gt;
|nein&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Temporary books&#039;&#039;&#039;&lt;br /&gt;
|This selection is also available to wiki users who are not logged into the wiki and is therefore mainly useful for public wikis. These books are only temporarily stored in the user&#039;s browser and not in the wiki itself. If the browser cache is deleted or the user switches to another browser, the book is no longer available. The main aim of temporary books is so that users can collectively print out wiki pages as PDFs.&lt;br /&gt;
|nein&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Exporting a book==&lt;br /&gt;
Books, individual chapters or even individual book pages can be exported as PDF files:&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;Open&#039;&#039;&#039; the book in the book manager.&lt;br /&gt;
# &#039;&#039;&#039;Select&#039;&#039;&#039; each of the pages or chapters to export by clicking the appropriate check boxes. Sub-chapters are selected automatically.&lt;br /&gt;
# &#039;&#039;&#039;Click&#039;&#039;&#039; the Export Selections drop-down menu to open a list of the available formats.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Actions in the book manager==&lt;br /&gt;
Der Link Verwaltung &amp;gt; Bücher im Menü &#039;&#039;Globale Aktionen&#039;&#039; lädt die Seite &#039;&#039;Spezial:Bücherverwaltung&#039;&#039;. Hier können Sie Ihre Bücher bearbeiten.&lt;br /&gt;
[[File:Manual:book-manager-actions-EN.png|alt=Book manager actions|center|thumb|650x650px|Book manager actions]]&lt;br /&gt;
* &amp;lt;span&amp;gt;&#039;&#039;&#039;Edit&#039;&#039;&#039;&amp;lt;/span&amp;gt; (1): Links to the Book editor where you can edit the book contents and metadata.&lt;br /&gt;
* &#039;&#039;&#039;Delete&#039;&#039;&#039; (2): Deletes the book page in the namespace &#039;&#039;Book&#039;&#039; &#039;&#039;&#039;without&#039;&#039;&#039; deleting the wiki pages.&lt;br /&gt;
* &#039;&#039;&#039;Duplicate&#039;&#039;&#039; (3): Duplicates this book, including &#039;&#039;&#039;all the pages&#039;&#039;&#039; of the book to a different namespace.&lt;br /&gt;
* &#039;&#039;&#039;Export&#039;&#039;&#039; (4): Exports all wiki pages in this book to PDF.&lt;br /&gt;
* &#039;&#039;&#039;Assign&#039;&#039;&#039; (5): Assigns the book to designated users. These users are the responsible editors of the book.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
===Display options===&lt;br /&gt;
{{#dpl:title=Manual:Extension/BlueSpiceConfigManager|include=#BlueSpiceBookShelf}}&lt;br /&gt;
&lt;br /&gt;
===Export===&lt;br /&gt;
Wiki-Administratoren können folgende Anpassungen für den Buchexport vornehmen:&lt;br /&gt;
{{#dpl:title=Manual:Extension/BlueSpiceConfigManager|include=#Export}}&lt;br /&gt;
&lt;br /&gt;
===Configuring the file size limits  (server)===&lt;br /&gt;
By default, the book export is limited to 50MB in file size. To adjust this value, complete the following steps: &lt;br /&gt;
&lt;br /&gt;
#In Apache Tomcat, open the file &#039;&#039;web.xml&#039;&#039;: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
sudo -s&lt;br /&gt;
nano /opt/tomcat/webapps/manager/WEB-INF/web.xml&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Look for the following lines and adjust the value (e.g. for 250MB=26214400) &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;max-file-size&amp;gt;262144000&amp;lt;/max-file-size&amp;gt;&lt;br /&gt;
&amp;lt;max-request-size&amp;gt;262144000&amp;lt;/max-request-size&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#The web app BShtml2PDF also has a setting that needs to be adjusted: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
nano /opt/tomcat/webapps/BShtml2PDF/WEB-INF&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Enter your values in the following lines: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;param-name&amp;gt;maxMemSize&amp;lt;/param-name&amp;gt; &amp;lt;param-value&amp;gt;26214400&amp;lt;/param-value&amp;gt;&lt;br /&gt;
&amp;lt;param-name&amp;gt;maxFileize&amp;lt;/param-name&amp;gt; &amp;lt;param-value&amp;gt;26214400&amp;lt;/param-value&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
#Apache Tomcat neu starten &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
service tomcat restart&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
==Deleting a book==&lt;br /&gt;
&lt;br /&gt;
Wenn Sie ein Buch löschen, entfernen Sie nur die Buchseite des Buches (also das Inhaltsverzeichnis). Die Wiki-Seiten im Buch werden jedoch nicht gelöscht. Bevor Sie das Buch löschen, werden Sie in einem Popup-Menü darüber informiert, dass das &#039;&#039;bookshelf&#039;&#039;-&amp;lt;span class=&amp;quot;mw-lingo-term ve-pasteProtect&amp;quot; data-lingo-term-id=&amp;quot;c101058e7ea21bbbf2a5ac893088e90b&amp;quot; data-hasqtip=&amp;quot;4&amp;quot;&amp;gt;Tag&amp;lt;/span&amp;gt; nicht automatisch von den Seiten entfernt wird.&lt;br /&gt;
&lt;br /&gt;
Die &#039;&#039;bookshelf&#039;&#039;-Tags haben nach dem Löschen des Buches keine Auswirkung auf die Wiki-Seiten. Wenn Sie sie manuell entfernen möchten, können Sie zur Seite &#039;&#039;Spezial:Text ersetzen&#039;&#039; gehen und ein &amp;quot;Suchen und Ersetzen&amp;quot; durchführen.&lt;br /&gt;
&lt;br /&gt;
==Duplicating a book ==&lt;br /&gt;
You can create an entire copy of the book by duplicating it:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To duplicate a book:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Enter&#039;&#039;&#039; a &#039;&#039;target name&#039;&#039;: The default vlaue is the book name with the suffix &#039;&#039;(copy)&#039;&#039;. Change this to create a different book title.&lt;br /&gt;
#&#039;&#039;&#039;Select&#039;&#039;&#039; a &#039;&#039;namespace&#039;&#039;: Choose a namespace that is different from the original namespace.&lt;br /&gt;
&lt;br /&gt;
If you are not careful, you might experience some unintended consequences. By creating a new book, you also create copies of all the wiki pages in the original book. Since a namespace cannot contain the same page twice, you have to copy the files to a different namespace.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;About the duplicated files:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Book page:&#039;&#039;&#039; A new page in the namespace book. If you don&#039;t enter a new title, the book will be created with the same title and the suffix &#039;&#039;(Copy). E.g. Employee Manual (Copy).&#039;&#039; This file includes a copy of the structure of your original book with the corresponding links to the duplicated pages in the new copy.&lt;br /&gt;
*&#039;&#039;&#039;Wiki pages&#039;&#039;&#039;: All pages contained in the original book are duplicated. The following scenarios are possible:&lt;br /&gt;
**&#039;&#039;&#039;Same namespace:&#039;&#039;&#039; If you duplicate a book in the same namespace, no actual duplicates of the actual wiki are created. Instead, the bookshelf tag is updated to point to the copy of the book. For example, if your original book contains the page &#039;&#039;HR:Quality assurance&#039;&#039;  (the book is in the namespace HR), the &#039;&#039;Quality assurance&#039;&#039; page now contains the bookshelf tag &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
**&#039;&#039;&#039;Different namespace&#039;&#039;&#039;: If you create the book copy in a different namespace, the bookshelf tag in the original files remains unchanged. The new pages in the different namespace are created with a bookshelf tag for the new book copy. This is most likely the scenario you want.&lt;br /&gt;
==Permissions==&lt;br /&gt;
To create and edit books, users need &#039;&#039;edit&#039;&#039; rights in Book namespace. Additionally, a user can only add pages to the book that that user can read. If a user tries to export a book to PDF that contains pages for which the user does not have permissions, the user will get an error message.&lt;br /&gt;
==Tips for working with books ==&lt;br /&gt;
&lt;br /&gt;
*Use a competent team to decide on the content that should be transferred into an online book.&lt;br /&gt;
*Decide on how to handle existing numerations or references.&lt;br /&gt;
*Seize the opportunity: Get rid of unnecessary content (or don&#039;t include it in your book).&lt;br /&gt;
*Decide on standards for documents: When does it make sense to link documents in the wiki? When is is sensible to include the document&#039;s content into a wiki article?&lt;br /&gt;
*Decide on a fitting course of action: Do you want to create the articles in the wiki first, and compile them in a book structure afterwards, or do you want to create the book structure first, and create and edit the articles contained gradually?&lt;br /&gt;
{{Box Links-en&lt;br /&gt;
|Topic1=[[Reference:BlueSpiceBookshelf]]&lt;br /&gt;
|Topic2=&lt;br /&gt;
|Topic3=[[Manual:Extension/BlueSpiceBookshelf/Customized_PDF_Output|Customizing page breaks]]}}&lt;br /&gt;
{{Translation}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Organization]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Seite_verschieben.drawio.png&amp;diff=3836</id>
		<title>File:Seite verschieben.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Seite_verschieben.drawio.png&amp;diff=3836"/>
		<updated>2022-06-30T13:04:41Z</updated>

		<summary type="html">&lt;p&gt;Hslater: (username removed) (log details removed)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=File:Seite_verschieben.drawio.png&amp;diff=3835</id>
		<title>File:Seite verschieben.drawio.png</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=File:Seite_verschieben.drawio.png&amp;diff=3835"/>
		<updated>2022-06-30T13:03:21Z</updated>

		<summary type="html">&lt;p&gt;Hslater: (username removed) (log details removed)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceReadConfirmation&amp;diff=3834</id>
		<title>Manual:Extension/BlueSpiceReadConfirmation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpiceReadConfirmation&amp;diff=3834"/>
		<updated>2022-06-30T12:56:17Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Spelling error : confirmaation &amp;gt; confirmation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
{{DISPLAYTITLE:Read confirmation}}&lt;br /&gt;
&lt;br /&gt;
The extension &#039;&#039;&#039;ReadConfirmation&#039;&#039;&#039; allows to request read confirmations from users. If a user is assigned to a page, a mandatory read confirmation can be added to the page. &lt;br /&gt;
==Enabling read confirmations==&lt;br /&gt;
An administrator must enable read confirmations  in the [[Manual:Extension/BlueSpiceNamespaceManager|namespace manager]]:&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:ReadConfirmation2.png|alt=Namespace manager|center|thumb|650x650px|Namespace manager]]&lt;br /&gt;
&lt;br /&gt;
==Confirmation requests==&lt;br /&gt;
[[File:Manual:ReadConfirmation1.png|alt=Read confirmation|center|thumb|650x650px|Read confirmation]]&lt;br /&gt;
When read confirmations are active in a namespace, assigned users see a confirmation prompt when the page content has changed. After checking the checkbox &#039;&#039;Yes, I have completely read this article&#039;&#039; and then &#039;&#039;Confirm,&#039;&#039; the page version will be marked as read by that user.&lt;br /&gt;
&lt;br /&gt;
== Administration of read confirmations ==&lt;br /&gt;
Wiki admins can see an overview of all read confirmations by navigating to &#039;&#039;Global actions &amp;gt; Management &amp;gt; Assignments.&#039;&#039; Read confirmation information is shown in  the column &#039;&#039;Read?&#039;&#039;. A page can have multiple states:&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;Read confirmation not enabled:&#039;&#039; BlueSpiceReadConfirmation is not enabled for the namespace to which the page belongs.&lt;br /&gt;
*&#039;&#039;Not read:&#039;&#039; BlueSpiceReadConfirmation is enabled, but the assigned users have not yet read the page.&lt;br /&gt;
*&#039;&#039;Actions:&#039;&#039; In the columns for actions, there are two items related to read confirmations.&lt;br /&gt;
**&#039;&#039;Read confirmation log:&#039;&#039; Link to the read confirmation log for the page.&lt;br /&gt;
**&#039;&#039;Request read confirmation:&#039;&#039; Users get a reminder for their read confirmation.&lt;br /&gt;
[[File:Manual:zuweisungen-verwaltung-en.png|alt=Assignments manager with read confirmation info|center|thumb|750x750px|Assignments manager with read confirmation info]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Read confirmations and page approvals==&lt;br /&gt;
If the approval feature is activated in a namespace at the same time, the read confirmation is triggered when a new draft is created. This [[Reference:BlueSpiceReadConfirmation|can be changed via  server configuration]] so that the read confirmation is required after the draft page has been approved.{{Box Links-en|Topic1=[[Reference:BlueSpiceReadConfirmation]]|Topic2=[[Manual:Extension/BlueSpicePageAssignments|Page assignments]]}}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{translation}}&lt;br /&gt;
[[Category:Quality]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpicePageAssignments&amp;diff=3833</id>
		<title>Manual:Extension/BlueSpicePageAssignments</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Extension/BlueSpicePageAssignments&amp;diff=3833"/>
		<updated>2022-06-30T12:55:36Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Spelling error : assignedto &amp;gt; assigned to&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
{{DISPLAYTITLE:Page assignments}}&lt;br /&gt;
&lt;br /&gt;
With the extension &#039;&#039;&#039;PageAssignments,&#039;&#039;&#039;  users can be assigned to a page. Assigned users can serve as contacts for a page. In addition, assignments can be used to collect [[Manual:Extension/BlueSpiceReadConfirmation|read confirmations]]. If the optional &amp;quot;Secured page assignments&amp;quot; function is activated in a namespace , only assigned users can edit a page.&lt;br /&gt;
&lt;br /&gt;
==What are page assignments?==&lt;br /&gt;
{{#dpl:title=Manual:Quality_management|include=pageassign}}&lt;br /&gt;
&lt;br /&gt;
==Assigning a page==&lt;br /&gt;
&lt;br /&gt;
To assign pages to other users, you need the appropriate rights. These are provided via the roles &#039;&#039;reviewer, admin&#039;&#039; and &#039;&#039;maintenanceadmin&#039;&#039;. Assigned users need to have the role &#039;&#039;editor&#039;&#039; to be able to edit the page they are assigned to. Although users with &#039;&#039;read&#039;&#039; permissions can be assigned to a page, they cannot make changes to the page. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To assign a user or a group to a page:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; on &#039;&#039;Set page assignments&#039;&#039; in the page tools.&lt;br /&gt;
#&#039;&#039;&#039;Type&#039;&#039;&#039; a user or group name in the assignments text box &#039;&#039;Add assignments...&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039; the &#039;&#039;Done&#039;&#039; button.&lt;br /&gt;
#&#039;&#039;&#039;Add&#039;&#039;&#039; more users or groups (optional).[[File:Manual:zuweisung-benutzer-en.png|alt=Assignments dialog window|center|thumb|Assignments dialog window]]&amp;lt;br /&amp;gt;&lt;br /&gt;
==Assignments management==&lt;br /&gt;
Users in the &#039;&#039;reviewer&#039;&#039; role can see a list of all pages that have assignments. This page (&#039;&#039;Special:ManagePageAssignments&#039;&#039;) can be loaded from the navigation menu under &#039;&#039;[[Manual:Extension/BlueSpiceDiscovery|Global actions]] &amp;gt;Management &amp;gt; Assignments.&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:zuweisungen-verwaltung-en.png|alt=Assignments manager|center|thumb|650x650px|Assignments manager]]&lt;br /&gt;
&lt;br /&gt;
=== Possible actions ===&lt;br /&gt;
The following actions are available on this page:&lt;br /&gt;
&lt;br /&gt;
(1) Change assignments&lt;br /&gt;
&lt;br /&gt;
(2) Delete assignments&lt;br /&gt;
&lt;br /&gt;
(3) View assignements log or read confirmations log (if activated)&lt;br /&gt;
&lt;br /&gt;
(4)Request read confirmation (if activated)&lt;br /&gt;
&lt;br /&gt;
== Secured page assignments ==&lt;br /&gt;
In the [[Manual:Extension/BlueSpiceNamespaceManager|namespace manager]] you can  configure that page assignments are secured. If a page is created in such a namespace, the page is only editable for users that are assigned to this page. This means that every new page should be created by a user with r&#039;&#039;eviewer&#039;&#039; or admin &#039;&#039;rights&#039;&#039;, because only these roles have the necessary rights to make the assignment. If a page is created in this namespace by a user with &#039;&#039;edit&#039;&#039; rights, this page cannot be edited further by this user, unless he/she is assigned by a user with the necessary permissions.&lt;br /&gt;
&lt;br /&gt;
==My assignments==&lt;br /&gt;
Users can view their own page assignments by clicking on &amp;quot;Assignments&amp;quot; in their personal menu.&lt;br /&gt;
[[File:Manual:zuweisung-usermenu-en.png|alt=My assignments|center|thumb|650x650px|My assignments]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Box Links-en&lt;br /&gt;
|Topic1=[[Reference:BlueSpicePageAssignments]]|Topic2=[[Manual:Extension/BlueSpiceReadConfirmation|Request read confirmations from assigned users]]}}&lt;br /&gt;
&lt;br /&gt;
{{Translation}}&lt;br /&gt;
[[Category:Quality]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:Creating_and_using_categories&amp;diff=3832</id>
		<title>Manual:Creating and using categories</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:Creating_and_using_categories&amp;diff=3832"/>
		<updated>2022-06-30T12:54:32Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Spelling error : &amp;gt;categoriesto &amp;gt; categories to&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Categories are a feature of MediaWiki. An index page is automatically created for categories.&lt;br /&gt;
&lt;br /&gt;
Pages can be categorized by adding category tags to the content. These tags generate links at the bottom of the page that lead to an overview of all pages in the same category. This allows for easy browsing of related pages.&lt;br /&gt;
&lt;br /&gt;
==How do I use categories?==&lt;br /&gt;
In addition to namespaces, categories are an important organizational principle in the wiki. They allow pages to be grouped and automatically linked to the associated category pages. Categories are usually created by users. In special cases, however, MediaWiki also assigns automatically generated categories (e.g., &#039;&#039;Pages with broken links&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
*&#039;&#039;&#039;Category tree:&#039;&#039;&#039; Categories can be organized as subcategories of main categories.&lt;br /&gt;
*&#039;&#039;&#039;Tagging&#039;&#039;&#039;: Categories can be used to spontaneously &amp;quot;tag&amp;quot; pages.&lt;br /&gt;
*&#039;&#039;&#039;Category manager:&#039;&#039;&#039; Categories can be systematically created and used by all users via the category manager.&lt;br /&gt;
*&#039;&#039;&#039;Multiple categories per page&#039;&#039;&#039;: A page can be assigned to several categories.&lt;br /&gt;
*&#039;&#039;&#039;Independent of namespaces&#039;&#039;&#039;: Categories are available throughout the wiki and cannot be limited to individual namespaces.&lt;br /&gt;
*&#039;&#039;&#039;Page queries: &#039;&#039;&#039;Categories are useful for extensions like [[Manual:Extension/BlueSpiceSmartList|Smartlist]] or Semantic Mediawiki as they are available as query arguments.&lt;br /&gt;
&lt;br /&gt;
==Assigning categories to a page==&lt;br /&gt;
&amp;lt;div class=&amp;quot;training user&amp;quot;&amp;gt;There are different ways to assign a page to categories:&lt;br /&gt;
&lt;br /&gt;
#In the [[Manual:Extension/BlueSpiceDiscovery#Supplementary area|Supplementary area]] at the end of the page&lt;br /&gt;
#From the options menu of [[Manual:Extension/VisualEditor|VisualEditor]] (Visual Editing)&lt;br /&gt;
#Via manual input as [[Manual:Wikitext|wikitext]] (source code editing)&lt;br /&gt;
#Using the link &#039;&#039;[[Manual:Extension/BlueSpiceDiscovery#Page tools|Page tools &amp;gt; ...all actions &amp;gt; Insert category]]&#039;&#039;&amp;lt;/div&amp;gt;&amp;lt;gallery widths=&amp;quot;200&amp;quot; heights=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
File:Manual:Category - footer.png|alt=Supplemental area|Supplemental area&lt;br /&gt;
File:Manual:Category - VE.PNG|alt=Visual editor|Visual editor&lt;br /&gt;
File:Manual:Category - wikitext.png|alt=Wikitext|Wikitext&lt;br /&gt;
File:Manual:Category - all actions.png|alt=Link &amp;quot;...all actions&amp;quot;|Link &amp;quot;...all actions&amp;quot;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===In the supplementary area at the bottom of the page===&lt;br /&gt;
The supplement area contains a field for category assignment. Any user with edit rights can click the edit link to add or remove categories from the page. To view all existing categories with subcategories, you can click on the tree icon. Once done, the categories will be confirmed with the tick.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
===In the visual editor (VisualEditor)===&lt;br /&gt;
In the page options menu of [[Manual:Extension/VisualEditor|VisualEditor]] there is a menu item Categories. Here you can update category assignments to the page in edit mode, as well as add a sort key to the category.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Manual:Category - VE.PNG|alt=Options menu in the visual editor|center|thumb|Options menu in the visual editor]]&lt;br /&gt;
&lt;br /&gt;
===In wikitext===&lt;br /&gt;
Open an article that you want to assign to a category in edit mode. Now enter the following anywhere in the wiki code (usually at the end of the page though):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
[[Category:Production]]&lt;br /&gt;
or&lt;br /&gt;
[[Category:Production]]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Messagebox|boxtype=note|icon=|Note text=On category pages, umlauts are listed at the end of the list, e.g. &amp;quot;Märchen&amp;quot; after &amp;quot;Muh&amp;quot;. You can use the &amp;lt;nowiki&amp;gt;{{DEFAULTSORT:sortkey}}&amp;lt;/nowiki&amp;gt; variable to create an alternative title for the sort (e.g. &amp;lt;nowiki&amp;gt;{{DEFAULTSORT:Maerchen}}&amp;lt;/nowiki&amp;gt;).|bgcolor=}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It is true that:&lt;br /&gt;
&lt;br /&gt;
:*categories can be created in any number and by any user. So before you just get started, it&#039;s always best to check which categories already exist to avoid unnecessary duplication of similar categories.&lt;br /&gt;
:*a page can be assigned to several categories.&lt;br /&gt;
:*the place in the source code where the category link is inserted is technically irrelevant. However, the convention is to include categories &#039;&#039;&#039;at the end of an article.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Links to category pages==&lt;br /&gt;
For links directly to a category page, a colon is required before the namespace.&lt;br /&gt;
&lt;br /&gt;
Example: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[:Category: new_page]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the colon is missing, the link will not be created, but the page will be tagged with the category instead.&lt;br /&gt;
==Category pages==&lt;br /&gt;
When users click a category link, the &#039;&#039;Category:&amp;lt;Category_Name&amp;gt;&#039;&#039; page loads. All pages and media that are assigned to a specific category are automatically listed there.&lt;br /&gt;
&lt;br /&gt;
If you click on a category page that has not yet been created - linked in red - you have the option of creating the category page.&lt;br /&gt;
==Show all category pages ==&lt;br /&gt;
On the special page &amp;lt;code&amp;gt;Special:Categories&amp;lt;/code&amp;gt; you can view a list of all existing categories in the wiki. Click on a category to go to the corresponding category page. If a page in the listing has a red background, the category is in use in the wiki, but the associated category page has not yet been created.&lt;br /&gt;
==Category manager==&lt;br /&gt;
The easiest way to manage categories and subcategories is through the &#039;&#039;Special:Category manager&#039;&#039; page. The [[Manual:Extension/BlueSpiceCategoryManager|Category manager]] can be reached via the menu item &#039;&#039;Global Actions &amp;gt; Management &amp;gt; Categories&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{{Box_Links-en | Topic1 = [[Manual:Extension/BlueSpiceCategoryManager|Category manager]] | &lt;br /&gt;
Topic2 =[https://www.mediawiki.org/wiki/Help:Categories https://www.mediawiki.org/wiki/Help:Categories]}}&lt;br /&gt;
&lt;br /&gt;
[[en:{{FULLPAGENAME}}]]&lt;br /&gt;
[[de:Handbuch:Kategorien erstellen und nutzen]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Concept]]&lt;br /&gt;
[[Category:Organization]]&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=Manual:The_concept_of_namespaces&amp;diff=3831</id>
		<title>Manual:The concept of namespaces</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=Manual:The_concept_of_namespaces&amp;diff=3831"/>
		<updated>2022-06-30T12:53:22Z</updated>

		<summary type="html">&lt;p&gt;Hslater: Spelling error : mainenanceadmin &amp;gt; maintenanceadmin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;bookshelf src=&amp;quot;Book:User manual&amp;quot; /&amp;gt;&lt;br /&gt;
==What is a namespace?==&lt;br /&gt;
[[File:Manual:Namespace-ev.png|300x300px|link=https://youtu.be/CITmttQcsjg|Explainer video on Youtube: Namespaces (Length: 4:33 nin.)|thumb|alt=explainer video intro screen]]A &#039;&#039;&#039;namespace&#039;&#039;&#039; defines an area in a wiki. You can recognize a namespace by the namespace prefix in the page title:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;namespace&amp;gt;:Page title&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We sometimes use shelves and closets as an example to make the principle of namespaces clear. There are shelves that everyone can access. Then there are glass cabinets with locks that everyone can look into, but not everyone can edit everything. There are also closed wooden cabinets with a lock, so only selected people can look into that space and work. And every closet can look different.&lt;br /&gt;
&lt;br /&gt;
In a wiki, you will find predefined namespaces. In addition, wiki administrators can create custom namespaces as needed.&lt;br /&gt;
&lt;br /&gt;
There are certain aspects of namespaces that are important to consider before creating a namespace. It is therefore important to understand the characteristics of namespaces and the reasons for using a custom namespace.&lt;br /&gt;
===Characteristics of a namespace===&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Rights management&#039;&#039;&#039;: Each namespace can contain its own user rights/roles assignments. However, we recommend flat user hierarchies for wikis.&lt;br /&gt;
*&#039;&#039;&#039;Activation of features:&#039;&#039;&#039; Different functions can be activated in each namespace (e.g., page approvals or read confirmations).&lt;br /&gt;
*&#039;&#039;&#039;Search function&#039;&#039;&#039;: Search can be limited to individual namespaces (namespace filter).&lt;br /&gt;
*&#039;&#039;&#039;One namespace per page&#039;&#039;&#039;: The same page name in a different namespace creates a new page.&lt;br /&gt;
*&#039;&#039;&#039;Flat structure&#039;&#039;&#039;:Namespaces cannot contain other namespaces.&lt;br /&gt;
*&#039;&#039;&#039;File associations:&#039;&#039;&#039; Uploaded files can be assigned to a namespace to apply namespace permissions to files.&lt;br /&gt;
*&#039;&#039;&#039;Design&#039;&#039;&#039;: Namespaces can be styled differently.&lt;br /&gt;
==BlueSpice standard namespaces==&lt;br /&gt;
BlueSpice uses, among others, the 15 standard and the two so-called pseudo namespaces from MediaWiki:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable tablefullwidth&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!ID&lt;br /&gt;
!|&#039;&#039;&#039;Namespace&#039;&#039;&#039;&lt;br /&gt;
! |&#039;&#039;&#039;Function&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
||Media&lt;br /&gt;
||Pseudo-namespace for uploaded images and files. Will be replaced by path of the files.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
||special&lt;br /&gt;
||Pseudo-namespace for special pages.&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
||(pages)&lt;br /&gt;
||These are given without a prefix.&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
||Talk&lt;br /&gt;
||talk page. Is created in addition to each article (also in the following namespaces) to speak about its contents. Additional tab (+).&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
||User&lt;br /&gt;
||User page. Will be created for every logged in user.&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
||User talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
||[Wiki-Name]&lt;br /&gt;
||Information about the wiki or the current project. Here: BlueSpice.&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
||[Wiki-Name]_Talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
||Image&lt;br /&gt;
||Description of a picture and other files. Is automatically supplemented with version information and information about the occurrence of the file&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
||File_Talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
||MediaWiki&lt;br /&gt;
||system messages. A complete list can be found under Special: AllMessages. Can only be changed by registered users.&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
||MediaWiki_Talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
||Template&lt;br /&gt;
||Templates can be integrated into other pages.&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
||Template_talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
||Help&lt;br /&gt;
||Help pages describe how to perform actions in the wiki. No clear separation from the [wiki name] namespace.&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
||Help_talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
||Category&lt;br /&gt;
||Pages can be assigned to categories, which are then accessible in this namespace.&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
||Category_talk&lt;br /&gt;
||Cf. talk&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Standard namespace:&#039;&#039;&#039; A page is assigned to the &amp;quot;Main&amp;quot; namespace, as long as no other namespace is specified.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pseudo namespaces:&#039;&#039;&#039; The two pseudo namespaces (Media, Special) are used like normal namespaces, but you cannot edit them or add pages to them.&lt;br /&gt;
&lt;br /&gt;
Most pages in the namespaces are created automatically:&lt;br /&gt;
*Special pages are generated by the system during installation.&lt;br /&gt;
*Media and image pages are created during file uplad.&lt;br /&gt;
*User pages are created whenever a user acts on the wiki.&lt;br /&gt;
*Discussion pages are also created with the corresponding pages.&lt;br /&gt;
This leaves only the default namespaces &#039;&#039;(Main)&#039;&#039;, &#039;&#039;[wiki name]&#039;&#039;, &#039;&#039;Template&#039;&#039;, &#039;&#039;Help&#039;&#039; and &#039;&#039;Category&#039;&#039; namespaces where pages can be freely created. &lt;br /&gt;
&lt;br /&gt;
== Creating a new namespace ==&lt;br /&gt;
You can create additional namespaces by using the Namespace manager under Global actions &amp;gt; Management &amp;gt; [[Manual:Extension/BlueSpiceNamespaceManager|Namespace manager]]. The menu item &amp;quot;Category manager&amp;quot; loads the page &amp;lt;code&amp;gt;Special:NamespaceManager&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Namespace &amp;quot;MediaWiki&amp;quot; ==&lt;br /&gt;
Pages in the MediaWiki namespace can be created and edited by users with &amp;quot;editinterface&amp;quot; permission. By default, these are users whose group is assigned the &#039;&#039;structuremanager, admin,&#039;&#039; or &#039;&#039;maintenanceadmin&#039;&#039; role.&lt;br /&gt;
&lt;br /&gt;
Important uses are:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;System Messages:&#039;&#039;&#039; Each message has a wiki page with the message key as the name of the page. A list of all announcement pages can be found on Special:AllAnnouncements. &lt;br /&gt;
* &#039;&#039;&#039;Localizations via &#039;&#039;&amp;lt;nowiki&amp;gt;{{int:messagname}}&amp;lt;/nowiki&amp;gt;&#039;&#039;:&#039;&#039;&#039; An element of the user interface or within a wiki page can be translated into the user language via . Syntax: &#039;&#039;Mediawiki:message name/ISO language code&#039;&#039;. &lt;br /&gt;
* &#039;&#039;&#039;MediaWiki:Common.js&#039;&#039;&#039;: Contains JavaScript that is loaded for all pages and users. &lt;br /&gt;
* &#039;&#039;&#039;MediaWiki:Common.css&#039;&#039;&#039;: Stylesheet that is loaded after the stylesheet of the active skin in the wiki. It applies to all wiki pages.&lt;br /&gt;
&lt;br /&gt;
==Accessing pages in a namespace==&lt;br /&gt;
To access or create a page in a specific namespace, its name is simply placed in front of the page title and separated by a colon:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Setup:Installation|]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the example, the pipe symbol (straight line) was also added. It has the effect that the namespace won&#039;t be displayed for the link label.&lt;br /&gt;
&lt;br /&gt;
If you provide a namespace that is not known to the wiki, the page is created in the standard namespace Main. The portion of the reference specified as the namespace is then added to the title of the item instead and is not recognized as a namespace label.&lt;br /&gt;
&lt;br /&gt;
==Organizing content without namespaces==&lt;br /&gt;
If you simply want to group pages in your wiki without the need for controlling access rights, you can use the syntax of the namespaces to  &#039;&#039;&#039;simulate a namespace in the namespace Main&#039;&#039;&#039;. Simply prefix the pages that belong to a group with a name and a colon. If no namespace with this name exists, the prefix simply becomes part of the page name.&lt;br /&gt;
&lt;br /&gt;
That way, it is possible to use pages with the same name in the main namespace and thus let different groups work on content &amp;quot;sets&amp;quot;. Since these own &amp;quot;namespace&amp;quot; prefixes are part of the page name, you can now display all pages in a simulated namespace by searching for the prefix in the search field.&lt;br /&gt;
&lt;br /&gt;
Since you can also organize pages with categories and subpages, you should start by planning how you would like to organize the content in your wiki.&lt;br /&gt;
&lt;br /&gt;
After installing your wiki, you can visualize this with the BlueSpice draw.io Plugin directly in your wiki and discuss it with your team.&lt;br /&gt;
==Viewing all pages of a namespace==&lt;br /&gt;
You can view all pages in a namespace:&lt;br /&gt;
#&#039;&#039;&#039;Go&#039;&#039;&#039; to the Special page &amp;quot;All Pages&amp;quot;&lt;br /&gt;
#&#039;&#039;&#039;Leave&#039;&#039;&#039; the input field empty&lt;br /&gt;
#&#039;&#039;&#039;Select&#039;&#039;&#039; a namespace from the Namespace drop-down menu&lt;br /&gt;
#&#039;&#039;&#039;Click&#039;&#039;&#039;  &#039;&#039;Go&#039;&#039;&lt;br /&gt;
{{Box_Links-en &lt;br /&gt;
|Topic1 =[[Manual:Extension/BlueSpiceNamespaceCSS|Namespace CSS manager]] &lt;br /&gt;
|Topic2 =[[Manual:Extension/BlueSpiceNamespaceManager|Namespace manager]]}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
	<entry>
		<id>https://en.wiki4.bluespice.com/w/index.php?title=User:Hslater&amp;diff=3826</id>
		<title>User:Hslater</title>
		<link rel="alternate" type="text/html" href="https://en.wiki4.bluespice.com/w/index.php?title=User:Hslater&amp;diff=3826"/>
		<updated>2022-06-28T13:03:01Z</updated>

		<summary type="html">&lt;p&gt;Hslater: create user page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Userpage standard content}}&lt;/div&gt;</summary>
		<author><name>Hslater</name></author>
	</entry>
</feed>