yacy_search_server/htroot/Collage.html
mikeworks f468d377d7 Collage.html and Collage.java: Added <p> in body before images for XHTML 1.0 Transitional validationg and alt tag to images as well as closing tag <img (...) />
terminal_p.html: Set new link for starting a crawl to CrawlStartSite_p.html and replaced the old embed object of the Among.us Flash object by their new JS which takes care of adding the object correctly
de.lng: Moved the translations for the JS part from yacyinteractive.html to the yacyinteractive.js part
--> Terminal page is now valid XHTML 1.0 Transitional


git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7211 6c8d7289-2bf4-0310-a012-ef5d649a1542
2010-09-29 23:11:29 +00:00

76 lines
1.3 KiB
HTML
Executable File

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Image Collage</title>
#%env/templates/metas.template%#
<style type="text/css">
#left {
float: left;
width: 224px;
}
form dt {
width: 40px;
}
form dd {
width: 130px;
text-align:right;
}
</style>
<meta http-equiv="REFRESH" content="#[refresh]#" />
<script type="text/javascript">
var CollageLastImageZIndex;
function raise (element)
{
var img = document.getElementById("col" + element);
CollageLastImageZIndex = img.style.zIndex;
img.style.zIndex = 0xffff;
}
function lower (element)
{
var img = document.getElementById("col" + element);
img.style.zIndex = CollageLastImageZIndex;
}
</script>
#(emb)#
<script type="text/javascript">
document.body.style.background = "#000";
</script>
::
#(/emb)#
</head>
<body>
<p>
#(emb)#
::
#%env/templates/header.template%#
#%env/templates/submenuWebStructure.template%#
<h2>Image Collage</h2>
<div id="left">
<form action="/Collage.html">
<dl>
<dt>Private Queue</dt>
<dd>#[privateQueueSize]#</dd>
<dt>Public Queue</dt>
<dd>#[publicQueueSize]#</dd>
</dl>
</form>
</div>
#(/emb)#
#(imgurl)#
::
#{list}#
#[url]#
#{/list}#
#(/imgurl)#
#(emb)#::
#%env/templates/footer.template%#
#(/emb)#
</p>
</body>
</html>