ubuntu-bots/Encyclopedia/factoids.tmpl

64 lines
1.7 KiB
Cheetah
Raw Normal View History

2006-06-26 17:57:20 +00:00
<html>
<head>
<title>Ubotu factoids</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="bot.css" />
2007-10-02 21:06:14 +00:00
<link rel="shortcut icon" href="favicon.ico" type="image/png" />
2006-06-26 17:57:20 +00:00
<script type="text/javascript">
var DHTML = (document.getElementById || document.all || document.layers);
function getObj(name) {
if (document.getElementById) {
this.obj = document.getElementById(name);
this.style = document.getElementById(name).style;
}
else if (document.all) {
this.obj = document.all[name];
this.style = document.all[name].style;
}
else if (document.layers) {
this.obj = document.layers[name];
this.style = document.layers[name];
}
}
function toggle(item,prefix) {
var c = new getObj(prefix + '_' + item);
if ( c.style.display == 'inline' ) {
c.style.display = 'none';
}
else {
if ( !c.innerHTML && prefix == 'log' ) {
loadlog(item);
}
else {
c.style.display = 'inline';
}
}
}
</script>
2007-10-02 21:06:14 +00:00
</head>
2006-06-26 17:57:20 +00:00
<body>
<div class="main">
<h1>Ubotu factoids</h1>
2008-11-01 21:34:55 +00:00
%e
2006-06-26 17:57:20 +00:00
<p>
More help: <a href="http://wiki.ubuntu.com/">wiki.ubuntu.com</a> &middot;
<a href="http://help.ubuntu.com/">help.ubuntu.com</a><br />
More factoids: <a href="factoids.cgi?db=ubuntu">Ubuntu</a> &middot;
2007-10-02 21:06:14 +00:00
<a href="factoids.cgi?db=falcon">Falcon</a> &middot;
<a href="factoids.cgi?db=buntudot">buntudot</a> &middot;
<a href="factoids.cgi?db=gnewsense">GNewSense</a><br />
<form action="factoids.cgi" method="GET"><input class="input" type="text" name="search" />
<input class="input" type="submit" value="Search"></form>
<p>
2006-06-26 17:57:20 +00:00
%s
</p>
<p>
<a href="ubuntu.db">Ubuntu factoid database file</a><br />
2006-06-26 17:57:20 +00:00
&copy;2006 Dennis Kaarsemaker
</p>
</div>
</body>
</html>