Skip to content
Snippets Groups Projects
Commit 1c2d1019 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Interwiki icons are set through CSS classes now

darcs-hash:20051030152828-7ad00-58a99ca20a1d6ec62612a6281034c1dd669be44d.gz
parent 6640792b
No related branches found
No related tags found
No related merge requests found
......@@ -568,12 +568,6 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
$link['more'] = '';
$link['name'] = $this->_getLinkTitle($name, $wikiUri, $isImage);
if ( !$isImage ) {
$link['class'] = 'interwiki';
} else {
$link['class'] = 'media';
}
//get interwiki URL
if ( isset($this->interwiki[$wikiName]) ) {
$url = $this->interwiki[$wikiName];
......@@ -582,14 +576,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
$url = 'http://www.google.com/search?q={URL}&btnI=lucky';
$wikiName = 'go';
}
if(!$isImage){
//if ico exists set additional style
if(@file_exists(DOKU_INC.'lib/images/interwiki/'.$wikiName.'.png')){
$link['style']='background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$wikiName.'.png)';
}elseif(@file_exists(DOKU_INC.'lib/images/interwiki/'.$wikiName.'.gif')){
$link['style']='background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$wikiName.'.gif)';
}
if ( !$isImage ) {
$link['class'] = "interwiki iw_$wikiName";
} else {
$link['class'] = 'media';
}
//do we stay at the same server? Use local target
......
......@@ -7,10 +7,11 @@
*/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
define('NOSESSION',true); // we do not use a session or authentication here (better caching)
if(!defined('NOSESSION')) define('NOSESSION',true); // we do not use a session or authentication here (better caching)
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/pageutils.php');
require_once(DOKU_INC.'inc/io.php');
require_once(DOKU_INC.'inc/confutils.php');
// Main (don't run when UNIT test)
if(!defined('SIMPLE_TEST')){
......@@ -64,6 +65,9 @@ function css_out(){
// start output buffering and build the stylesheet
ob_start();
// print the default classes for Interwikilinks
css_interwiki();
// load files
foreach($files as $file => $location){
print css_loadfile($file, $location);
......@@ -108,6 +112,41 @@ function css_cacheok($cache,$files){
return true;
}
/**
* Prints classes for interwikilinks
*
* Interwiki links have two classes: 'interwiki' and 'iw_$name>' where
* $name is the identifier given in the config. All Interwiki links get
* an default style with a default icon. If a special icon is available
* for an interwiki URL it is set in it's own class. Both classes can be
* overwritten in the template or userstyles.
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function css_interwiki(){
// default style
echo 'a.interwiki {';
echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.png) 0px 1px no-repeat;';
echo ' padding-left: 16px;';
echo '}';
// additional styles when icon available
$iwlinks = getInterwiki();
foreach(array_keys($iwlinks) as $iw){
if(@file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.png')){
echo "a.iw_$iw {";
echo ' background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.png)';
echo '}';
}elseif(@file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.gif')){
echo "a.iw_$iw {";
echo ' background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.gif)';
echo '}';
}
}
}
/**
* Loads a given file and fixes relative URLs with the
* given location prefix
......
......@@ -7,7 +7,7 @@
*/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
define('NOSESSION',true); // we do not use a session or authentication here (better caching)
if(!defined('NOSESSION')) define('NOSESSION',true); // we do not use a session or authentication here (better caching)
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/pageutils.php');
require_once(DOKU_INC.'inc/io.php');
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -214,10 +214,8 @@ a.windows:hover {
text-decoration:underline;
}
/* interwiki link */
/* interwiki link (icon are set by dokuwiki) */
a.interwiki{
background: transparent url(images/interwiki.png) 0px 1px no-repeat;
padding-left: 16px;
color:#436976;
text-decoration:none;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment