% cd /lib/tpl/
% git clone https://github.com/samfisch/dokuwiki-template-arctic.git arctic
**Debian install (or probably any other distribution):**
% cd /usr/share/dokuwiki/lib/tpl/
% wget http://m3.notomorrow.de/public/repos/dokuwiki/tpl/template-arctic-stable.tgz
% tar xzvf template-arctic-stable.tgz
===== Configuration =====
The template can be widely configured via the configuration manager. These are the available options (reflecting the ones of the latest release):
^ Option ^ Value(s) ^
| Sidebar setup | left/right/both/none |
| Pagename to use for sidebars | defaults to ''sidebar'' |
| Trace | show trace on top |
| Main sidebar always | show main sidebar in every namespace (default) |
| Actionlink style | buttons/links |
| Namespace for group sidebars | defaults to ''group'' |
| Namespace for user sidebars | defaults to ''user'' |
| Left sidebar order | comma separated list of sidebars (all sidebars defined in the content section not listed here will show up after the one you specify here in no particular order) |
| Content of the left sidebar | multicheckbox to select the different [[.:arctic#sidebar types|sidebar types]] which should be active inside the left sidebar |
| Right sidebar order | comma separated list of sidebars (all sidebars defined in the content section not listed here will show up after the one you specify here in no particular order) |
| Content of the right sidebar | multicheckbox to select the different [[.:arctic#sidebar types|sidebar types]] which should be active inside the right sidebar |
| Position of the search field (only applies if both sidebars are used) | left/right |
| Closed Wiki | hide all sidebars regardless of their ACLs and show login button to not logged in users |
| Hide Actions | hide all actions to non logged in users (this makes sense if you have a read only wiki). The login form is only available by appending ?do=login to the URL |
===== Sidebar Types =====
These are the different sidebar types.
^ Type ^ Description ^
| main | see [[.:arctic#adding the main sidebar|main sidebar]] |
| user | see [[.:arctic#adding a user sidebar|user sidebar]] |
| group | see [[.:arctic#adding a group sidebar|group sidebar]] |
| namespace | see [[.:arctic#adding a namespace sidebar|namespace sidebar]] |
| index | shows the DokuWiki index |
| toc | shows the TOC of the current page inside the sidebar instead of in the page itself |
| trace | shows the trace |
| toolbox | shows the set of "action links" (login, edit, index, etc.) inside the sidebar, instead of their default location in horizontal toolbars above and below the page |
| extra | There are 2 new files inside ''
- add "helloworld" to the list of comma separated sidebars in the configuration manager.
Here's a list of other [[.:arctic#custom sidebar examples]].
===== Custom Sidebar Examples =====
Here are some more examples of custom sidebars for the arctic template.
**Feel free to contribute, just post your custom sidebars to this page ;-)!**
==== Current ID ====
FIXME
How can I get current id highlighting to work? I copied the following into arctic_layout.css and layout.css in the arctic template folder, but it didn't work.
''/* ---- Current ID highlighting ---- */\\
.curid {\\
font-weight: bold;\\
}''
==== Donation Cloud Sidebar ====
FIXME
Here it's an example for WordPress
[[http://www.zirona.com/software/wordpress-donations-cloud/|Donation cloud]]
I'm interested in integrating this into my arctic template.
==== Backlinks ====
Shows the backlinks to the current viewed page. You have to add "backlinks" to the comma separated list of other sidebars in the arctic template settings.
''/lib/tpl/arctic/sidebars/backlinks/sidebar.php''
==== Cloud Plugin ====
For the [[plugin:cloud|Cloud Plugin]] you can use the following snippet:
''/lib/tpl/arctic/sidebars/cloud/sidebar.php''
==== Site TOC ====
Creates a site wide TOC and highlights the current page in it.
Open and closed folders and files can have different CSS-symbols once I have
figured out where to put the CSS :-)
''/lib/tpl/arctic/sidebars/sitetoc/sidebar.php''
0){
// Determine Page Title from first heading
$firstHeading = p_get_first_heading($startPageID);
if($conf['useheading'] && !empty($firstHeading)){
$linkName = $firstHeading;
}else{
$linkName = $startPageName;
}
// echo "" . $conf['useheading'] ."";
tpl_pageLinkCreate($startPageID, $linkName, "tpl_processStartPage:$context");
}
}
}
function tpl_pageLinkCreate($fileToLinkID, $linkName, $calledFrom) {
global $ID;
echo "";
if($fileToLinkID == $ID){
// highlight current page
echo "";
}
if($_REQUEST["do"] == "admin" && $_REQUEST["page"] == "acl"){
$path = wl($fileToLinkID, "do=admin&page=acl");
}else{
$path = wl($fileToLinkID);
}
// echo "$fileToLinkID, $linkName, $calledFrom";
tpl_link($path,$linkName);
if($fileToLinkID == $ID){
// current page
echo "";
}
}
function tpl_list_folder($dataList, $findAndProcessStartpage){
global $conf;
global $ID;
global $INFO;
require_once(DOKU_INC.'inc/auth.php');
$currentLevel = 1;
$pathinfo = pathinfo($_SERVER['REQUEST_URI']);
$url = $pathinfo['dirname'];
echo "\n";
tpl_processStartPage("","tof");
for($i=0; $i 0){
// don't show start page in normal order
if (noNS($dataList[$i]["id"]) != $conf['start']) {
// FIXME not sure if this is actually needed
// Could we not use noNS($dataList[$i]["id"]) instead???
$pageFileName = split(":", $dataList[$i]["id"]);
$pageFileName = $pageFileName[count($pageFileName) - 1];
$pageFileName = str_replace("_", " ", $pageFileName);
// Determine Page Title from first heading
$firstHeading = p_get_first_heading($dataList[$i]["id"]);
if($conf['useheading'] && $dataList[$i]["type"] == "f" && !empty($firstHeading)){
$linkName = $firstHeading;
}else{
$linkName = $pageFileName;
}
// Adjust the level. If level of page is higher than current level
// close list-item and list
// FIXME: Why is this needed when the same happens down below?
if($currentLevel > $dataList[$i]["level"]){
echo str_repeat("
\n", $currentLevel - $dataList[$i]["level"]);
$currentLevel = $dataList[$i]["level"];
}
// if entry is a folder
if($dataList[$i]["type"] == "d"){
if($dataList[$i]["open"]){
echo "";
}else{
echo " ";
}
if($_REQUEST["do"] == "admin" && $_REQUEST["page"] == "acl"){
$path = wl($dataList[$i]["id"].":".$conf['start'], "do=admin&page=acl");
}else{
$path = wl($dataList[$i]["id"].":".$conf['start']);
}
// echo "Path: $path, LinkName: $linkName
";
tpl_link($path,$linkName);
}else{
// entry is a file
// echo "Path: $path, LinkName: $linkName, id: ". $dataList[$i]["id"] . "
";
tpl_pageLinkCreate ($dataList[$i]["id"], $linkName, "direkt:tpl_list_folder" );
}
if($dataList[$i+1]["level"] == $currentLevel){
// current folder (just close list-item)
echo " \n";
}else if($dataList[$i+1]["level"] > $currentLevel){
// new sub-folder (start new sub-list)
echo "\n";
// Check if a start page exists and add it first
tpl_processStartPage($dataList[$i]["id"],"");
}else if($dataList[$i+1]["level"] < $currentLevel){
// end of sub-folder (close open sublists)
if(!empty($dataList[$i+1]["level"])){
echo str_repeat("
\n", $currentLevel - $dataList[$i+1]["level"]);
}
}
$currentLevel = $dataList[$i+1]["level"];
}
}
}
echo "\n";
}
global $ID;
global $ACT;
global $conf;
$folder = getNS($ID);
require_once(DOKU_INC.'inc/search.php');
require_once(DOKU_INC.'inc/html.php');
$ns = cleanID($ID);
if(empty($ns)){
$ns = dirname(str_replace(':','/',$ID));
if($ns == '.') $ns ='';
}
$ns = utf8_encodeFN(str_replace(':','/',$ns));
$list = array();
search($list,$conf['datadir'],'search_index',array('ns' => $ns));
tpl_list_folder($list,true);
?>
Have fun,
Ferdinand
==== Twitter Feed ====
This displays the latest tweets from a given Twitter account (presumably yours). Adjust the variables and CSS to suit your needs. (Shamelessly ripped from the twitter.com/widgets service.)
''/lib/tpl/arctic/sidebars/twitter/sidebar.php''
==== Clock Sidebar ====
If you have installed the [[plugin:clock|Clock Plugin]], you can enable it as a sidebar for your wiki installation. Just create the adequate file for the sidebar to work:
''/lib/tpl/arctic/sidebars/clock/sidebar.php''
The ''substr'' operation is necessary to ensure that DokuWiki generates XHTML-compliant code: the output of the clock plugin is encased in a ''
Bookmark
array('link' => 'http://del.icio.us/post?title=%title%&url=%link%', 'image' => 'delicious.png'),
'Digg' => array('link' => 'http://digg.com/submit?phase=2&title=%title%&url=%link%', 'image' => 'digg.png'),
'Facebook' => array('link' => 'http://www.facebook.com/sharer.php?u=%link%&t=%title%', 'image' => 'facebook.png'),
'Twitter' => array('link' => 'http://twitter.com/home?status=%title%:%link%', 'image' => 'twitter.png'),
'Google' => array('link' => 'http://www.google.com/bookmarks/mark?op=add&title=%title%&bkmk=%link%', 'image' => 'google.png'),
'Google Buzz' => array('link' => 'http://www.google.com/buzz/post?url=%link%&message=%title%', 'image' => 'buzz.png'),
'Stumbleupon' => array('link' => 'http://www.stumbleupon.com/submit?url=%link%&title=%title%', 'image' => 'stumble.png')
);
$title = rawurlencode(p_get_metadata($ID, "title")." [".strip_tags($conf['title'])."]");
$link = rawurlencode(wl($ID,'',true));
$before = array("%title%", "%link%");
$after = array($title, $link);
foreach ($bookmarks as $key => $value)
{
$url = str_replace ($before, $after, $value["link"]);
$image = DOKU_TPL."images/".$value["image"];
$text = "Bookmark to ".$key;
?>
You can use free icons from http://nouveller.deviantart.com/art/Social-Media-Bookmark-Icon-125995730.
Source : [[http://blog.slucas.fr/en/oss/dokuwiki-arctic-sidebar|here]]
==== Translation ====
you need to install the [[plugin:translation]] plugin,
place following code in a translation directory in the sidebars directory,
:!: Looks like you haven't created the main sidebar yet. Do it now by creating the following page: LINK
Once you've created the page, just add an unordered list of links to create the navigation i.e.:
* [[link 1]]
* [[link 2]]
* [[link 3]]
You can also use one of the many available index [[doku>plugins]].
For further information about sidebars refer to the template [[doku>template:arctic#first steps|documenation]].
===== Credits/Thanks =====
Some of the Ideas are taken from the other great [[:templates|DokuWiki templates]]. Furthermore a big "**Thank you!**" to the great DokuWiki team for your very good looking and well structured default template and this cool Wiki!
===== Sites using this Template =====
Add yours here:
* [[http://www.freemedforms.org|FreeMedForms, Free open source medical software]]. Theme is slightly modified.
* [[http://bibliopedia.ptcvic.org]] -- great template. Shame someone doesn't write a decent add new page plugin.
* [[http://freenaswiki.ru/|FreeNAS Wiki.ru]] -- A website about [[http://www.freenas.org/|FreeNAS]] Server (almost completely written in Russian)
* [[http://www.quantum-measurement-and-control.org/|Quantum Measurement and Control]] -- A website about a book on quantum measurement and quantum feedback control, many thanks for the template.
* [[http://neuroanalysis.org/wiki/|STAToolkit Wiki]] -- Our sincerest appreciation for a wonderful template!
* [[http://thecoffeespoon.net/battlestations/]] - MWBS Wiki
* [[http://www.howcanibuild.com]] -- Great info to customize AdSense ads
* [[http://www.luizgustavo.pro.br]] -- The best of template for DokuWiki
* [[http://blobseer.gforge.inria.fr]]
* [[http://samuele.netsons.org]]
* [[http://www.gregow.se]]
* [[http://izotretin.pl/wiki|Polish wiki about Accutane (isotretinoin)]]
* [[http://www.shambhala-toulouse.fr]] -- thanks you for your great template ^_^
* [[http://www.bridgeclub-grunewald.de/]] -- Etwas Bastelarbeit war nötig. Aber ^_^
* [[http://www.gerion.pl/dokuwiki/doku.php]] -- polish site of RPG fans (Earthdawn)
* [[http://www.rollberg.de|Der Rollberg]] -- Eine Webseite über den Neuköllner Norden
* [[http://cdli.ucla.edu/wiki/|CDLI-Wiki]] -- Cuneiform Digital Library Initiative, University of California, Los Angeles
* [[http://www.hodique.info/]], personal and professional website of Yann Hodique
* [[http://www.chennaibus.info]] -- A website on complete information on an Indian City, Chennai - Bus Routes on web and mobile.
* [[http://www.chennaitrain.info]] -- A website on complete information on an Indian City, Chennai - Train Timings on web and mobile.
* [[http://www.TheFreyers.net]] -- personal and professional website of Chris Freyer
* [[http://Zlotnik.ScienceOnTheWeb.Net]] -- prof. Alexander Zlotnik's homepage (mostly in Russian)
* [[http://tooyi.net/noki/|wiki.tooyi.net]] --中国(简体)信长之野望online百科
* [[http://informatica.temuco.udelmar.cl/~lmachuca/dokuwiki-lucho/]] -- my website, development of plugins for DokuWiki, and some personal stuff.
* [[http://www.seirios.org/~seirios/dokuwiki/]] -- Web site of "ほほほのほ" for Technical and other memos Wiki in Japan.
* [[http://www.envirolaw.org.au/]]
* [[http://complex.if.uff.br|Complex Systems]] - Complex Systems Research Group website, Universidade Federal Fluminense, Niterói, Brazil
* [[http://folkipedia.org|Folkipedia]] - Folk and Tradition Wiki
* [[http://www.pythongamebook.com]] - Book about python game programming
* [[http://wiki.nagios-fr.org]] -- Nagios French Community Wiki
* [[http://www.xj3.nl/dokuwiki|www.xj3.nl]] - small cooperation of engineers
* [[http://www.spielend-programmieren.at]] - Game programming courses for young people, Vienna, Austria
* [[http://www.madesimple.de/inkasso-kochbuch]] - Das Inkasso-Kochbuch der Anwaltskanzlei Lueneberg.
* [[http://www.mgv-hochmoessingen.de/]] - Homepage of a choral society - **THX to Che** this is a very good template for CMS
* [[http://wiki.mausebande.com]] - German wiki about mice
* [[http://doctoryoo.pe.kr]] - Korean wiki, modified.
* [[http://openwrt.pl]] - Polish Wiki about OpenWrt Project
* [[http://www.unipoly.ch]] - Student Association for Sustainable Development
* [[http://bash-hackers.org/wiki]] - Wiki about the GNU Bash shell. Relatively simple/plain configuration of the Arctic template
* [[http://www.yake.org]] - Project site for the cross-platform game/simulation engine
* [[http://www.wurzelwerkerinnen.at]] - Dear Michael, Thx for your work !!! Wonna buy y one ore more coffees ;-)
* [[http://wiki.vehtoh.de]] - a semi-private, outsourced Brain (powerd by Dokuwiki and your great (little bit modified) template ;), feel free to contact me for the coffee!!!
* [[http://weidewiki.org]] - Das Portal rund um Weideprodukte in Deutschland, Luxemburg, Österreich und der Schweiz bedankt sich für das Template!
* [[http://wiki.miiconsola.com]] - MiiConsola Wiki (Spanish). Videogames, consoles, tournaments, etc.
* [[http://baum.petermansfeld.de]] - Hugo Baum - eine Biographie
* [[http://qcake.unkompliziert.org]] - QCake, the Game Maker - 3d software
* [[http://trow.cc/wiki/]] - T.R.O.W. Wiki(简体中文) -
or
and insert the AdSense code before the closing div. If you want AdSense to show up in the ''footer'' just insert the required lines into ''
div.dokuwiki .header {
background:url(lib/tpl/arctic/images/[name-of-your-image]) no-repeat;
}
Then edit ''
div.dokuwiki div.left_sidebar {
background: url('lib/tpl/arctic/images/filename.png') no-repeat;
padding-top: [height of your logo in px]px;
}
==== How to hide empty namespaces from the sidebar index? ====
You can use for example the [[plugin:navi|navi]] plugin in a sidebar as an alternative to the default index.
==== How to make the height of the page bigger by default (not IE compatible)? ====
To get a bigger main page by default, you need to edit your ''
div.dokuwiki div.left_sidebar,
div.dokuwiki div.right_sidebar {
min-height: 350px;
}
Of course, you can change the ''min-height'' property to whatever you want.
==== How to change the search button to an image? ====
Here's a little CSS trick. You may have to play with the padding value a bit, it just moves the text away from the image - and you have to choose the color value to be of the same as your background in order to make the text //disappear//. In your ''
div.dokuwiki form#dw__search input.button {
border: none;
background: url(images/search.png) no-repeat;
padding-left: 50px;
color: #fff;
width: 25px;
}
==== The editing toolbar is missing, what can I do? ====
See [[faq:toolbar]].
==== How to put a logo in a sidebar? ====
Just put your logo in ''
div.dokuwiki div.left_sidebar {
background: url(lib/tpl/arctic/images/filename.[jpg|png]) no-repeat;
padding-top: [height of your logo in px]px;
}
==== How to change the width of the search field? ====
You can set the width by adding the following CSS to your ''
div.dokuwiki #qsearch__in {
width: [width]px;
}
The code up above is not working for me. This code works for me:
div.dokuwiki div.left_sidebar form#dw__search input.edit, div.dokuwiki div.right_sidebar form#dw__search input.edit {
margin-left: 0;
font-size: 100%;
width: 80%;
}
==== How to reference images in a custom sidebar? ====
It depends on if you use URL rewriting or not (following code is untested but //should// work). If you want absolute links replace ''DOKU_BASE'' with ''DOKU_URL'':
// your image ID
$IMG_ID = 'namespace:image.jpg';
$w = '100'; //width
$h = '100'; //height
// with URL rewriting
print '
';
// without URL rewriting
print '
';
==== How to quickly make it Smartphone ready ====
--- [[user>cornmaster]] //2010/11/09 14:13//
==== Overflow:hidden in sidebar for IE 6 ====
I had to add "overflow:hidden" to "div.dokuwiki div.left_sidebar", because otherwise long entries in indexmenu Plugin would cause the main area to break and appear under the sidebar when using IE 6.
Thanks for the great template!
>This solution leads to a scrambled layout as the DIV section with the indexmenu has no right border any more..
>Is there anything to do in the .css so that IE accepts the width of the DIV instead of making it wider?
>//[[michi1409@gmx.de|phoenix]]//
==== Fixed width Sidebar ====
I am just wondering: You are using a sidebar with fixed width. What do I have to change in the style.ini to get that? Thanks!
> The width of the sidebar is not changeable within the ''style.ini''. You have to modify ''dokuwiki/lib/tpl/arctic/arctic_design.css'' and look for the following:
div.dokuwiki div.left_sidebar {
...
width: 21%;
...
}
or
div.dokuwiki div.right_sidebar {
...
width: 21%;
...
}
--- //[[chi@chimeric.de|chi]] 08.05.2006 14:11//
>> Hi,
>> In the last version, it seems that the file to modify is ''dokuwiki/lib/tpl/arctic/arctic_design.css''.
>> And you need to change the div.center_page too (in the same file).
>> Thanks for this template.
>> Hebus82
> Yep, you're right! If you have the sidebar left you have to change ''div.right_page'' and if you have the sidebar right it's ''div.left_page'', ''div.center_page'' applies only if you have sidebars left and right. --- //[[chi@chimeric.de|chi]] 08.03.2007 14:09//
What must I code to have a right sidebar with fixed width 200px (width: 200px) and the left page taking up the rest of the browser width? If I code for the left page width = auto then my sidebar disappears. If I let the left page width at 72% then the left page disappears if the browser window becomes too small.
--- //[[horstjens@gmail.com|Horst]] 8-10-2009//
==== Backlinks in a header ====
First, I would like to thank you for excellent work! Templates you created are really wonderful.
I have a little request, I found that many users found the backlinks in a header (the link on a left side in a squared brackets) - confusing.
If you have settings to show the first header of page as a text of link. This link looks like a header of the current page. And it is located in the place where many websites put their name which suppose to lead them to the main page of the website. The user clicks on this link, sees the backlinks page (which often does not have any links) - and gets confused.
It would be nice if in configuration settings for template we had a settings which allow to hide those backlinks and to put the website name on a left. Otherwise we need to change CSS of the template.
> Thank you :). Well, since you're not the first one who asks for this particular change in the template layout I'll implement it as soon as I find some time, just give me a view days ;-). --- //[[chi@chimeric.de|chi]] 11.05.2007 00:09//
>> I simply use div.dokuwiki div.pagename { visibility: hidden } in %%userstyle.css%%. But search engines like Google seem to not like hidden links. -- //[[az1@land.ru|Alexander]] 15.09.2007//
>>> I'm also faced with the same dilemma... I take it you place that class attribute in arctic_design.css? [wikierookie]
>>>>Has a fix for this been completed? If I use the above recommendation how do I use it? I don't know anything about CSS. Do I just create a userstyle.css and put that line in it? Please help.
>>> Yes, just create that file put it into the
var url = new String(document.location);
var test = url.replace(/id=trace-libre:auteur:cv/,'');
if (!document.all && typeof(TWTR) != 'undefined' && String(test) === String(url)) {
new TWTR.Widget({
I made it by changing the dokuwiki/lib/tpl/arctic/tpl_functions.php.
The last function tpl_sidebar_hide is modifed to look for pagenames too. Unfortunatly you need to "hardcode" every page you want to hide in this file, but I only need a single page without the sidebar.
Change in $id_hide the pagenames you need without a sidebar.
function tpl_sidebar_hide() {
global $INFO;
global $ACT;
$act_hide = array( 'edit', 'preview', 'admin', 'conflict', 'draft', 'recover');
if(in_array($ACT, $act_hide)) {
return true;
} else {
$id_hide = array( 'namespace:site1','specialsite2');
if(in_array($INFO['id'], $id_hide)) {
return true;
} else {
return false;
}
}
}
==== Sidebar and IPTrust / Disable Sidebar on Login Page ====
Just a quick note, because I did not find any information on this:
I am using this template to display the wiki index tree in the sidebar. The wiki uses the [[plugin:iptrust]] plug-in to be freely accessible from our office but force login from outside.
So, while no content is presented without login, the sidebar still is. It is no option to disable it for not logged-in users, because of the IPTrust open-within-the-office feature.
What I finally did is editing the dokuwiki/lib/tpl/arctic/tpl_functions.php to add the 'login' action in //tpl_sidebar_hide//:
$act_hide = array( 'login', 'edit', 'preview', 'admin', 'conflict', 'draft', 'recover');
Et voilà: Because IPTrust shows the login page for not logged-in users, the sidebar is perfectly hidden.
--- //[[stehling@designtoproduction.com|Hanno]] 21-01-2011//
==== Maintainer ====
----
**2011-05-16**: A new maintainer for this template is needed. Have a look at the following if you are interested: [[http://www.freelists.org/post/dokuwiki/Chis-Legacy|1]], [[http://www.freelists.org/post/dokuwiki/New-maintainer-for-Arctic-and-Dokubook-template-needed|2]].
----
The Arctic template (or Arctic-mbo) is one of the most important templates around. Once these templates have been updated the switch to Angua will be possible widely.
(Harald Ronge, 14 november 2011)
> Hello, i updated the arctic template to work with angua and added the mediamanager. I will keep supporting the template. Right now there is a github repository and a tarball tested against angua RC1. Regards --- [[user>sf|sf]] //2011/11/16 22:54//
>> It works, nice! I have two comments:
>>
>> - I would prefer the sidebars to be hidden in the full page mode of the media-manager. Chimeric did this for the admin and diff-views too. The center-page lacks space with this template, >>overflows happen everything is a bit tight.
>> - The action links in the template are preceded by icons, the Media-Manager action link still misses such an icon
>>I tried to send feedback through the forum but got access denied. Hope you pick this up here. --- [[user>harald|harald]] //2011/11/21 22:21//
>>> I added the mediamanager listing icon in toolbar and actionlinks. The sidebars in media view are now removed but I still have to work on the resizing. --- [[user>sf|sf]] //2011/11/22 17:38//
>>>> I just downloaded latest dokuwiki and arctic template but Media Manager looks corrupted. In default and arctic-mbo it is OK. --- [[rogerdan@mail.ru|Denis]] //2011/12/29 16:28//
>>>>> Seems links at the top of the page point to outdated package (even xxx-latest one). Package from GitHub contains necessary files and fixes problems with Media Manager and its icon --- [[rogerdan@mail.ru|Denis]] //2011/12/29 19:14//
>Hi, I also updated [[template:arctic-mbo]]. It should work now. --- [[user>matthieu|matthieu]] //2011/11/16 23:11//
==== Sidebar for different language ====
Hi!
I use "translate3" plugin. I create 2 custom sidebars for 2 language.
Is it posible to change sidebar with language?
(I tried to use file "nosidebar.txt" in different languages but it not work. DokuWiki used this file in "En" folder only).
Wbr, Alexandr.
> Hello, i didnt test with translation plugin yet. You could try checking "namespace" in //right_sidebar_content// setting and create a page in the namespace of every language and name it like the //pagename// setting. --- [[user>sf|sf]] //2011/12/12 22:32//
===== A&R#@^%$!!! BUG!!! =====
There can't be "/lib" path (Error 404 if dokuwiki isn't installed on "/")
> fixed, thank you
Also please add bug-tracker link. Thanks.
===== Media Manager not displayed correctly =====
Help!!!!
Media Manager not working. After click the button the page of manager is total mess and If select a file for uploading... It said that after the file name "failed" .
> As a temp fix if you copy all the css files that start with an underscore from the arctic-mbo download into your arctic template directory everything will start appearing normally. -keblerelfkc
>> Most probably a cache problem. Try touching (updating the timestamps of) style.ini.