|
501
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
if(!isset($_REQUEST['rep'])) { |
|
|
4 |
include_once dirname(__FILE__).'/common.php'; |
|
|
5 |
header('Location: ' . URL_ROOT . "$C_default_rep/tweetwall.php" ); |
|
|
6 |
exit(); |
|
|
7 |
} |
|
|
8 |
|
|
|
9 |
$rep = $_REQUEST['rep']; |
|
|
10 |
include_once dirname(__FILE__).'/'.$rep.'/config.php'; |
|
|
11 |
|
|
|
12 |
include_once 'common.php'; |
|
|
13 |
|
|
|
14 |
$head_logo = URL_ROOT."$rep/images/head_logo.gif"; |
|
|
15 |
if($translate->_('config__head_logo') != 'config__head_logo' && $translate->_('config__head_logo') != null ) { |
|
|
16 |
$head_logo = URL_ROOT."$rep/".$translate->_('config__head_logo'); |
|
|
17 |
} |
|
|
18 |
?> |
|
|
19 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|
|
20 |
"http://www.w3.org/TR/html4/strict.dtd"> |
|
|
21 |
|
|
|
22 |
<html lang="<?php echo($actual); ?>"> |
|
|
23 |
<head> |
|
|
24 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
25 |
<title>Tweet Wall</title> |
|
|
26 |
<meta http-equiv="X-UA-Compatible" content="IE=9" /> |
|
|
27 |
|
|
|
28 |
<!-- FONT --> |
|
|
29 |
<link href='<?php echo(registry_url('PT-Sans_Narrow','font'))?>' rel='stylesheet' type='text/css'> |
|
|
30 |
<link href='<?php echo(registry_url('PT-Sans','font'))?>' rel='stylesheet' type='text/css'> |
|
|
31 |
|
|
|
32 |
<!-- CSS --> |
|
|
33 |
<link rel="stylesheet" href="<?php echo(registry_url('tweetcast','css'));?>" type="text/css" media="screen, projection"/> |
|
|
34 |
|
|
|
35 |
<!-- JAVASCRIPT --> |
|
|
36 |
<script type="text/javascript" src="<?php echo(registry_url('jquery','js'))?>"></script> |
|
|
37 |
<script type="text/javascript" src="<?php echo(registry_url('jquery-mousewheel','js'))?>"></script> |
|
|
38 |
<script type="text/javascript" src="<?php echo(registry_url('jquery-scrollto','js'))?>"></script> |
|
|
39 |
<script type="text/javascript" src="<?php echo(registry_url('underscore','js'))?>"></script> |
|
|
40 |
<script type="text/javascript" src="<?php echo(registry_url('raphael','js'))?>"></script> |
|
|
41 |
|
|
|
42 |
<script type="text/javascript"> |
|
|
43 |
// <?php if (isset($config['hashtag'])) echo "var tracking_keywords = ".json_encode(array($config['hashtag'])).";"; ?> |
|
|
44 |
|
|
|
45 |
|
|
|
46 |
var tracking_keywords = ['sarkozy']; |
|
|
47 |
|
|
|
48 |
<?php if (isset($config['js_config'])) echo $config['js_config']; ?> |
|
|
49 |
</script> |
|
|
50 |
<script type="text/javascript" src="<?php echo(registry_url('twcx-main','js'))?>"></script> |
|
|
51 |
|
|
|
52 |
<script type="text/javascript"> |
|
|
53 |
|
|
|
54 |
var _gaq = _gaq || []; |
|
|
55 |
_gaq.push(['_setAccount', 'UA-23581291-1']); |
|
|
56 |
_gaq.push(['_trackPageview']); |
|
|
57 |
_gaq.push(['_setAllowAnchor', true]); |
|
|
58 |
|
|
|
59 |
(function() { |
|
|
60 |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
|
|
61 |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
|
|
62 |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
|
|
63 |
})(); |
|
|
64 |
|
|
|
65 |
</script> |
|
|
66 |
|
|
|
67 |
</head> |
|
|
68 |
<body class="tweetwall"> |
|
|
69 |
<div id="sendUsFeedBack"><a href="<?php echo($C_feedback_form_url); ?>" target="_blank"><img src="<?php echo(URL_ROOT); ?>images/sendusfeedback.png"></a></div> |
|
|
70 |
|
|
|
71 |
<div id="container"> |
|
|
72 |
|
|
|
73 |
|
|
|
74 |
<div id="tweetviz"> |
|
|
75 |
<ul id="tweetlist"></ul> |
|
|
76 |
<div id="timeline"></div> |
|
|
77 |
<div id="scrollcont"> |
|
|
78 |
<div id="scrollin"></div> |
|
|
79 |
</div> |
|
|
80 |
</div> |
|
|
81 |
</div> |
|
|
82 |
</div> |
|
|
83 |
<img src="<?php echo($head_logo); ?>" width="171" height="63" /> |
|
|
84 |
<!-- <div id="hovertweet"> |
|
|
85 |
<div id="hovercontent"></div> |
|
|
86 |
<div id="hoverarrow"></div> |
|
|
87 |
</div> --> |
|
|
88 |
</body> |
|
|
89 |
</html> |