# converted from SQL config format
# http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg01430.html
#-- The "skin" configuration exported from
#-- repository
#-- on 2010-01-25 17:32:55
config /config 3569
1326393356 'css' value '/* General settings for the entire page */
body {
margin: 0ex 1ex;
padding: 0px;
background-color: #dddddd;
font-family: "sans serif";
}
/* The project logo in the upper left-hand corner of each page */
div.logo {
display: table-cell;
text-align: center;
vertical-align: bottom;
font-weight: bold;
color: #558195;
}
/* The page title centered at the top of each page */
div.title {
display: table-cell;
font-size: 2em;
font-weight: bold;
text-align: left;
padding: 0 0 0 1em;
color: #558195;
vertical-align: bottom;
width: 100%;
}
/* The login status message in the top right-hand corner */
div.status {
display: table-cell;
text-align: right;
vertical-align: bottom;
color: #558195;
font-size: 0.8em;
font-weight: bold;
}
/* The header across the top of the page */
div.header {
display: table;
width: 100%;
}
/* The main menu bar that appears at the top of the page beneath
** the header */
div.mainmenu {
padding: 5px 10px 5px 10px;
font-size: 0.9em;
font-weight: bold;
text-align: center;
letter-spacing: 1px;
background-color: #558195;
color: white;
}
/* The submenu bar that *sometimes* appears below the main menu */
div.submenu {
padding: 3px 10px 3px 0px;
font-size: 0.9em;
text-align: center;
background-color: #456878;
color: white;
}
div.mainmenu a, div.mainmenu a:visited, div.submenu a, div.submenu a:visited {
padding: 3px 10px 3px 10px;
color: white;
text-decoration: none;
}
span.mainmenusmall, span.mainmenusmall a, span.mainmenusmall a:visited {
padding: 3px 3px 3px 0px;
font-size: 0.8em;
vertical-align: top;
color: lightgrey;
text-decoration: none;
}
div.mainmenu a:hover, div.submenu a:hover {
color: #558195;
background-color: white;
}
/* All page content from the bottom of the menu or submenu down to
** the footer */
div.content {
padding: 0ex 1ex 0ex 2ex;
}
/* Some pages have section dividers */
div.section {
margin-bottom: 0px;
margin-top: 1em;
padding: 1px 1px 1px 1px;
font-size: 1.2em;
font-weight: bold;
background-color: #558195;
color: white;
}
/* The "Date" that occurs on the left hand side of timelines */
div.divider {
background: #a1c4d4;
border: 2px #558195 solid;
font-size: 1em; font-weight: normal;
padding: .25em;
margin: .2em 0 .2em 0;
float: left;
clear: left;
}
/* The footer at the very bottom of the page */
div.footer {
font-size: 0.8em;
margin-top: 12px;
padding: 5px 10px 5px 10px;
text-align: right;
background-color: #558195;
color: white;
}
/* and below the footer at the very bottom of the page */
div.bfooter {
font-size: 0.7em;
margin-top: 0px;
padding: 5px 10px 5px 10px;
text-align: center;
color: #558195;
}
/* Make the links in the footer less ugly... */
div.footer a { color: white; }
div.footer a:link { color: white; }
div.footer a:visited { color: white; }
div.footer a:hover { background-color: white; color: #558195; }
/* <verbatim> blocks */
pre.verbatim {
background-color: #f5f5f5;
padding: 0.5em;
}
/* The label/value pairs on (for example) the ci page */
table.label-value th {
vertical-align: top;
text-align: right;
padding: 0.2ex 2ex;
}
/* For marking important UI elements which shouldn''t be
lightly dismissed. I mainly use it to mark "not yet
implemented" parts of a page. Whether or not to have
a ''border'' attribute set is arguable. */
.achtung {
color: #ff0000;
background: #ffff00;
border: 1px solid #ff0000;
}
div.miniform {
font-size: smaller;
margin: 8px;
}
'
config /config 1657
1326393356 'header' value '<html>
<head>
<title>$<project_name>: $<title></title>
<link rel="alternate" type="application/rss+xml" title="RSS Feed"
href="$baseurl/timeline.rss">
<link rel="stylesheet" href="$baseurl/style.css" type="text/css"
media="screen">
</head>
<body>
<div class="header">
<div class="logo">
<img src="/logo" alt="logo">
<br><nobr>$<project_name></nobr>
</div>
<div class="title">$<title></div>
<div class="status"><nobr><th1>
if {[info exists login]} {
puts "Logged in as $login - "
html "<a href=''$baseurl/login''>Logout</a> "
} else {
puts "Not logged in - "
html "<a href=''$baseurl/login''>Login</a> "
}
</th1></nobr></div>
</div>
<div class="mainmenu"><th1>
html "<a href=''$baseurl$index_page''>Home</a> "
if {[hascap h]} {
html "<a href=''$baseurl/dir?ci=trunk''>Files</a> "
html "<span class=''mainmenusmall''>"
html "<a href=''$baseurl/dir''>all</a> "
html "</span>"
}
if {[hascap o]} {
html "<a href=''$baseurl/leaves''>Leaves</a> "
html "<a href=''$baseurl/timeline''>Timeline</a> "
html "<a href=''$baseurl/brlist''>Branches</a> "
html "<a href=''$baseurl/taglist''>Tags</a> "
}
if {[hascap r]} {
html "<a href=''$baseurl/rptview?rn=2''>Tickets</a>"
html "<span class=''mainmenusmall''>"
html "<a href=''$baseurl/reportlist''>all</a>"
html "<a href=''$baseurl/tktnew''>+</a>"
html "</span>"
}
if {[hascap j]} {
html "<a href=''$baseurl/wiki''>Wiki</a> "
}
if {[hascap s]} {
html "<a href=''$baseurl/setup''>Admin</a> "
} elseif {[hascap a]} {
html "<a href=''$baseurl/setup_ulist''>Users</a> "
}
</th1></div>
'
config /config 650
1326393356 'footer' value '<hr>
<th1>
html "<form action=\"timeline\" method=\"post\">"
html "search timeline: "
html "<input name=\"s\" type=\"text\" size=\"30\" maxlength=\"40\" "
if {[hascap o]} {
html "value=\"\" "
} else {
html "disabled value=\"please log on!\" "
}
html "/> "
html "<input type=\"submit\" "
if {[hascap o]} {
html "value=\"Go\" "
} else {
html "disabled value=\"disabled\" "
}
html "/>"
html "</form>"
</th1>
<div class="footer">
<a href="http://mordor:8001">Fossil</a> version $manifest_version $manifest_date
</div>
</body></html>'