No edit summary Tag: 2017 source edit |
No edit summary Tag: 2017 source edit |
||
Line 5: | Line 5: | ||
|cdescription= Admin users might see a yellow banner indicating that some privacy pages need to be created even if they have been created for the footer links of the wiki. | |cdescription= Admin users might see a yellow banner indicating that some privacy pages need to be created even if they have been created for the footer links of the wiki. | ||
|chelp=}} | |chelp=}} | ||
{{Collapsible|cheader=Missing language switcher on pages where the title area is hidden | {{Collapsible|cheader=Missing language switcher on pages where the title area is hidden | ||
|cdescription= Since the language switcher is now located in the title area of wiki pages, pages that use the option <code><nowiki>__HIDETITLE__</nowiki></code> currently cannot show the language switcher. | |cdescription= Since the language switcher is now located in the title area of wiki pages, pages that use the option <code><nowiki>__HIDETITLE__</nowiki></code> currently cannot show the language switcher. | ||
|chelp=}} | |chelp=}} | ||
{{Collapsible|cheader=Styles that are defined in templates or in ''MediaWiki:Common.css'' might no longer be applied | {{Collapsible|cheader=Styles that are defined in templates or in ''MediaWiki:Common.css'' might no longer be applied | ||
|cdescription= Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly. | |cdescription= Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly. | ||
|chelp=In MediaWiki:Common.css, the styles in question need to be prepended with the selector <code>#mw-content-text</code>. Templates that rely on TemplateStyles need to add a wrapper container with its own ID. This ID needs to be prepended to the existing selector. The selector <code>#mw-content-text</code> will not work in that case.}} | |chelp=In MediaWiki:Common.css, the styles in question need to be prepended with the selector <code>#mw-content-text</code>. Templates that rely on TemplateStyles need to add a wrapper container with its own ID. This ID needs to be prepended to the existing selector. The selector <code>#mw-content-text</code> will not work in that case.}} | ||
{{Collapsible|cheader=Some wikis might experience styling inconsistencies for the newly added startpage templates | {{Collapsible|cheader=Some wikis might experience styling inconsistencies for the newly added startpage templates | ||
|cdescription= If a wiki is already using some templates that are included in the new startpage templates (e.g. Image cards), these templates are not overwritten during the upgrade to BlueSpice 4.3. | |cdescription= If a wiki is already using some templates that are included in the new startpage templates (e.g. Image cards), these templates are not overwritten during the upgrade to BlueSpice 4.3. | ||
|chelp=Any styling issues of any affected templates need to be adjusted manually.}} | |chelp=Any styling issues of any affected templates need to be adjusted manually.}} | ||
== BlueSpice 4.2 == | == BlueSpice 4.2 == | ||
{{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load | {{Collapsible|cheader=The filter on special pages (e.g., "Recent changes") fails to load {{Bsvs|bsvFrom=|bsvTo=4.2.6|bsvFeature=}} | ||
|cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading. | |cdescription= In some cases, the page ''Special:RecentChanges'' does not finish loading. | ||
|chelp=You can add the following script to ''MediaWiki:Common.js'': | |chelp=You can add the following script to ''MediaWiki:Common.js'': |
Revision as of 11:52, 28 June 2023
BlueSpice 4.3
A BlueSpicePrivacy banner is shown to admin users +
Description: Admin users might see a yellow banner indicating that some privacy pages need to be created even if they have been created for the footer links of the wiki.
Description: Since the language switcher is now located in the title area of wiki pages, pages that use the option __HIDETITLE__
currently cannot show the language switcher.
Styles that are defined in templates or in MediaWiki:Common.css might no longer be applied +
Description: Because of necessary forward-compatibility changes in the Discovery-skin, some templates might have to be manually updated to show certain styles correctly.
Help: In MediaWiki:Common.css, the styles in question need to be prepended with the selector #mw-content-text
. Templates that rely on TemplateStyles need to add a wrapper container with its own ID. This ID needs to be prepended to the existing selector. The selector #mw-content-text
will not work in that case.
Some wikis might experience styling inconsistencies for the newly added startpage templates +
Description: If a wiki is already using some templates that are included in the new startpage templates (e.g. Image cards), these templates are not overwritten during the upgrade to BlueSpice 4.3.
Help: Any styling issues of any affected templates need to be adjusted manually.
BlueSpice 4.2
The filter on special pages (e.g., "Recent changes") fails to load -v4.2.6 +
Description: In some cases, the page Special:RecentChanges does not finish loading.
Help: You can add the following script to MediaWiki:Common.js:
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}