2006/unicorn/WebContent/WEB-INF/resources/templates/includes head.vm,1.5,1.6

Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/includes
In directory hutz:/tmp/cvs-serv26259/WebContent/WEB-INF/resources/templates/includes

Modified Files:
	head.vm 
Log Message:
the result page favicon is now green or red according to the observation results

Index: head.vm
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates/includes/head.vm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- head.vm	2 Sep 2009 09:04:40 -0000	1.5
+++ head.vm	9 Sep 2009 10:19:59 -0000	1.6
@@ -3,7 +3,20 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="$lang" lang="$lang">
 <head>
 	<title>$noEscape_title</title>
-	<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon" />
+#if ($fav)
+	<link rel="icon" href="/unicorn/images/$fav" type="image/x-icon" />
+#else
+	<link rel="icon" href="/unicorn/images/favicon.ico" type="image/x-icon" />
+#end
+<!--
+#if ($fav == "red")
+	<link rel="icon" href="/unicorn/images/favicon_red.ico" type="image/x-icon" />
+#elseif ($fav == "green")
+	<link rel="icon" href="./images/favicon_green.ico" type="image/x-icon" />
+#else
+	<link rel="icon" href="./images/favicon.ico" type="image/x-icon" />
+#end
+-->
 	<link rev="start" href="./" title="Home Page" />
 #foreach( $sheet in $css )
 	<link href="./style/$sheet" type="text/css" media="screen" rel="stylesheet" />

Received on Wednesday, 9 September 2009 10:20:10 UTC