summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthiasgrimm <matthiasgrimm@users.sourceforge.net>2005-06-16 19:12:39 +0200
committermatthiasgrimm <matthiasgrimm@users.sourceforge.net>2005-06-16 19:12:39 +0200
commit3aa4badbb5188d954a0e7c469c62c10ed18e5bc1 (patch)
tree799180bcc8c2c42674c70ba275b22341fe051aa8
parentd67ca2c0f7f6b75608386c226d33afdda872757c (diff)
downloadrpg-3aa4badbb5188d954a0e7c469c62c10ed18e5bc1.tar.gz
rpg-3aa4badbb5188d954a0e7c469c62c10ed18e5bc1.tar.bz2
media file reference missing file fix
This file is missing in the media file reference checker patch darcs-hash:20050616171239-7ef76-9212d4fb95d6a251317d5ab4b5b70e4546e21343.gz
-rw-r--r--lib/tpl/default/mediaref.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/tpl/default/mediaref.php b/lib/tpl/default/mediaref.php
new file mode 100644
index 000000000..dfad12300
--- /dev/null
+++ b/lib/tpl/default/mediaref.php
@@ -0,0 +1,57 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<?
+/**
+ * DokuWiki Default Template
+ *
+ * This is the template for displaying references to a media file.
+ * It is displayed in the media popup.
+ *
+ * You should leave the doctype at the very top - It should
+ * always be the very first line of a document.
+ *
+ * @link http://wiki.splitbrain.org/wiki:tpl:templates
+ * @author Andreas Gohr <andi@splitbrain.org>
+ */
+?>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$conf['lang']?>" lang="<?=$conf['lang']?>" dir="ltr">
+<head>
+ <title><?=hsc($lang['mediaselect'])?> [<?=hsc($conf['title'])?>]</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <?tpl_metaheaders()?>
+
+ <link rel="shortcut icon" href="<?=DOKU_BASE?>images/favicon.ico" />
+ <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>layout.css" />
+ <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>design.css" />
+
+ <!--[if gte IE 5]>
+ <style type="text/css">
+ /* that IE 5+ conditional comment makes this only visible in IE 5+ */
+ /* IE bugfix for transparent PNGs */
+ //img { behavior: url("<?=DOKU_BASE?>/pngbehavior.htc"); }
+ </style>
+ <![endif]-->
+</head>
+
+<body>
+<div class="dokuwiki">
+ <?html_msgarea()?>
+
+ <h1><?=hsc($lang['reference'])?> <code><?=hsc(noNS($DEL))?></code></h1>
+
+ <div class="mediaref">
+ <div class="mediaref_head">
+ <p><?=hsc($lang['ref_inuse'])?></p>
+ </div>
+
+ <?tpl_showreferences($mediareferences)?>
+
+ <div class="mediaref_footer">
+ <hr>
+ <?tpl_button('backtomedia')?>
+ </div>
+ </div>
+
+</div>
+</body>