web/archives.php
changeset 248 ffb0a6d08000
parent 236 af97b1520964
child 251 d81cc587cc4d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/archives.php	Wed Jul 27 12:25:45 2011 +0200
@@ -0,0 +1,114 @@
+<?php
+error_reporting(E_ALL);
+ini_set('display_errors', '1');
+/**
+ * include some common code (like we did in the 90s)
+ * People still do this? ;)
+ */
+include_once './common.php';
+
+
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html lang="<?php echo($actual); ?>">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+    <title>Polemic tweet - Live Video and Annotation</title>
+
+    <!-- Framework CSS -->
+    <link rel="stylesheet" href="<?php echo(registry_url('blueprint-screen','css'));?>" type="text/css" media="screen, projection"/>
+    <link rel="stylesheet" href="<?php echo(registry_url('blueprint-print','css'));?>" type="text/css" media="print"/>
+    <!--[if lt IE 8]><link rel="stylesheet" href="<?php echo(registry_url('blueprint-ie','css'));?>" type="text/css" media="screen, projection"><![endif]--> 
+	<link rel="stylesheet" href="<?php echo(registry_url('blueprint-plugins-fancy-type','css'));?>" type="text/css" media="screen, projection"/>
+	<link rel="stylesheet" href="<?php echo(registry_url('custom','css'));?>" type="text/css" media="screen, projection"/>
+
+	<!-- JAVASCRIPT --> 
+	<script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script>
+
+	<!-- FONT -->
+	<link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'>
+	<link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'>
+	<link href='<?php echo(registry_url('Geo','font'));?>' rel='stylesheet' type='text/css'>
+
+	<script type="text/javascript">
+
+		$(function() {
+			$(".archivesVideoBox").mouseover(function() {
+				$(this).css({'backgroundColor':'#fff'});
+				$(this).cursor = "pointer";
+			}).mouseout(function() {
+				$(this).css({'backgroundColor':'#f2f2f2'});
+			});
+		});
+
+		var _gaq = _gaq || [];
+		_gaq.push(['_setAccount', 'UA-23581291-1']);
+		_gaq.push(['_trackPageview']);
+		
+		(function() {
+		    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+		    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+		    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+		})();
+	
+	</script>
+  </head>
+  <body>
+	<div id="sendUsFeedBack"><a href="https://spreadsheets.google.com/spreadsheet/viewform?hl=en_US&formkey=dDZILVdXVHRzd0xhWGVZXzkweHN2RGc6MQ#gid=0" target="_blank"><img src="/images/sendusfeedback.png"></a></div>
+    <div class="container">
+      <img src="images/ENMI_2010_logo.gif" class="logo">
+	  <ul class="menu"> 
+		  <li class="menuUnderline"><a href="<?php echo(URL_ROOT); ?>" class="menuLink">
+		  	<?php print $translate->_("Accueil"); ?></a></li>
+		  <li class="menuUnderline"><a href="<?php echo(URL_ROOT); ?>about.php" class="menuLink">
+		  	<?php print $translate->_("A propos"); ?></a></li>
+		  <li ><a href="mailto:contact@iri.centrepompidou.fr" class="menuLink" >
+		  	<?php print $translate->_("Contact"); ?></a></li>
+	  </ul>
+	  <ul class="menu"> 
+		  <li class="menuUnderline"><a href="<?php echo(URL_ROOT); ?>archives.php" class="menuLink">
+		  	<?php print $translate->_("Archives"); ?></a></li>
+	  </ul>
+	  
+	  
+	  <ul class="menu lang" > 
+	  <li class="menuUnderline"><a href="<?php echo(URL_ROOT); ?>archives.php?lang=ja_JP" class="menuLink" >
+	       <img src='images/flag_jp.gif'<?php if($actual!="ja_JP"){echo("style='opacity: .5;'"); } ?> />
+	        <?php print $translate->_("Japonais"); ?></a></li>
+	  <li class="menuUnderline"><a href="<?php echo(URL_ROOT); ?>archives.php?lang=fr" class="menuLink">
+	       <img src='images/flag_fr.gif' <?php if($actual!="fr"){echo("style='opacity: .5;'"); } ?> />
+	       <?php print $translate->_("Français"); ?></a></li>
+	  <li ><a href="<?php echo(URL_ROOT); ?>archives.php?lang=en" class="menuLink">
+	       <img src='images/flag_en.gif' <?php if($actual!="en"){echo("style='opacity: .5;'"); } ?> />
+	       <?php print $translate->_("Anglais"); ?></a></li>
+	  </ul>
+	</div>
+	<div class="container">
+	  <!-- --> 
+	  <div class="archivesBoxArchives">
+		<div class="archivesBoxContainer">
+			<!-- -->
+			<h3 class="archivesTitle"><?php print $translate->_("Archive Title :"); ?></h3>
+			<!-- -->
+			<div id="all_archives">
+			    <?php display_archives_list($archives_list, "archive_box_3", URL_ROOT, dirname(__FILE__)."/"); ?>
+			</div>
+		</div>
+	  </div>
+	 
+      <div class="footer">
+		<hr>
+		<?php
+			print $translate->_("footer text home"); 
+			if (isset($_SESSION['TWITTER_ACCESS_TOKEN'])){
+					echo("| 	<a href='clear.php'  class='footerLink'>".$translate->_("D&eacute;connexion")."</a>");
+			}
+		 ?>
+		  <input type="text" id="txt" size="3" style="visibility:hidden;"/>
+	  </div>   
+	
+
+    </div>
+	
+  </body>
+</html>