はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
#admin__version {
clear:left;
float: right;
color: __text_neu__;
}
.dokuwiki ul.admin_tasks {
font-size: 115%;
float: left;
width: 40%;
list-style-type: none;
}
.dokuwiki ul.admin_tasks li {
line-height: 22px;
padding-left: 35px;
margin: 1em 0;
background: transparent none no-repeat scroll 0 0;
text-align: left;
}
.dokuwiki ul.admin_tasks li div.li {
font-weight: bold;
}
.dokuwiki ul.admin_tasks li.admin_acl {
background-image: url(../../images/admin/acl.png);
}
.dokuwiki ul.admin_tasks li.admin_usermanager {
background-image: url(../../images/admin/usermanager.png);
}
.dokuwiki ul.admin_tasks li.admin_plugin {
background-image: url(../../images/admin/plugin.png);
}
.dokuwiki ul.admin_tasks li.admin_config {
background-image: url(../../images/admin/config.png);
}
.dokuwiki ul.admin_tasks li.admin_revert {
background-image: url(../../images/admin/revert.png);
}
.dokuwiki ul.admin_tasks li.admin_popularity {
background-image: url(../../images/admin/popularity.png);
}
+68
View File
@@ -0,0 +1,68 @@
#link__wiz {
position: absolute;
display: block;
z-index: 99;
width: 300px;
height: 250px;
padding: 0;
margin: 0;
overflow: hidden;
border: 1px solid __border__;
background-color: __background_neu__;
text-align: center;
}
#link__wiz_header {
background-color: __background_alt__;
height: 16px;
margin-bottom: 5px;
}
#link__wiz_close {
cursor: pointer;
margin: 0;
}
#link__wiz_result {
background-color: __background__;
width: 293px;
height: 193px;
overflow: auto;
border: 1px solid __border__;
margin: 3px auto;
text-align: left;
}
#link__wiz_result div.type_u {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/up.png) 3px 3px no-repeat;
}
#link__wiz_result div.type_f {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/page.png) 3px 3px no-repeat;
}
#link__wiz_result div.type_d {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/ns.png) 3px 3px no-repeat;
}
#link__wiz_result div.even {
background-color: __background_neu__;
}
#link__wiz_result div.selected {
background-color: __background_alt__;
}
#link__wiz_result span {
display: block;
color: __text_neu__;
}
/*FIXME maybe move to a more general style sheet*/
.ondrag {
cursor: move;
opacity: 0.8;
}
+92
View File
@@ -0,0 +1,92 @@
/* --- popup --- */
#media__popup {
background-color:__background__;
display:none;
border: 1px solid __border__;
position: absolute;
width:270px;
}
#media__popup h1 {
text-align:center;
font-weight:normal;
background-color: __background_alt__;
height: 16px;
margin-bottom: 5px;
font-size:12px;
border-bottom: 0;
}
#media__popup p {
display:block;
line-height:14pt;
margin:0.5em;
}
#media_nolink {
padding:4px 0;
}
#media__popup label {
float:left;
width:9em;
}
#media__popup .button {
margin-left:auto;
margin-right:auto;
}
#media__popup .btnlbl {
text-align:center;
}
#media__popup .btnlbl input {
margin:0 1em;
}
#media__closeimg {
float:right;
}
/* --- display options --- */
#media__linkopts label,
#media__nolnk {
width: 80px;
float: left;
margin-left: 10px;
}
#media__linkopts label{
line-height: 20px;
}
#media__nolnk,
#media__linkopts label.long{
margin-bottom: 8px;
line-height: 12px;
}
#media__linkopts label.long{
width: 150px;
float: none;
}
#media__linkopts br {
clear: both;
}
#media__linkopts select {
width: 60px;
margin-left: 10px;
}
#media__linkopts input.edit {
width:50px;
margin-left:10px;
}
#media__linkopts #media__title {
width:150px;
}
+21
View File
@@ -0,0 +1,21 @@
/**
* Styles for the subscription page
*/
form#subscribe__form {
display: block;
width: 300px;
text-align: center;
}
form#subscribe__form fieldset {
text-align: left;
margin: 0.5em 0;
}
form#subscribe__form label {
display:block;
margin: 0 0.5em 0.5em;
}
+15
View File
@@ -0,0 +1,15 @@
<?php
/**
* Options for the Minima template
*/
$conf['color'] = 'blue';
$conf['width'] = 'medium';
$conf['sidebar_position'] = 'right';
$conf['sidebar_page'] = 'sidebar';
$conf['tabs_page'] = 'tabs';
$conf['showpageinfo'] = 1;
$conf['showsiteactions'] = 1;
$conf['showuseractions'] = 1;
$conf['minima_main_sidebar'] = 0;
//Setup VIM: ex: et ts=2 enc=utf-8 :
+27
View File
@@ -0,0 +1,27 @@
<?php
/**
* Metadata for configuration manager plugin
* Additions for the minima template
*
* @author Esther Brunner <wikidesign@gmail.com>
*/
$meta['color'] = array(
'multichoice',
'_choices' => array('blue', 'brown', 'gray', 'green', 'pink', 'purple')
);
$meta['width'] = array(
'multichoice',
'_choices' => array('narrow', 'medium', 'wide')
);
$meta['sidebar_position'] = array(
'multichoice',
'_choices' => array('left', 'right')
);
$meta['sidebar_page'] = array('string');
$meta['tabs_page'] = array('string');
$meta['showpageinfo'] = array('onoff');
$meta['showsiteactions'] = array('onoff');
$meta['showuseractions'] = array('onoff');
$meta['minima_main_sidebar'] = array('onoff');
//Setup VIM: ex: et ts=2 enc=utf-8 :
+852
View File
@@ -0,0 +1,852 @@
/**
* Design elements for default Template
*
* @author Andreas Gohr <andi@splitbrain.org>
* @author Anika Henke <henke@cosmocode.de>
*/
/* -------------- general elements --------------- */
* { padding: 0; margin: 0; }
body {
font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
background-color: #a6a6a6;
color: __text__;
}
/* the document */
div.dokuwiki table {
font-size: 100%;
}
div.dokuwiki tr,
div.dokuwiki td,
div.dokuwiki th {
}
div.dokuwiki img {
border: 0;
}
div.dokuwiki p,
div.dokuwiki blockquote,
div.dokuwiki table,
div.dokuwiki pre {
margin: 0 0 1em 0;
}
div.dokuwiki hr {
border: 0px;
border-top: 1px solid __border__;
text-align: center;
height: 0px;
margin: 1em 0;
}
div.dokuwiki div.nothing {
text-align: center;
margin: 2em;
}
/* ---------------- forms ------------------------ */
div.dokuwiki form {
border: none;
display: inline;
}
div.dokuwiki label.block {
display: block;
text-align: right;
font-weight: bold;
}
div.dokuwiki label.simple {
display: block;
text-align: left;
font-weight: normal;
}
div.dokuwiki label.block input.edit {
width: 50%;
}
div.dokuwiki fieldset {
width: 286px;
text-align: center;
border: 1px solid __border__;
padding: 0.5em;
margin: auto;
margin-bottom: 1.5em;
}
div.dokuwiki textarea.edit {
font-family: monospace;
font-size: 14px;
color: __text__;
background-color: __background__;
border: 1px solid __border__;
padding: 0.3em 0 0 0.3em;
/* fix for bad scrolling in IE8 */
/* width: 100%; */
height: 300px;
width: 700px;
min-width: 100%;
max-width: 100%;
}
/* nice alphatransparency background except for IE <7 */
html>body div.dokuwiki textarea.edit {
background: __background__ url(images/inputshadow.png) repeat-x top;
}
div.dokuwiki input.edit,
div.dokuwiki select.edit {
font-size: 100%;
border: 1px solid __border__;
color: __text__;
background-color: __background__;
vertical-align: middle;
margin: 1px;
padding: 0.20em 0.3em;
display: inline;
}
/* nice alphatransparency background except for IE <7 */
html>body div.dokuwiki input.edit,
html>body div.dokuwiki select.edit {
background: __background__ url(images/inputshadow.png) repeat-x top;
}
div.dokuwiki select.edit {
padding: 0.1em 0;
}
div.dokuwiki input.missing {
font-size: 100%;
border: 1px solid __border__;
color: __text__;
background-color: #ffc2d1;
vertical-align: middle;
margin: 1px;
padding: 0.20em 0.3em;
display: inline;
}
/* disabled style - not understood by IE */
div.dokuwiki textarea.edit[disabled],
div.dokuwiki textarea.edit[readonly],
div.dokuwiki input.edit[disabled],
div.dokuwiki input.edit[readonly],
div.dokuwiki select.edit[disabled] {
background-color: __background_neu__!important;
color: __text_neu__!important;
}
/* edit form */
div.dokuwiki div.toolbar,
div.dokuwiki div#wiki__editbar {
margin: 2px 0;
text-align: left;
}
div.dokuwiki div#size__ctl {
float: right;
width: 60px;
height: 2.7em;
}
div.dokuwiki #size__ctl img {
cursor: pointer;
}
div.dokuwiki div#wiki__editbar div.editButtons {
float: left;
padding: 0 1.0em 0.7em 0;
}
div.dokuwiki div#wiki__editbar div.summary {
float: left;
}
div.dokuwiki .nowrap {
white-space: nowrap;
}
div.dokuwiki div#draft__status {
float: right;
color: __text_alt__;
}
/* --------- buttons ------------------- */
div.dokuwiki input.button,
div.dokuwiki button.button {
border: 1px solid __text_other__;
color: __text__;
background-color: __background_neu__;
vertical-align: middle;
text-decoration: none;
font-size: 100%;
cursor: pointer;
margin: 1px;
padding: 0.125em 0.4em;
}
div.dokuwiki input.button:hover,
div.dokuwiki button.button:hover {
border: 1px solid __border__;
background-color: __background_other__;
}
/* nice alphatransparency background except for IE <7 */
html>body div.dokuwiki input.button,
html>body div.dokuwiki button.button {
background: __background_neu__ url(images/buttonshadow.png) repeat-x bottom;
}
* html div.dokuwiki input.button,
* html div.dokuwiki button.button {
height: 1.8em;
}
div.dokuwiki div.secedit input.button {
border: 1px solid __text_other__;
color: __text__;
background-color: __background_neu__;
vertical-align: middle;
text-decoration: none;
margin: 0;
padding: 0;
font-size: 10px;
cursor: pointer;
float: right;
display: inline;
}
div.dokuwiki div.secedit input.button:hover {
border: 1px solid __border__;
background-color: __background_other__;
}
/* ----------- page navigator ------------- */
div.dokuwiki div.pagenav {
margin: 1em 0 0 0;
}
div.dokuwiki div.pagenav-prev {
text-align: right;
float: left;
width: 49%
}
div.dokuwiki div.pagenav-next {
text-align: left;
float: right;
width: 49%
}
/* --------------- Links ------------------ */
div.dokuwiki a:link,
div.dokuwiki a:visited {
color: __extern__;
text-decoration: none;
}
div.dokuwiki a:hover,
div.dokuwiki a:active {
color: __extern__;
text-decoration: underline;
}
div.dokuwiki h1 a,
div.dokuwiki h2 a,
div.dokuwiki h3 a,
div.dokuwiki h4 a,
div.dokuwiki h5 a,
div.dokuwiki a.nolink {
color: __text__ !important;
text-decoration: none !important;
}
/* external link */
div.dokuwiki a.urlextern {
background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
padding: 1px 0px 1px 16px;
}
/* windows share */
div.dokuwiki a.windows {
background: transparent url(images/windows.gif) 0px 1px no-repeat;
padding: 1px 0px 1px 16px;
}
/* interwiki link (icon are set by dokuwiki) */
div.dokuwiki a.interwiki {
}
/* link to some embedded media */
div.dokuwiki a.media {
}
div.dokuwiki a.urlextern:link,
div.dokuwiki a.windows:link,
div.dokuwiki a.interwiki:link {
}
div.dokuwiki a.urlextern:visited,
div.dokuwiki a.windows:visited,
div.dokuwiki a.interwiki:visited {
}
div.dokuwiki a.urlextern:hover,
div.dokuwiki a.urlextern:active,
div.dokuwiki a.windows:hover,
div.dokuwiki a.windows:active,
div.dokuwiki a.interwiki:hover,
div.dokuwiki a.interwiki:active {
}
/* email link */
div.dokuwiki a.mail {
background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
padding: 1px 0px 1px 16px;
}
/* existing wikipage */
div.dokuwiki a.wikilink1 {
color: __existing__ !important;
}
/* not existing wikipage */
div.dokuwiki a.wikilink2 {
color: __missing__ !important;
}
/* ------------- Page elements ----------------- */
div.dokuwiki div.preview {
background-color: __background_neu__;
margin: 0 0 2em 0;
padding: 0.5em;
border: 1px dashed __text_neu__;
}
div.dokuwiki div.breadcrumbs {
background-color: __background_neu__;
color: __text_neu__;
font-size: 80%;
padding: 0 0 0 0.5em;
}
div.dokuwiki span.user {
color: __text_other__;
font-size: 90%;
}
div.dokuwiki li.minor {
color: __text_neu__;
font-style: italic;
}
/* embedded images */
div.dokuwiki img.media {
margin: 0 3px;
}
div.dokuwiki img.medialeft {
border: 0;
float: left;
margin: 0 1.5em 0 0;
}
div.dokuwiki img.mediaright {
border: 0;
float: right;
margin: 0 0 0 1.5em;
}
div.dokuwiki img.mediacenter {
border: 0;
display: block;
margin: 0 auto;
}
/* smileys */
div.dokuwiki img.middle {
vertical-align: middle;
}
div.dokuwiki acronym {
cursor: help;
border-bottom: 1px dotted __text_other__;
}
/* general headline setup */
div.dokuwiki h1,
div.dokuwiki h2,
div.dokuwiki h3,
div.dokuwiki h4,
div.dokuwiki h5 {
color: __text__;
background-color: inherit;
font-size: 100%;
font-weight: normal;
margin: 0 0 1em 0;
padding: 0.5em 0 0 0;
border-bottom: 1px solid __border__;
clear: left;
}
/* special headlines */
div.dokuwiki h1 {font-size: 150%; font-weight: bold;}
div.dokuwiki h2 {font-size: 140%;}
div.dokuwiki h3 {font-size: 120%; border-bottom: none; font-weight: bold;}
div.dokuwiki h4 {font-size: 110%; border-bottom: none; font-weight: bold;}
div.dokuwiki h5 {font-size: 100%; border-bottom: none; font-weight: bold;}
/* special headlines for sidebar */
div.dokuwiki div.sidebar h1 { clear: none; font-size: 120%; text-transform: uppercase; letter-spacing: 0.2em; text-align: center; margin-bottom: 5px;}
div.dokuwiki div.sidebar h2 { clear: none; font-size: 120%; text-transform: uppercase; letter-spacing: 0.2em; text-align: center; margin-bottom: 5px;}
div.dokuwiki div.sidebar h3 { clear: none; margin-bottom: 2px;}
div.dokuwiki div.sidebar h4 { clear: none; margin-bottom: 2px;}
div.dokuwiki div.sidebar h5 { clear: none; margin-bottom: 2px;}
/* indent different sections */
div.dokuwiki div.level1 {}
div.dokuwiki div.level2 {}
div.dokuwiki div.level3 {}
div.dokuwiki div.level4 {}
div.dokuwiki div.level5 {}
/* unordered lists */
div.dokuwiki ul {
line-height: 1.5em;
list-style-type: square;
list-style-image: none;
margin: 0 0 0.5em 1.5em;
color: __text_alt__;
}
/* ordered lists */
div.dokuwiki ol {
line-height: 1.5em;
list-style-image: none;
margin: 0 0 0.5em 1.5em;
color: __text_alt__;
font-weight: bold;
}
/* the list items overriding the ul/ol definition */
div.dokuwiki .li {
color: __text__;
font-weight: normal;
}
div.dokuwiki ol {list-style-type: decimal}
div.dokuwiki ol ol {list-style-type: upper-roman}
div.dokuwiki ol ol ol {list-style-type: lower-alpha}
div.dokuwiki ol ol ol ol {list-style-type: lower-greek}
div.dokuwiki li.open {
list-style-image: url(images/open__theme__.gif);
/*list-style-type: circle;*/
}
div.dokuwiki li.closed {
list-style-image: url(images/closed__theme__.gif);
/*list-style-type: disc;*/
}
div.dokuwiki blockquote {
border: 1px solid __text_other__;
background-color: __background_neu__;
line-height: 1.2em;
padding: 0.2em 0.5em;
margin: 0.5em 0;
opacity: 0.9;
}
div.dokuwiki pre {
font-size: 110%;
line-height: 1.2em;
padding: 0.5em;
border: 1px dashed __border__;
color: __text__;
overflow: auto;
}
/* code blocks by indention */
div.dokuwiki pre.pre {
background-color: __background_alt__;
}
/* code blocks by code tag */
div.dokuwiki pre.code {
background-color: __background_alt__;
}
/* inline code words */
div.dokuwiki code {
font-size: 110%;
}
/* code blocks by file tag */
div.dokuwiki pre.file {
background-color: __background_other__;
}
/* inline tables */
div.dokuwiki table.inline {
background-color: __background__;
line-height: 1.2em;
border-spacing: 0px;
border-collapse: collapse;
}
div.dokuwiki table.inline th {
padding: 3px;
border: 1px solid __border__;
background-color: __background_alt__;
}
div.dokuwiki table.inline td {
padding: 3px;
border: 1px solid __border__;
}
/* ---------- table of contents ------------------- */
/*div.dokuwiki div.toc {*/
div.dokuwiki #dw__toc {
margin: 1.2em 0 0 2em;
float: right;
width: 200px;
font-size: 80%;
clear: both;
}
/*div.dokuwiki div.tocheader {*/
div.dokuwiki #dw__toc h3 {
border: 1px solid __border__;
background-color: __background_alt__;
text-align: left;
font-weight: bold;
padding: 3px;
margin: 0 0 2px 0;
}
/*div.dokuwiki div.tocheader img {*/
div.dokuwiki #dw__toc h3 img {
width: 0.8em;
height: 0.8em;
float: right;
margin: 0.6em 3px 0 0;
cursor: pointer;
}
/*
div.dokuwiki #dw__toc h3 strong {
border: 0.4em solid __background_alt__;
float: right;
display: block;
margin: 0.4em 3px 0 0;
}
*/
/*div.dokuwiki #toc__inside {*/
div.dokuwiki #dw__toc > div {
border: 1px solid __border__;
background-color: __background__;
text-align: left;
padding: 0.5em 0 0.7em 0;
}
/*div.dokuwiki ul.toc {*/
div.dokuwiki #dw__toc ul {
list-style-type: none;
list-style-image: none;
line-height: 1.2em;
padding-left: 1em;
margin: 0;
}
/*div.dokuwiki ul.toc li {*/
div.dokuwiki #dw__toc ul li {
background: transparent url(images/tocdot2__theme__.gif) 0 0.6em no-repeat;
padding-left: 0.5em;
}
/*div.dokuwiki ul.toc li.clear {*/
div.dokuwiki #dw__toc ul li.clear {
background-image: none;
padding-left: 0.5em;
}
/*div.dokuwiki a.toc:link,
div.dokuwiki a.toc:visited {*/
div.dokuwiki #dw__toc a:link,
div.dokuwiki #dw__toc a:visited {
color: __extern__;
}
/*div.dokuwiki a.toc:hover,
div.dokuwiki a.toc:active {*/
div.dokuwiki #dw__toc a:hover,
div.dokuwiki #dw__toc a:active {
color: __text__;
}
/* ---------------------------- Diff rendering --------------------------*/
div.dokuwiki table.diff {
background-color: __background__;
width: 100%;
}
div.dokuwiki td.diff-blockheader {
font-weight: bold;
}
div.dokuwiki table.diff th {
border-bottom: 1px solid __border__;
font-size: 120%;
width: 50%;
font-weight: normal;
text-align: left;
}
div.dokuwiki table.diff td {
font-family: monospace;
font-size: 100%;
}
div.dokuwiki td.diff-addedline {
background-color: #ddffdd;
}
div.dokuwiki td.diff-deletedline {
background-color: #ffffbb;
}
div.dokuwiki td.diff-context {
background-color: __background_neu__;
}
div.dokuwiki span.diffchange {
color: red;
}
/* --------------------- footnotes -------------------------------- */
div.dokuwiki div.footnotes {
clear: both;
border-top: 1px solid __border__;
padding-left: 1em;
margin: 1em 0;
}
div.dokuwiki div.fn {
font-size: 90%;
line-height: 1.2em;
}
div.dokuwiki a.fn_top {
vertical-align: super;
font-size: 70%;
line-height: 1em;
}
div.dokuwiki a.fn_bot {
vertical-align: super;
font-size: 70%;
font-weight: bold;
}
/* insitu-footnotes */
div.insitu-footnote {
font-size: 80%;
line-height: 1.2em;
border: 1px solid __border__;
background-color: __background_other__;
text-align: left;
padding: 4px;
max-width: 40%; /* IE's width is handled in javascript */
}
/* overcome IE issue with one line code or file boxes which require h. scrolling */
* html .insitu-footnote pre.code,
* html .insitu-footnote pre.file {
padding-bottom: 18px;
}
/* --------------- search result formating --------------- */
div.dokuwiki input#qsearch__in {
width: 95%;
}
/*
div.dokuwiki .search_result {
margin-bottom: 0.5em;
padding: 0 1em 0 3em;
}
*/
#dw__loading {
text-align: center;
margin-bottom: 1em;
}
div.dokuwiki .search_results {
padding: 0 10px 0 30px;
}
/* div.dokuwiki .search_snippet {*/
div.dokuwiki .search_results dt {
margin-bottom: 3px;
}
div.dokuwiki .search_results dd {
margin-bottom: 6px;
color: __text_other__;
font-size: 90%;
margin-left: 2em;
}
div.dokuwiki .search_sep {
color: __text__;
}
div.dokuwiki .search_hit {
color: __text__;
background-color: __highlight__;
}
div.dokuwiki div.search_quickresult {
margin: 0 0 1.5em 3em;
padding: 0 1em 1em 0;
border-bottom: 1px dashed __border__;
}
div.dokuwiki div.search_quickresult h3 {
margin: 0 0 1em 0;
font-size: 1em;
font-weight: bold;
}
div.dokuwiki ul.search_quickhits {
margin: 0 0 0.5em 1em;
}
div.dokuwiki ul.search_quickhits li {
margin: 0 1em 0 1em;
float:left;
width: 30%;
}
/* ------------------ Additional ---------------------- */
div.footerinc {
text-align: center;
}
.footerinc a img {
opacity: 0.5;
border: 0;
}
.footerinc a:hover img {
opacity: 1;
}
#config__manager fieldset td.value {
/* fixed data column width */
width: 65%;
}
#config__manager td input.edit {
width: 95%;
}
/* ---------- AJAX quicksearch ----------- */
div.dokuwiki div.ajax_qsearch {
position: absolute;
right: 288px;
width: 231px;
opacity: 0.9;
display: none;
font-size: 80%;
line-height: 1.2em;
border: 1px solid __border__;
background-color: __background_other__;
text-align: left;
padding: 0.5em;
}
/* --------- Toolbar -------------------- */
button.toolbutton {
background-color: __background_neu__;
padding: 0px;
margin: 0 1px 0 0;
border: 1px solid __border__;
cursor: pointer;
}
button.toolbutton:hover {
background-color: __background_other__;
border: 1px solid __border__;
}
/* nice alphatransparency background except for IE <7 */
html>body button.toolbutton {
background: __background_neu__ url(images/buttonshadow.png) repeat-x bottom;
}
div.picker {
width: 286px;
border: 1px solid __border__;
background-color: __background_alt__;
}
button.pickerbutton {
padding: 1px 0;
margin: 0 1px 1px 0;
border: 1px solid __background_alt__;
background-color: transparent;
font-size: 90%;
cursor: pointer;
}
button.pickerbutton:hover {
border: 1px solid __border__;
background-color: __background_other__;
}
/* ---------- Spellchecking ------------- */
div.dokuwiki a.spell_error {
color: #f00;
text-decoration: underline;
}
div.dokuwiki div#spell__suggest {
background-color: __background__;
padding: 2px;
border: 1px solid __text__;
font-size: 80%;
display: none;
}
div.dokuwiki div#spell__result {
border: 1px solid __border__;
color: __text__;
font-size: 110%;
padding: 3px;
background-color: __background_other__;
display: none;
}
div.dokuwiki span.spell_noerr {
color: #093;
}
div.dokuwiki span.spell_wait {
color: #06c;
}
#config__manager legend {
color: __text__;
background-color: __background_alt__;
border: 1px solid __border__;
padding: 0 0.3em 0 0.3em;
}
+99
View File
@@ -0,0 +1,99 @@
<?php
/**
* DokuWiki Image Detail Template
*
* This is the template for displaying image details
*
* 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>
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
?>
<?php
/**
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
*/
?>
<!DOCTYPE html>
<html lang="<?php echo $conf['lang']?>" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
<?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?> · <?php echo strip_tags($conf['title'])?>
</title>
<?php tpl_metaheaders()?>
<link rel="shortcut icon" href="<?php echo tpl_basedir()?>images/favicon.ico" />
</head>
<body>
<div class="dokuwiki" id="image__detail">
<?php html_msgarea()?>
<div class="page">
<?php if($ERROR){ print $ERROR; }else{ ?>
<h1><?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?></h1>
<div class="img_big">
<?php tpl_img(900,700) ?>
</div>
<div class="img_detail">
<p class="img_caption">
<?php print nl2br(hsc(tpl_img_getTag(array('IPTC.Caption',
'EXIF.UserComment',
'EXIF.TIFFImageDescription',
'EXIF.TIFFUserComment')))); ?>
</p>
<p>&larr; <?php echo $lang['img_backto']?> <?php tpl_pagelink($ID)?></p>
<dl class="img_tags">
<?php
$t = tpl_img_getTag('Date.EarliestTime');
if($t) print '<dt>'.$lang['img_date'].':</dt><dd>'.date($conf['dformat'],$t).'</dd>';
$t = tpl_img_getTag('File.Name');
if($t) print '<dt>'.$lang['img_fname'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag(array('Iptc.Byline','Exif.TIFFArtist','Exif.Artist','Iptc.Credit'));
if($t) print '<dt>'.$lang['img_artist'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag(array('Iptc.CopyrightNotice','Exif.TIFFCopyright','Exif.Copyright'));
if($t) print '<dt>'.$lang['img_copyr'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag('File.Format');
if($t) print '<dt>'.$lang['img_format'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag('File.NiceSize');
if($t) print '<dt>'.$lang['img_fsize'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag('Simple.Camera');
if($t) print '<dt>'.$lang['img_camera'].':</dt><dd>'.hsc($t).'</dd>';
$t = tpl_img_getTag(array('IPTC.Keywords','IPTC.Category'));
if($t) print '<dt>'.$lang['img_keywords'].':</dt><dd>'.hsc($t).'</dd>';
?>
</dl>
<?php //Comment in for Debug// dbg(tpl_img_getTag('Simple.Raw'));?>
</div>
<div class="clearer"></div>
<?php } ?>
</div>
</div>
</body>
</html>
+61
View File
@@ -0,0 +1,61 @@
<?php
/**
* Example footer include
*
* This file shows you how to use the include hooks. However I recommend to
* create your own complete new template instead.
*/
$tgt = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
?>
<div class="footerinc">
<a <?php echo $tgt?> href="<?php echo DOKU_BASE; ?>feed.php" title="Recent changes RSS feed"><img src="<?php echo tpl_basedir(); ?>images/button-rss.png" width="80" height="15" alt="Recent changes RSS feed" /></a>
<a <?php echo $tgt?> href="http://creativecommons.org/licenses/by-nc-sa/2.0/" rel="license" title="Creative Commons License"><img src="<?php echo tpl_basedir(); ?>images/button-cc.gif" width="80" height="15" alt="Creative Commons License" /></a>
<a <?php echo $tgt?> href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=wikidesign%40gmail%2ecom&item_name=DokuWiki%20Template&item_number=Minima&no_shipping=2&no_note=1&tax=0&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8" title="Donate"><img src="<?php echo tpl_basedir(); ?>images/button-donate.gif" alt="Donate" width="80" height="15" /></a>
<a <?php echo $tgt?> href="http://www.wikidesign.ch/" title="Minima Template by Wikidesign"><img src="<?php echo tpl_basedir(); ?>images/button-wikidesign.gif" width="80" height="15" alt="Minima Template by Wikidesign" /></a>
<a <?php echo $tgt?> href="http://wiki.splitbrain.org/wiki:dokuwiki" title="Driven by DokuWiki"><img src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
<?php
/*
* The following stuff in HTML comments declares a Creative Commons
* License - remove this if you don't want this license for your Wiki
*/
?>
<!--
<rdf:RDF xmlns="http://web.resource.org/cc/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
<license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/">
<permits rdf:resource="http://web.resource.org/cc/Reproduction" />
<permits rdf:resource="http://web.resource.org/cc/Distribution" />
<requires rdf:resource="http://web.resource.org/cc/Notice" />
<requires rdf:resource="http://web.resource.org/cc/Attribution" />
<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
</License>
</rdf:RDF>
-->
<?php
if ($conf['allowdebug']) {
echo '<!-- page made in '.round(delta_time(DOKU_START_TIME), 3).' seconds -->';
}
?>
</div>
+207
View File
@@ -0,0 +1,207 @@
<?php
/**
* Provide navigation sidebar functionality to Dokuwiki Templates
*
* @author Christopher Smith <chris@jalakai.co.uk>
* @author Esther Brunner <wikidesign@gmail.com>
* @author Don Bowman <don@lynsoft.co.uk>
*/
/**
* Recursive function to establish best sidebar file to be used
*/
function getSidebarFN($ns, $file) {//func
/****** check for wiki page = $ns:$file (or $file where no namespace) ******/
$nsFile = ($ns) ? "$ns:$file" : $file;
if (file_exists(wikiFN($nsFile)) && auth_quickaclcheck($nsFile))
return $nsFile;
/****** no namespace left, exit with no file found ******/
if (!$ns)
return '';
/****** remove deepest namespace level and call function recursively ******/
$i = strrpos($ns, ":");
$ns = ($i) ? substr($ns, 0, $i) : false;
return getSidebarFN($ns, $file);
}//function getSidebarFN($ns, $file)
/**
* Display the sidebar
*/
function minima_sidebar() {//func
/****** declare global variables ******/
global $ID, $REV, $ACT, $conf;
/****** save global variables ******/
$saveID = $ID;
$saveREV = $REV;
// $saveACT = $ACT;
/****** find file to be displayed in navigation sidebar ******/
$sidebar = tpl_getConf('sidebar_page');
$fileSidebar = getSidebarFN(getNS($ID), $sidebar);
/****** show main sidebar if necessary ******/
if (tpl_getConf('minima_main_sidebar') && $fileSidebar != $sidebar) {//do
$ID = $sidebar;
$REV = '';
echo p_wiki_xhtml($ID, $REV, false);
// $ACT = 'show';
// tpl_content(false);
echo "<hr>";
}//if (tpl_getConf('minima_main_sidebar') && $fileSidebar != $sidebar)
/****** show current sidebar ******/
if ($fileSidebar) {//do
$ID = $fileSidebar;
$REV = '';
echo p_wiki_xhtml($ID, $REV, false);
// $ACT = 'show';
// tpl_content(false);
}//if ($fileSidebar)
/****** show index ******/
else {//if (!$fileSidebar)
// $REV = '';
// $ACT = 'index';
global $IDX;
html_index($IDX);
// tpl_content(false);
}//if (!$fileSidebar)
/****** restore global variables ******/
$ID = $saveID;
$REV = $saveREV;
// $ACT = $saveACT;
}//function minima_sidebar()
/**
* Return the correct ID for <div class="dokuwiki">
*/
function minima_classID() {//func
echo 'minima__'.tpl_getConf('width').'_'.tpl_getConf('sidebar_position');
}//function minima_classID()
/**
* Checks if the color scheme has changed
*/
function minima_checkColor() {//func
/****** set local variables ******/
$color = tpl_getConf('color');
$file = tpl_incdir().'style.ini';
$file2 = tpl_incdir().'style_'.$color.'.ini';
$ini = parse_ini_file($file);
/****** change theme as requested ******/
if ($ini['__theme__'] != '_'.$color) {//do
if ((@file_exists($file2)) && (@unlink($file)) && (@copy($file2, $file))) {//do
global $conf;
if ($conf['fperm']) chmod($file, $conf['fperm']);
}//if ((@file_exists($file2)) && (@unlink($file)) && (@copy($file2, $file)))
else {//if not ((@file_exists($file2)) && (@unlink($file)) && (@copy($file2, $file)))
msg('Could not set correct style.ini file for your chosen color scheme.', -1);
}//else {//if not ...
}//if ($ini['__theme__'] != '_'.$color)
}//function minima_checkColor()
/**
* Display tabs for easy navigation
*/
function minima_tabs() {//func
/****** declare global variables ******/
global $ID;
/****** set local variables ******/
$out = '';
/****** get tabs file name ******/
$ns = getNS($ID);
$tabsFile = wikiFN(($ns).':'.tpl_getConf('tabs_page'));
/****** show tabs ******/
if ((@file_exists($tabsFile)) && (auth_quickaclcheck($tabs))) {//do
$ins = p_cached_instructions($tabsFile);
/****** process each tab ******/
foreach ($ins as $in) {//do
/****** collect internal links to pages in same namespace ******/
if ($in[0] == 'internallink') {//do
list($id, $hash) = explode('#', $in[1][0], 2);
resolve_pageid(getNS($ID), $id, $exists);
/****** ignore links to other namespaces ******/
if (getNS($id) != $ns)
continue;
/****** ignore links to non-existent pages ******/
if (!$exists)
continue;
/****** determine link title ******/
$title = hsc($in[1][1]);
if (!$title)
$title = hsc(p_get_first_heading($id));
if (!$title)
$title = hsc(ucwords(noNS($id)));
/****** now construct the output link ******/
if ($id == $ID)
$out .= '<span class="activetab">'.$title.'</span> ';
else
$out .= '<a href="'.wl($id).'" class="tab">'.$title.'</a> ';
}//if ($in[0] == 'internallink')
/****** first header of tabs.txt is heading for whole namespace ******/
elseif (($in[0] == 'header') && (!$heading)) {//do
$heading = $in[1][0];
$level = $in[1][1];
}//if (($in[0] == 'header') && (!$heading))
}//foreach ($ins as $in)
/****** add heading to list ******/
if ($heading)
$out = '<h'.$level.'>'.$heading.'</h'.$level.'>'.$out;
/****** show list ******/
if ($out <> "")
echo '<div class="tabs">'.$out.'</div>';
}//if ((@file_exists($tabsFile)) && (auth_quickaclcheck($tabs)))
}//function minima_tabs()
/**
* Outputs the namespace title
*/
function minima_nstitle() {//func
/****** declare global variables ******/
global $ID;
/****** get namespace title ******/
$title = p_get_metadata(getNS($ID).':'.tpl_getConf('tabs_page'), 'title');
/****** show namespace title ******/
if ($title)
echo $title.': ';
}//function minima_nstitle()
Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

+34
View File
@@ -0,0 +1,34 @@
<?php
/**
* German language file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Esther Brunner <wikidesign@gmail.com>
*/
// for the configuration manager
$lang['color'] = 'Farbschema';
$lang['color_o_blue'] = 'blau';
$lang['color_o_brown'] = 'braun';
$lang['color_o_gray'] = 'grau';
$lang['color_o_green'] = 'grün';
$lang['color_o_pink'] = 'pink';
$lang['color_o_purple'] = 'violett';
$lang['width'] = 'Breite des Layouts';
$lang['width_o_narrow'] = 'schmal (610 Pixel)';
$lang['width_o_medium'] = 'mittel (754 Pixel)';
$lang['width_o_wide'] = 'breit (987 Pixel)';
$lang['sidebar_position'] = 'Position der Seitenleiste';
$lang['sidebar_position_o_left'] = 'links';
$lang['sidebar_position_o_right'] = 'rechts';
$lang['sidebar_page'] = 'Name der Seitenleiste-Seite';
$lang['tabs_page'] = 'Name der Tabs-Seite';
$lang['showpageinfo'] = 'Seiteninfo anzeigen';
$lang['showsiteactions'] = 'Website-Aktionen anzeigen';
$lang['showuseractions'] = 'Benutzer-Aktionen anzeigen';
//Setup VIM: ex: et ts=2 enc=utf-8 :
+35
View File
@@ -0,0 +1,35 @@
<?php
/**
* English language file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Esther Brunner <wikidesign@gmail.com>
*/
// for the configuration manager
$lang['color'] = 'color scheme';
$lang['color_o_blue'] = 'blue';
$lang['color_o_brown'] = 'brown';
$lang['color_o_gray'] = 'gray';
$lang['color_o_green'] = 'green';
$lang['color_o_pink'] = 'pink';
$lang['color_o_purple'] = 'purple';
$lang['width'] = 'layout width';
$lang['width_o_narrow'] = 'narrow (610 pixels)';
$lang['width_o_medium'] = 'medium (754 pixels)';
$lang['width_o_wide'] = 'wide (987 pixels)';
$lang['sidebar_position'] = 'sidebar position';
$lang['sidebar_position_o_left'] = 'on the left';
$lang['sidebar_position_o_right'] = 'on the right';
$lang['sidebar_page'] = 'sidebar page name';
$lang['tabs_page'] = 'tabs page name';
$lang['showpageinfo'] = 'show page info';
$lang['showsiteactions'] = 'show site actions';
$lang['showuseractions'] = 'show user actions';
$lang['minima_main_sidebar'] = 'always show main sidebar';
//Setup VIM: ex: et ts=2 enc=utf-8 :
+34
View File
@@ -0,0 +1,34 @@
<?php
/**
* Spanish language file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Francisco Castro <fcr@adinet.com.uy>
*/
// for the configuration manager
$lang['color'] = 'esquema de color';
$lang['color_o_blue'] = 'azul';
$lang['color_o_brown'] = 'marrón';
$lang['color_o_gray'] = 'gris';
$lang['color_o_green'] = 'verde';
$lang['color_o_pink'] = 'rosado';
$lang['color_o_purple'] = 'púrpura';
$lang['width'] = 'ancho:';
$lang['width_o_narrow'] = 'estrecho (610 píxels)';
$lang['width_o_medium'] = 'mediano (754 píxels)';
$lang['width_o_wide'] = 'amplio (987 píxeles)';
$lang['sidebar_position'] = 'posición de la barra lateral';
$lang['sidebar_position_o_left'] = 'a la izquierda';
$lang['sidebar_position_o_right'] = 'a la derecha';
$lang['sidebar_page'] = 'nombre de la barra lateral';
$lang['tabs_page'] = 'nombre de la página de pestañas';
$lang['showpageinfo'] = 'mostrar información de página';
$lang['showsiteactions'] = 'mostrar acciones de sitio';
$lang['showuseractions'] = 'mostrar acciones de usuario';
//Setup VIM: ex: et ts=2 enc=utf-8 :
+328
View File
@@ -0,0 +1,328 @@
/**
* Tableless Layout for minima template
*
* @author Andreas Gohr <andi@splitbrain.org>
* @author moraes <moraes@tipos.com.br>
* @author Esther Brunner <wikidesign@gmail.com>
*/
/* -------------- general --------------- */
div.dokuwiki {
margin-top: 13px;
margin-bottom: 8px;
margin-left: auto;
margin-right: auto;
}
#minima__wide_left, #minima__wide_right { width: 987px; }
#minima__medium_left, #minima__medium_right { width: 754px; }
#minima__narrow_left, #minima__narrow_right { width: 610px; }
/* -------------- header --------------- */
div.dokuwiki .header { height: 55px; }
#minima__wide_left .header,
#minima__wide_right .header {
background: transparent url(images/header_wide@{ini_theme}.jpg) no-repeat;
}
#minima__medium_left .header,
#minima__medium_right .header {
background: transparent url(images/header_medium@{ini_theme}.jpg) no-repeat;
}
#minima__narrow_left .header,
#minima__narrow_right .header {
background: transparent url(images/header_narrow@{ini_theme}.jpg) no-repeat;
}
#minima__wide_left .header { padding: 21px 89px 13px 288px; }
#minima__medium_left .header { padding: 21px 68px 13px 220px; }
#minima__narrow_left .header { padding: 21px 55px 13px 178px; }
#minima__wide_right .header { padding: 21px 55px 13px 89px; }
#minima__medium_right .header { padding: 21px 42px 13px 68px; }
#minima__narrow_right .header { padding: 21px 34px 13px 55px; }
div.dokuwiki .logo {
font-size: 220%;
font-weight: bolder;
margin-top: 8px;
/* vertical-align: middle; */
}
div.dokuwiki .logo a {
color: __background__ !important;
text-decoration: none !important;
}
/* --------------- main ---------------- */
div.dokuwiki div.main {
overflow: auto;
background-color: __background__;
border-left: 1px solid __text_alt__;
border-right: 1px solid __text_alt__;
}
/* --------------- page ---------------- */
div.dokuwiki div.page {
text-align: justify;
line-height: 1.5em;
padding-top: 21px;
padding-bottom: 34px;
background-color: __background__;
}
div.dokuwiki div.tabs {
font-size: 12px;
padding-top: 5px;
line-height: 1.5em;
background-color: __background_alt__;
border-bottom: 1px solid __border__;
}
div.dokuwiki span.activetab {
background-color: __background__;
padding: 2px 5px;
border: 1px solid __border__;
border-bottom: 1px solid __background__;
}
div.dokuwiki a.tab {
background-color: __background_neu__;
padding: 2px 5px;
border: 1px solid __text_other__;
border-bottom: 0px;
}
div.dokuwiki a.tab:hover {
text-decoration: none;
background-color: __background_other__;
border: 1px solid __border__;
border-bottom: 0px;
}
#minima__wide_left div.tabs,
#minima__wide_left div.breadcrumbs,
#minima__wide_right div.tabs,
#minima__wide_right div.breadcrumbs {
width: 842px;
}
#minima__wide_left div.page,
#minima__wide_right div.page {
width: 610px;
}
#minima__wide_left div.page,
#minima__wide_left div.tabs,
#minima__wide_left div.breadcrumbs {
padding-left: 55px;
padding-right: 88px;
float: right;
}
#minima__wide_right div.page,
#minima__wide_right div.tabs,
#minima__wide_right div.breadcrumbs {
padding-left: 88px;
padding-right: 55px;
float: left;
}
#minima__medium_left div.tabs,
#minima__medium_left div.breadcrumbs,
#minima__medium_right div.tabs,
#minima__medium_right div.breadcrumbs {
width: 643px;
}
#minima__medium_left div.page,
#minima__medium_right div.page {
width: 466px;
}
#minima__medium_left div.page,
#minima__medium_left div.tabs,
#minima__medium_left div.breadcrumbs {
padding-left: 42px;
padding-right: 67px;
float: right;
}
#minima__medium_right div.page,
#minima__medium_right div.tabs,
#minima__medium_right div.breadcrumbs {
padding-left: 67px;
padding-right: 42px;
float: left;
}
#minima__narrow_left div.tabs,
#minima__narrow_left div.breadcrumbs,
#minima__narrow_right div.tabs,
#minima__narrow_right div.breadcrumbs {
width: 520px;
}
#minima__narrow_left div.page,
#minima__narrow_right div.page {
width: 377px;
}
#minima__narrow_left div.page,
#minima__narrow_left div.tabs,
#minima__narrow_left div.breadcrumbs {
padding-left: 34px;
padding-right: 54px;
float: right;
}
#minima__narrow_right div.page,
#minima__narrow_right div.tabs,
#minima__narrow_right div.breadcrumbs {
padding-left: 54px;
padding-right: 34px;
float: left;
}
/* --------------- sidebar ---------------- */
div.dokuwiki div.sidebar {
background: __background_alt__;
font-size: 90%;
}
div.dokuwiki div.sidebar:after {
content: "&nbsp;";
display: block;
height: 0;
font-size: 0;
line-height: 0;
overflow: hidden;
visibility: hidden;
}
#minima__wide_left div.sidebar { padding: 21px 34px 34px 54px; width: 144px; }
#minima__medium_left div.sidebar { padding: 21px 26px 34px 41px; width: 110px; }
#minima__narrow_left div.sidebar { padding: 21px 21px 34px 33px; width: 89px; }
#minima__wide_right div.sidebar {
margin-left: 753px;
padding: 21px 54px 34px 34px;
}
#minima__medium_right div.sidebar {
margin-left: 575px;
padding: 21px 41px 34px 26px;
}
#minima__narrow_right div.sidebar {
margin-left: 465px;
padding: 21px 33px 34px 21px;
}
#minima__wide_left div.sidebar:after,
#minima__medium_left div.sidebar:after,
#minima__narrow_left div.sidebar:after {
clear: right;
}
#minima__wide_right div.sidebar:after,
#minima__medium_right div.sidebar:after,
#minima__narrow_right div.sidebar:after {
clear: left;
}
div.dokuwiki div.search {
width: 100%;
}
/* --------------- button bar ---------------- */
div.dokuwiki div.bar {
border-top: 1px solid __border__;
border-bottom: 1px solid __border__;
background: __background_alt__;
clear: both;
}
#minima__wide_left div.bar,
#minima__medium_left div.bar,
#minima__narrow_left div.bar {
border-right: 1px solid __border__;
padding: 2px 2px 2px 0;
}
#minima__wide_right div.bar,
#minima__medium_right div.bar,
#minima__narrow_right div.bar {
border-left: 1px solid __border__;
padding: 2px 0 2px 2px;
}
#minima__wide_left div.bar { margin-left: -55px; padding-left: 55px; width: 607px; }
#minima__medium_left div.bar { margin-left: -42px; padding-left: 42px; width: 463px; }
#minima__narrow_left div.bar { margin-left: -34px; padding-left: 34px; width: 374px; }
#minima__wide_right div.bar { width: 662px; }
#minima__medium_right div.bar { width: 505px; }
#minima__narrow_right div.bar { width: 408px; }
/* ------------- file metadata ----------------------- */
div.dokuwiki div.meta {
margin-top: 2em;
color: __text_alt__;
font-size: 80%;
}
/* ------------- footer ----------------------- */
div.dokuwiki div.footer {
height: 10px;
font-size: 5px;
line-height: 9px;
}
div.dokuwiki div.edgeleft {
float: left;
padding-left: 10px;
background: __background__ url(images/edgeleft@{ini_theme}.gif) no-repeat bottom left;
}
div.dokuwiki div.edgeright {
float: right;
padding-right: 10px;
background: __background__ url(images/edgeright@{ini_theme}.gif) no-repeat bottom right;
}
#minima__wide_left div.edgeleft,
#minima__wide_right div.edgeright {
width: 223px;
background-color: __background_alt__;
}
#minima__medium_left div.edgeleft,
#minima__medium_right div.edgeright {
width: 168px;
background-color: __background_alt__;
}
#minima__narrow_left div.edgeleft,
#minima__narrow_right div.edgeright {
width: 134px;
background-color: __background_alt__;
}
#minima__wide_left div.edgeright, #minima__wide_right div.edgeleft { width: 744px; }
#minima__medium_left div.edgeright, #minima__medium_right div.edgeleft { width: 566px; }
#minima__narrow_left div.edgeright, #minima__narrow_right div.edgeleft { width: 456px; }
div.dokuwiki div.borderbottom {
width: 100%;
border-bottom: 1px solid __text_alt__;
}
+155
View File
@@ -0,0 +1,155 @@
<?php
/**
* DokuWiki Default Template
*
* This is the template you need to change for the overall look
* of DokuWiki.
*
* @link http://wiki.splitbrain.org/wiki:tpl:templates
* @author Andreas Gohr <andi@splitbrain.org>
* @author Esther Brunner <wikidesign@gmail.com>
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
// include functions that provide sidebar and tabs functionality
@require_once(dirname(__FILE__).'/functions.php');
minima_checkColor();
?>
<?php
/**
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
*/
?>
<!DOCTYPE html>
<html lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="x-ua-compatible" content="IE=8">
<title>
<?php minima_nstitle(); tpl_pagetitle()?> · <?php echo strip_tags($conf['title'])?>
</title>
<?php tpl_metaheaders()?>
<link rel="shortcut icon" href="<?php echo tpl_basedir()?>images/favicon.ico" />
<?php /*old includehook*/ @include(dirname(__FILE__).'/meta.html')?>
</head>
<body>
<?php /*old includehook*/ @include(dirname(__FILE__).'/topheader.html')?>
<div class="dokuwiki" id="<?php minima_classID()?>">
<div class="header">
<div class="logo">
<?php tpl_link(wl(),$conf['title'],'name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[ALT+H]"')?>
</div>
</div>
<?php /*old includehook*/ @include(dirname(__FILE__).'/header.html')?>
<div class="main">
<?php if($conf['breadcrumbs']){?>
<div class="breadcrumbs">
<?php tpl_breadcrumbs()?>
</div>
<?php }?>
<?php if($conf['youarehere']){?>
<div class="breadcrumbs">
<?php tpl_youarehere()?>
</div>
<?php }?>
<!-- message area start -->
<?php html_msgarea()?>
<!-- message area stop -->
<?php flush()?>
<?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?>
<?php minima_tabs()?>
<div class="page">
<!-- wikipage start -->
<?php tpl_content()?>
<!-- wikipage stop -->
<?php if ($INFO['exists'] && ($ACT == 'show') && $INFO['perm']
&& tpl_getConf('showpageinfo')){?>
<div class="meta">
<?php tpl_pageinfo()?>
</div>
<?php }?>
<?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>
<?php if ($INFO['editable']){?>
<div class="bar">
<?php
tpl_button('edit').' '.tpl_button('history').' '.
tpl_button('backlink').' '.tpl_button('subscription').' '.
tpl_button('revert')
?>
</div>
<?php }?>
</div><!-- page -->
<div class="sidebar">
<?php minima_sidebar()?>
<hr />
<?php if (tpl_getConf('showsiteactions')){?>
<ul>
<li><div class="li"><?php tpl_actionlink('index')?></div></li>
<li><div class="li"><?php tpl_actionlink('recent')?></div></li>
</ul>
<?php }?>
<div class="search"><?php tpl_searchform()?></div>
<?php if (tpl_getConf('showuseractions')){?>
<hr />
<ul>
<li><div class="li"><?php tpl_actionlink('login')?>
<?php if ($_SERVER['REMOTE_USER']){?>
<?php echo $INFO['userinfo']['name']?>
</div></li>
<?php }?>
<?php if (tpl_get_action('profile')) { ?>
<li><div class="li">
<?php tpl_actionlink('profile')?>
</div></li>
<?php }?>
<?php if ($INFO['perm'] == 255){?>
<li><div class="li"><?php tpl_actionlink('admin')?></div></li>
<?php }?>
</ul>
<?php }?>
</div><!-- sidebar -->
</div><!-- main -->
<?php
// <div class="clearer"></div>
?>
<?php flush()?>
<div class="footer">
<div class="edgeleft"><div class="borderbottom">&nbsp;</div></div>
<div class="edgeright"><div class="borderbottom">&nbsp;</div></div>
</div><!-- footer -->
</div>
<?php /*old includehook*/ @include(dirname(__FILE__).'/footer.html')?>
<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div>
</body>
</html>
+2
View File
@@ -0,0 +1,2 @@
downloadurl=https://trello.com/1/cards/643179bb78a4436a52901700/attachments/64317a1d5959d137f712f5e0/download/template_minima_20140430.zip
installed=Mon, 08 Jul 2024 01:13:15 +0900
+209
View File
@@ -0,0 +1,209 @@
/**
* The CSS in here controls the appearance of the media manager
*/
#media__manager {
height: 100%;
overflow: hidden;
}
#media__left {
color: __text__;
background-color: __background__;
width: 30%;
border-right: solid 1px __border__;
height: 95%;
overflow: auto;
position: absolute;
left: 4px;
padding: 0.5em;
}
#media__right {
color: __text__;
background-color: __background__;
width: 64%;
height: 95%;
overflow: auto;
position: absolute;
right: 4px;
padding: 0.5em;
}
#media__manager h1 {
margin: 0;
padding: 0;
margin-bottom: 0.5em;
}
/* --- Tree formatting --- */
#media__tree img {
float: left;
padding: 0.5em 0.3em 0 0;
}
#media__tree ul {
list-style-type: none;
list-style-image: none;
margin-left: 1.5em;
}
#media__tree li {
clear: left;
list-style-type: none;
list-style-image: none;
}
*+html #media__tree li,
* html #media__tree li {
border: 1px solid __background__;
}/* I don't understand this, but this fixes a style bug in IE;
it's dirty, so any "real" fixes are welcome */
/* --- options --- */
#media__opts {
padding-left: 1em;
margin-bottom: 0.5em;
}
#media__opts input {
float: left;
display: block;
margin-top: 4px;
position: absolute;
}
*+html #media__opts input,
* html #media__opts input {
position: static;
}
#media__opts label {
display: block;
float: left;
margin-left: 30px;
margin-bottom: 4px;
}
*+html #media__opts label,
* html #media__opts label {
margin-left: 10px;
}
#media__opts br {
clear: left;
}
/* --- file list --- */
#media__content img.load {
margin: 1em auto;
}
#media__content #scroll__here {
border: 1px dashed __border__;
}
#media__content .odd {
background-color: __background__;
padding: 0.4em;
}
#media__content .even {
padding: 0.4em;
}
#media__content a.mediafile {
margin-right: 1.5em;
font-weight: bold;
}
#media__content div.detail {
padding: 0.3em 0 0.3em 2em;
}
#media__content div.detail div.thumb {
float: left;
width: 130px;
text-align: center;
margin-right: 0.4em;
}
#media__content img.btn {
vertical-align: text-bottom;
}
#media__content div.example {
color: __text_neu__;
margin-left: 1em;
}
/* --- upload form --- */
#media__content div.upload {
font-size: 90%;
padding: 0 0.5em 0.5em 0.5em;
}
#media__content form#dw__upload,
#media__content div#dw__flashupload {
display: block;
border-bottom: solid 1px __border__;
padding: 0 0.5em 1em 0.5em;
}
#media__content form#dw__upload fieldset {
padding: 0;
margin: 0;
border: none;
width: auto;
}
#media__content form#dw__upload p {
text-align: left;
padding: 0.25em 0;
margin: 0;
line-height: 1.0em;
}
#media__content form#dw__upload label.check {
float: none;
width: auto;
margin-left: 11.5em;
}
/* --- meta edit form --- */
#media__content form.meta {
display: block;
padding: 0 0 1em 0;
}
#media__content form.meta label {
display: block;
width: 25%;
float: left;
font-weight: bold;
margin-left: 1em;
clear: left;
}
#media__content form.meta .edit {
font: 100% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
float: left;
width: 70%;
padding-right: 0;
padding-left: 0.2em;
margin: 2px;
}
#media__content form.meta textarea.edit {
height: 8em;
}
#media__content form.meta div.metafield {
clear: left;
}
#media__content form.meta div.buttons {
clear: left;
margin-left: 20%;
padding-left: 1em;
}
+50
View File
@@ -0,0 +1,50 @@
<?php
/**
* DokuWiki Default Template
*
* This is the template for the media manager popup
*
* You should leave the doctype at the very top - It should
* always be the very first line of a document.
*
* @link http://dokuwiki.org/templates
* @author Andreas Gohr <andi@splitbrain.org>
*/
?>
<?php
/**
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
*/
?>
<!DOCTYPE html>
<html lang="<?php echo $conf['lang']?>" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
<?php echo hsc($lang['mediaselect'])?>
[<?php echo strip_tags($conf['title'])?>]
</title>
<?php tpl_metaheaders()?>
<link rel="shortcut icon" href="<?php echo tpl_basedir()?>images/favicon.ico" />
</head>
<body>
<div id="media__manager" class="dokuwiki">
<div id="media__left">
<?php html_msgarea()?>
<h1><?php echo hsc($lang['mediaselect'])?></h1>
<?php /* keep the id! additional elements are inserted via JS here */?>
<div id="media__opts"></div>
<?php tpl_mediaTree() ?>
</div>
<div id="media__right">
<?php tpl_mediaContent() ?>
</div>
</div>
</body>
</html>
+248
View File
@@ -0,0 +1,248 @@
body {
font: 10pt "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
background-color: White;
color: Black;
}
table {
font-size: 100%;
padding: 0;
margin: 0;
}
tr,td,th { padding: 0; margin: 0; }
img { border: 0; }
a {
color: #000000;
text-decoration: none;
background: none !important;
}
a.interwiki {
padding-left: 0px !important;
}
div.meta {
clear: both;
margin-top: 1em;
font-size: 70%;
text-align: right;
}
div.notify,
div.info,
div.success,
div.error,
div.breadcrumbs,
div.secedit {
display: none;
}
/* --------------------- Text formating -------------------------------- */
/* external link */
a.urlextern:after {
content: " [" attr(href) "]";
font-size: 90%;
}
/* interwiki link */
a.interwiki:after {
content: " [" attr(href) "]";
font-size: 90%;
}
/* email link */
a.mail:after {
content: " [" attr(href) "]";
font-size: 90%;
}
/* existing wikilink */
a.wikilink1 { text-decoration: underline; }
/* the document */
div.page {
text-align: justify;
}
/* general headline setup */
h1, h2, h3, h4, h5 {
color: Black;
background-color: transparent;
font-family: "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: normal;
margin-left: 0;
margin-right: 0;
margin-top: 0;
margin-bottom: 1em;
padding-left: 0;
padding-right: 0;
padding-top: 0.5em;
padding-bottom: 0;
border-bottom: 1px solid #000000;
clear: left;
}
/* special headlines */
h1 { font-size: 160%; font-weight: bold; }
h2 { font-size: 150%; }
h3 { font-size: 140%; border-bottom: none; }
h4 { font-size: 120%; border-bottom: none; }
h5 { font-size: 100%; border-bottom: none; }
/* embedded images */
img.media {
margin: 3px;
}
img.medialeft {
border: 0;
float: left;
margin: 0 1.5em 0 0;
}
img.mediaright {
border: 0;
float: right;
margin: 0 0 0 1.5em;
}
/* unordered lists */
ul {
line-height: 1.5em;
list-style-type: square;
margin: 0 0 1em 3.5em;
padding: 0;
}
/* ordered lists */
ol {
line-height: 1.5em;
margin: 0 0 1em 3.5em;
padding: 0;
font-weight: normal;
}
div.dokuwiki li ul {
margin-bottom: 0;
}
div.dokuwiki li ol {
margin-bottom: 0;
}
div.dokuwiki ol { list-style-type: decimal; }
div.dokuwiki ol ol { list-style-type: upper-roman; }
div.dokuwiki ol ol ol { list-style-type: lower-alpha; }
div.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
/* the list items overriding the ol definition */
span.li {
font-weight: normal;
}
pre {
font-family: monospace;
}
/* code blocks by indention */
pre.pre {
font-size: 8pt;
padding: 0.5em;
border: 1px dashed #000000;
color: Black;
overflow: visible;
}
/* code blocks by code tag */
pre.code {
font-size: 8pt;
padding: 0.5em;
border: 1px dashed #000000;
color: Black;
overflow: visible;
}
/* inline code words */
code {
font-size: 120%;
}
/* code blocks by file tag */
pre.file {
font-size: 8pt;
padding: 0.5em;
border: 1px dotted #000000;
color: Black;
overflow: visible;
}
/* footnotes */
div.footnotes {
clear: both;
border-top: 1px solid #000000;
padding-left: 1em;
margin-top: 1em;
}
div.fn {
font-size: 90%;
}
a.fn_top {
vertical-align: super;
font-size: 80%;
}
a.fn_bot {
vertical-align: super;
font-size: 80%;
font-weight: bold;
}
acronym {
border: 0;
}
/* ---------- inline tables ------------------- */
table.inline {
font-size: 80%;
background-color: #ffffff;
border-spacing: 0px;
border-collapse: collapse;
}
table.inline th {
padding: 3px;
border: 1px solid #000000;
border-bottom: 2px solid #000000;
}
table.inline td {
padding: 3px;
border: 1px solid #000000;
}
.leftalign {
text-align: left;
}
.centeralign {
text-align: center;
}
.rightalign {
text-align: right;
}
/*.toc, .footerinc, .header, .bar, .user { display: none; }*/
#dw__toc, .footerinc, .header, .bar, .user { display: none; }
.sidebar { display: none; }
+155
View File
@@ -0,0 +1,155 @@
/**
* Layout and design corrections for right-to-left languages
*
* @author Andreas Gohr <andi@splitbrain.org>
* @author Dotan Kamber <kamberd@yahoo.com>
*/
.bar-left {
float: right;
text-align: right;
}
.bar-right {
float: left;
text-align: left;
}
.pagename {
float: right;
text-align: right;
}
.logo {
float: left;
text-align: left;
}
label {
text-align: left;
}
label.simple {
text-align: right;
}
div.meta div.user {
float: right;
}
div.meta div.doc {
text-align: left;
}
/* ------------------ Design corrections --------------------------------- */
div.dokuwiki ul,
div.dokuwiki ol {
margin: 0.5em 3.5em 0.5em 0;
}
div.dokuwiki li ul,
div.dokuwiki li ol {
margin: 0.5em 1.5em 0.5em 0;
}
div.dokuwiki a.urlextern,
div.dokuwiki a.interwiki,
div.dokuwiki a.windows,
div.dokuwiki a.mail,
div.dokuwiki a.mail.JSnocheck {
/* should work but doesn't - so we just disable icons here*/
/*
background-position: right 1px;
padding-right: 16px;
*/
background-image: none !important;
padding: 0px 0px 0px 0px;
}
div.dokuwiki div.secedit input.button {
float: left;
}
/* headlines */
div.dokuwiki h1, div.dokuwiki h2, div.dokuwiki h3, div.dokuwiki h4, div.dokuwiki h5 {
clear: right;
}
/* special headlines */
div.dokuwiki h1 { margin-left: 0px; margin-right: 0px; }
div.dokuwiki h2 { margin-left: 0px; margin-right: 20px; }
div.dokuwiki h3 { margin-left: 0px; margin-right: 40px; }
div.dokuwiki h4 { margin-left: 0px; margin-right: 60px; }
div.dokuwiki h5 { margin-left: 0px; margin-right: 80px; }
/* indent different sections */
div.dokuwiki div.level1 { margin-left: 0px; margin-right: 3px; }
div.dokuwiki div.level2 { margin-left: 0px; margin-right: 23px; }
div.dokuwiki div.level3 { margin-left: 0px; margin-right: 43px; }
div.dokuwiki div.level4 { margin-left: 0px; margin-right: 63px; }
div.dokuwiki div.level5 { margin-left: 0px; margin-right: 83px; }
/* TOC control */
div.dokuwiki div.toc {
float: left;
}
div.dokuwiki div.tocheader {
text-align: right;
}
div.dokuwiki #toc__inside {
text-align: right;
}
div.dokuwiki ul.toc {
padding: 0;
padding-right: 1em;
}
div.dokuwiki ul.toc li {
background-position: right 0.6em;
padding-right: 0.4em;
direction: rtl;
}
div.dokuwiki ul.toc li.clear {
padding-right: 0.4em;
}
div.dokuwiki .code {
direction: ltr;
text-align: left;
}
div.dokuwiki blockquote {
border-left: 0;
padding-left: 0;
border-right: 2px solid __border__;
padding-right: 3px;
}
/* Admin corrections */
#admin__version {
clear: right;
float: left;
}
.dokuwiki ul.admin_tasks {
float: right;
}
.dokuwiki ul.admin_tasks li {
padding-left: 0px;
padding-right: 35px;
background: transparent none no-repeat scroll right 0;
text-align: right;
}
/* Search corrections */
div.dokuwiki ul.search_quickhits li {
float: right;
}
div#qsearch__out {
text-align: right;
}
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_blue"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#003f9e"
__background_alt__ = "#d9e8ff"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#61a0ff"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#c2daff"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_blue"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#003f9e"
__background_alt__ = "#d9e8ff"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#61a0ff"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#c2daff"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_brown"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#9e6400"
__background_alt__ = "#fff1d9"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#ffc561"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#ffe9c2"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_gray"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#6f6f6f"
__background_alt__ = "#eaeaea"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#a6a6a6"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#dddddd"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_green"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#009e08"
__background_alt__ = "#d9ffdb"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#61ff69"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#c2ffc5"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_pink"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#9e0028"
__background_alt__ = "#ffd9e2"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#ff6188"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#ffc2d1"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"
+72
View File
@@ -0,0 +1,72 @@
; Please see http://www.php.net/manual/en/function.parse-ini-file.php
; for limitations of the ini format used here
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. hebrew)
[stylesheets]
layout.css = screen
design.css = screen
style.css = screen
media.css = screen
_mediaoptions.css = screen
_admin.css = screen
_linkwiz.css = screen
_subscription.css = screen
rtl.css = rtl
print.css = print
; This section is used to configure some placeholder values used in
; the stylesheets. Changing this file is the simplest method to
; give your wiki a new look.
[replacements]
; the theme color
__theme__ = "_purple"
;--------------------------------------------------------------------------
;------ guaranteed dokuwiki color placeholders that every plugin can use
; main text and background colors
__text__ = "#000"
__background__ = "#fff"
; alternative text and background colors
__text_alt__ = "#32009e"
__background_alt__ = "#e5d9ff"
; neutral text and background colors
__text_neu__ = "#6f6f6f"
__background_neu__ = "#f2f2f2"
; border color
__border__ = "#9361ff"
;--------------------------------------------------------------------------
; other text and background colors
__text_other__ = "#c8c8c8"
__background_other__ = "#d5c2ff"
; these are used for links
__extern__ = "#003f9e"
__existing__ = "#009e08"
__missing__ = "#9e0028"
; highlighting search snippets
__highlight__ = "#ffdb9e"
;--------------------------------------------------------------------------
;------ for keeping old templates and plugins compatible to the old pattern
; (to be deleted at the next or after next release)
__white__ = "#fff"
__lightgray__ = "#f5f5f5"
__mediumgray__ = "#ccc"
__darkgray__ = "#666"
__black__ = "#000"
; these are the shades of blue
__lighter__ = "#f7f9fa"
__light__ = "#eef3f8"
__medium__ = "#dee7ec"
__dark__ = "#8cacbb"
__darker__ = "#638c9c"