| author | Raphael Velt <raph.velt@gmail.com> |
| Fri, 24 Aug 2012 13:07:29 +0200 | |
| changeset 684 | f59daf0830d2 |
| parent 683 | cd315f8c70e8 |
| child 685 | b48fe0f2d5b1 |
| permissions | -rw-r--r-- |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
1 |
<?php |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
2 |
|
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
3 |
/** |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
4 |
* include some common code (like we did in the 90s) |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
5 |
* People still do this? ;) |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
6 |
*/ |
|
229
74c9ddc3640b
a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
200
diff
changeset
|
7 |
$rep = $_REQUEST['rep']; |
|
74c9ddc3640b
a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
200
diff
changeset
|
8 |
include_once dirname(__FILE__).'/'.$rep.'/config.php'; |
|
291
db1e6bfaa54e
add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
276
diff
changeset
|
9 |
// configuration |
|
229
74c9ddc3640b
a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
200
diff
changeset
|
10 |
include 'common.php'; |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
11 |
|
|
291
db1e6bfaa54e
add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
276
diff
changeset
|
12 |
// todo : |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
13 |
// - gestion du parent.document.location mediafragment |
|
291
db1e6bfaa54e
add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
276
diff
changeset
|
14 |
// - limite taille vertical embed |
|
db1e6bfaa54e
add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
276
diff
changeset
|
15 |
// - ajouter la polemic timline en dessous de la video |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
16 |
|
| 621 | 17 |
if (is_array($config['metadata'])) { |
18 |
if (array_key_exists("metadata",$_GET) && array_key_exists($_GET['metadata'], $config['metadata'])) { |
|
19 |
$metadata_url = $config['metadata'][$_GET['metadata']]['url']; |
|
20 |
} else { |
|
21 |
$keys = array_keys($config['metadata']); |
|
22 |
$metadata_url = $config['metadata'][$keys[0]]['url']; |
|
23 |
} |
|
24 |
} else { |
|
25 |
$metadata_url = $config['metadata']; |
|
26 |
} |
|
|
657
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
27 |
|
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
28 |
$protocol_level = ( |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
29 |
isset($_REQUEST['protocol_level']) |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
30 |
? $_REQUEST['protocol_level'] |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
31 |
: ( |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
32 |
isset($config['protocol_level']) |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
33 |
? $config['protocol_level'] |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
34 |
: 3 |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
35 |
) |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
36 |
); |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
37 |
|
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
38 |
$protocol_level = min(3,max(0, $protocol_level)); |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
39 |
|
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
40 |
?> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
41 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
42 |
<html lang="en"> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
43 |
<head> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
44 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
45 |
<title>Polemic Tweet Embedded Player</title> |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
46 |
<script type="text/javascript" src="<?php echo(registry_url('metadataplayer','js'));?>"></script> |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
47 |
|
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
48 |
<script type="text/javascript"> |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
49 |
IriSP.libFiles.defaultDir = "<?php echo(registry_url('libdir','js'));?>"; |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
50 |
IriSP.widgetsDir = "<?php echo(registry_url('ldtwidgets','js'));?>"; |
| 638 | 51 |
IriSP.libFiles.locations.jwPlayerSWF = "<?php echo(URL_ROOT); ?>res/mediaplayer/player.swf"; |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
52 |
IriSP.language = "<?php echo($actual) ?>"; |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
53 |
|
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
54 |
var _metadata = { |
|
684
f59daf0830d2
less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents:
683
diff
changeset
|
55 |
url: '<?php echo get_metadata_url($metadata_url) ?>?callback=?', |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
56 |
format: 'ldt' |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
57 |
}; |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
58 |
var _config = { |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
59 |
gui: { |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
60 |
width: 630, |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
61 |
container: 'LdtPlayer', |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
62 |
default_options: { |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
63 |
metadata: _metadata |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
64 |
}, |
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
65 |
css:'<?php echo(registry_url('metadataplayer','css'));?>', |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
66 |
widgets: [ |
|
657
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
67 |
<?php if ($protocol_level > 1): ?> |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
68 |
{ |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
69 |
type: "Polemic" |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
70 |
<?php if ($protocol_level < 3): ?> |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
71 |
, |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
72 |
polemics: [] |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
73 |
<?php endif; ?> |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
74 |
}, |
|
d563fda7b928
Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents:
654
diff
changeset
|
75 |
<?php endif; ?> |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
76 |
{ type: "Slider" }, |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
77 |
{ |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
78 |
type: "Controller", |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
79 |
disable_annotate_btn: true |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
80 |
}, |
|
648
b28afee5470b
Changed Segment widget parameters
Raphael Velt <raph.velt@gmail.com>
parents:
638
diff
changeset
|
81 |
{ |
|
b28afee5470b
Changed Segment widget parameters
Raphael Velt <raph.velt@gmail.com>
parents:
638
diff
changeset
|
82 |
type: "Segments", |
|
b28afee5470b
Changed Segment widget parameters
Raphael Velt <raph.velt@gmail.com>
parents:
638
diff
changeset
|
83 |
annotation_type: [ "chap", "découpage" ] |
|
b28afee5470b
Changed Segment widget parameters
Raphael Velt <raph.velt@gmail.com>
parents:
638
diff
changeset
|
84 |
}, |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
85 |
{ type: "Arrow" }, |
| 650 | 86 |
{ |
87 |
type: "Annotation", |
|
88 |
annotation_type: [ "chap", "découpage" ] |
|
89 |
}, |
|
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
90 |
{ type: "Tweet" }, |
| 623 | 91 |
{ type: "Mediafragment"}, |
92 |
{ |
|
93 |
type: "Trace", |
|
|
652
b3ccfdbd581b
Added a default subject in the Trace Widget
Raphael Velt <raph.velt@gmail.com>
parents:
650
diff
changeset
|
94 |
default_subject: "Polemic" |
| 623 | 95 |
} |
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
96 |
] |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
97 |
}, |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
98 |
player:{ |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
99 |
type:'jwplayer', // player type |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
100 |
live: true, |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
101 |
height: 300, |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
102 |
width: 630, |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
103 |
provider: "rtmp", |
| 638 | 104 |
autostart: true, |
105 |
metadata: _metadata |
|
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
106 |
} |
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
107 |
}; |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
108 |
</script> |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
109 |
<script type="text/javascript"> |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
110 |
var _gaq = _gaq || []; |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
111 |
_gaq.push(['_setAccount', 'UA-23581291-1']); |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
112 |
_gaq.push(['_trackPageview', location.pathname + location.search + location.hash]); |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
113 |
_gaq.push(['_setAllowAnchor', true]); |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
114 |
|
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
115 |
(function() { |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
116 |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
117 |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
118 |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
119 |
})(); |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
120 |
</script> |
|
291
db1e6bfaa54e
add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
276
diff
changeset
|
121 |
<style type="text/css"> |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
122 |
body{ |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
123 |
padding:0px; |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
124 |
margin:0px; |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
125 |
} |
|
620
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
126 |
#LdtPlayer { |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
127 |
margin-bottom: 2px; |
|
953c68b4da79
Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents:
535
diff
changeset
|
128 |
} |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
129 |
</style> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
130 |
<script type="text/javascript"> |
|
372
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
131 |
var _gaq = _gaq || []; |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
132 |
_gaq.push(['_setAccount', 'UA-23581291-1']); |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
133 |
_gaq.push(['_trackPageview', location.pathname + location.search + location.hash]); |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
134 |
_gaq.push(['_setAllowAnchor', true]); |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
135 |
|
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
136 |
(function() { |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
137 |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
138 |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
139 |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
|
4e00513a6c5c
RSLN : edito embed bug (correction)
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
291
diff
changeset
|
140 |
})(); |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
141 |
</script> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
142 |
</head> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
143 |
|
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
144 |
<div id="LdtPlayer"></div> |
|
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
145 |
<script type="text/javascript"> |
| 638 | 146 |
var _myPlayer = new IriSP.Metadataplayer(_config); |
|
535
8276f3ff7a3f
Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents:
372
diff
changeset
|
147 |
</script> |
|
181
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
148 |
</body> |
|
4b9405c06dca
FENS bug 2 add folder
Samuel Huron <samuel.huron@centrepompidou.fr>
parents:
diff
changeset
|
149 |
</html> |