web/polemicaltimeline.php
author Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
Wed, 20 May 2015 19:37:20 +0200
changeset 1244 87583b020202
parent 1240 d7d4f53f2526
child 1295 03d2aa7b4967
permissions -rwxr-xr-x
put ldt platform url in config
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     1
<?php
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     2
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     3
/**
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     4
 * include some common code (like we did in the 90s)
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     5
 * People still do this? ;)
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
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: 227
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: 227
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
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    10
include 'common.php';
291
db1e6bfaa54e add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 276
diff changeset
    11
 // objet actuel
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    12
$baseurl = URL_ROOT;
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    13
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    14
$div_height = 640;
291
db1e6bfaa54e add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 276
diff changeset
    15
if($translate->_('config__div_height') != 'config__div_height') {
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    16
    $div_height = $translate->_('config__div_height');
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    17
}
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    18
$tweet_explain_background = URL_ROOT.'images/tweetExplainBgd.gif';
233
10d6fd6ce9ab - put all in a registry
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 229
diff changeset
    19
if(file_exists(dirname(__FILE__)."/$rep/images/tweetExplainBgd.gif")) {
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    20
    $tweet_explain_background = URL_ROOT.$rep.'/images/tweetExplainBgd.gif';
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 227
diff changeset
    21
}
220
42aeb2bfc58e publish chi07 and fens Fablab
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 205
diff changeset
    22
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
    23
$head_logo = URL_ROOT."$rep/images/head_logo.gif";
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
    24
if($translate->_('config__head_logo') != 'config__head_logo' && $translate->_('config__head_logo') != null ) {
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
    25
    $head_logo = URL_ROOT."$rep/".$translate->_('config__head_logo');
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
    26
}
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    27
202
2bf0fd3432bf put more than one content for the polemical timeline
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 197
diff changeset
    28
$url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
2bf0fd3432bf put more than one content for the polemical timeline
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 197
diff changeset
    29
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    30
$protocol_level = (
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    31
    isset($_REQUEST['protocol_level'])
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    32
    ? $_REQUEST['protocol_level']
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    33
    : (
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    34
        isset($config['protocol_level'])
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    35
        ? $config['protocol_level']
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    36
        : 3
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    37
    )
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    38
);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    39
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    40
$protocol_level = min(3,max(0, $protocol_level));
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    41
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    42
$use_protocol = (isset($_REQUEST['protocol_level']) || isset($config['protocol_level']));
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    43
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    44
if ($use_protocol && !isset($_SESSION['answered_events'])) {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    45
    $_SESSION['answered_events'] = array();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    46
}
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    47
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    48
$show_splash = ( $use_protocol && !in_array($rep, $_SESSION['answered_events']) );
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    49
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    50
if ($show_splash) {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    51
    array_push($_SESSION['answered_events'], $rep);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    52
}
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    53
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    54
?>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    55
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    56
<html lang="<?php echo($actual); ?>">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    57
  <head>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    58
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
922
2ca61ac043e3 Added information about connection
Raphael Velt <raph.velt@gmail.com>
parents: 899
diff changeset
    59
    <title>Polemic tweet &mdash; <?php echo($translate->_('config__title')); ?></title>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    60
    <meta name="keywords" content="<?php echo($translate->_('config__keywords')); ?>"><!-- add timestampedmetadata -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    61
    <!--<meta name="description" content="PoelmicTweet.fr : debate mapping, opinion, conference, video">-->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    62
    <meta name="description" content="<?php echo(strip_tags($translate->_('config__description'))); ?>">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    63
    <meta name="robots" content="index, follow">
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    64
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    65
    <!-- ICI : <?php echo($_SERVER['DOCUMENT_ROOT']); ?> -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    66
    <!-- JAVASCRIPT -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    67
    <script type="text/javascript" src="<?php echo(registry_url('json-js','js'));?>"></script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    68
    <script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    69
    <script type="text/javascript">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    70
        $.noConflict();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    71
    </script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    72
    <script type="text/javascript" src="<?php echo(registry_url('fancybox','js'));?>"></script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    73
    <script type="text/javascript" src="<?php echo(registry_url('jquery-url','js'));?>"></script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    74
    <script type="text/javascript" src="<?php echo(registry_url('metadataplayer','js'));?>"></script>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    75
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    76
    <!-- Framework CSS -->
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
    77
    <link rel="stylesheet" href="<?php echo(registry_url('tweetcast','css'));?>" type="text/css" media="screen, projection"/>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    78
    <link rel="stylesheet" href="<?php echo(registry_url('fancybox','css'));?>" media="screen"/>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    79
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    80
    <!-- FONT -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    81
    <link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'/>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    82
    <link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'/>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    83
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    84
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    85
    <script type="text/javascript">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    86
          // Configuration Polemical Timeline
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    87
    if (typeof jQuery == "undefined") {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    88
        jQuery = IriSP.jQuery;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    89
    }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    90
    <?php
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    91
          if(is_array($translate->_('config__metadata'))):
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    92
            $metadataurls = array_map("get_metadata_json_url",$translate->_('config__metadata'));
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    93
            reset($metadataurls);
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    94
            $first_key = key($metadataurls);
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    95
    ?>
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    96
    var metadatas = jQuery.parseJSON('<?php echo(json_encode($metadataurls)); ?>');
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    97
    var url = jQuery.url();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    98
    var metadata_key = url.fparam('metadata');
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    99
    if(typeof metadata_key === "undefined" || metadata_key.length === 0) {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   100
        metadata_key = "<?php echo($first_key);?>";
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   101
    }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   102
    <?php else: ?>
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
   103
    var metadatas = { metadata: {url: "<?php echo(get_metadata_url($translate->_('config__metadata')));?>"} };
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   104
    var metadata_key = "metadata";
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   105
    <?php endif;?>
657
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   106
    var _protocol_level = _protocol_level,
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   107
        _cookiematches = document.cookie.match(/PHPSESSID=([A-Za-z0-9]+)/),
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   108
        _cookie = (_cookiematches && _cookiematches.length > 1 ? _cookiematches[1] : undefined);
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   109
581
7607516bd9f1 Add Tracewidget
Raphael Velt <raph.velt@gmail.com>
parents: 575
diff changeset
   110
    IriSP.libFiles.defaultDir = "<?php echo(registry_url('libdir','js'));?>";
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   111
    IriSP.widgetsDir = "<?php echo(registry_url('ldtwidgets','js'));?>";
638
e0d4e8431de3 Updated Metadata Player
Raphael Velt <raph.velt@gmail.com>
parents: 623
diff changeset
   112
    IriSP.libFiles.locations.jwPlayerSWF = "<?php echo(URL_ROOT); ?>res/mediaplayer/player.swf";
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   113
    IriSP.language = "<?php echo($actual) ?>";
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   114
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   115
    var _metadata = {
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
   116
        url: metadatas[metadata_key].url + '?callback=?',
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   117
        format: 'ldt'
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   118
    };
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   119
    var _config = {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   120
        width: 600,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   121
        height: 800,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   122
        container: 'LdtPlayer',
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   123
        default_options: {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   124
            metadata: _metadata
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   125
        },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   126
        css:'<?php echo(registry_url('metadataplayer','css'));?>',
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   127
        widgets: [
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   128
            {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   129
                type: "AutoPlayer",
940
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   130
                height: 360,
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   131
                width: 600,
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   132
                url_transform: function(u) {
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   133
                    var res = u.replace('ddc_player/video', 'ddc_player/mp4:video');
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   134
                    //console.log(res);
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   135
                    return res;
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   136
                }
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   137
            },
852
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   138
            { type: "Slider" },
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   139
            {
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   140
                type: "Controller",
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   141
                disable_annotate_btn: true
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   142
            },
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   143
<?php if ($protocol_level > 1): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   144
            {
980
37f7aec0b6ad mediapart fn and change polemic max_elements
Thibaut Cavalié <thibaut.cavalie@iri.centrepompidou.fr>
parents: 940
diff changeset
   145
                type: "Polemic",
37f7aec0b6ad mediapart fn and change polemic max_elements
Thibaut Cavalié <thibaut.cavalie@iri.centrepompidou.fr>
parents: 940
diff changeset
   146
                max_elements: 60
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   147
<?php if ($protocol_level < 3): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   148
                ,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   149
                polemics: []
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   150
<?php endif; ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   151
            },
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   152
<?php endif; ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   153
<?php if ($protocol_level > 1): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   154
            {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   155
                type: "MultiSegments",
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   156
                //annotation_type: "chap"
779
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   157
            },
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   158
            {
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   159
                type: "Annotation",
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   160
                annotation_type: "découpage"
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   161
            },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   162
            { type: "Tweet" },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   163
            {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   164
                type: "Tagcloud",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   165
                container: "TagcloudContainer",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   166
                exclude_pattern: /^@/,
709
add35aad077d Added 1st Edito/Museo of 2012-2013
Raphael Velt <raph.velt@gmail.com>
parents: 694
diff changeset
   167
                custom_stopwords: <?php echo json_encode(array($translate->_('config__hashtag'))) ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   168
            },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   169
            {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   170
                type: "AnnotationsList",
1244
87583b020202 put ldt platform url in config
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1240
diff changeset
   171
                //ajax_url : "<?php echo(LDT_PLATFORM); ?>ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}?callback=?",
87583b020202 put ldt platform url in config
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1240
diff changeset
   172
                //foreign_url : "<?php echo(LDT_PLATFORM); ?>ldtplatform/ldt/front/player/{{media}}/{{project}}/{{annotationType}}#id={{annotation}}",
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   173
                container: "AnnotationsListContainer"
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   174
            },
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   175
            {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   176
                type: "CreateAnnotation",
1244
87583b020202 put ldt platform url in config
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 1240
diff changeset
   177
                api_endpoint_template: "<?php echo(LDT_PLATFORM); ?>ldtplatform/api/ldt/1.0/annotations/",
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   178
                api_method: 'POST',
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   179
                after_send_timeout: 8000,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   180
                show_mic_record: false,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   181
                close_after_send: false,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   182
                slice_annotation_type: ["chap","découpage"],
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   183
                creator_avatar: "<?php echo(URL_ROOT); ?>images/avatar.png"
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   184
            },
685
b48fe0f2d5b1 Removed Protocol on FENS 2012
Raphael Velt <raph.velt@gmail.com>
parents: 684
diff changeset
   185
<?php endif; ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   186
            { type: "Mediafragment"},
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   187
        ]
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   188
    };
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   189
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   190
    jQuery(document).ready(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   191
<?php if ($show_splash): ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   192
        jQuery.fancybox(
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   193
            jQuery("#splash").html(),
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   194
            {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   195
                width: 500,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   196
                modal: true,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   197
                closeBtn: false
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   198
            });
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   199
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   200
        jQuery("#fancybox-content form").submit(function() {
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   201
            jQuery.fancybox.close();
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   202
            var _checkboxes = [];
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   203
            jQuery("#fancybox-content .checkbox:checked").each(function() { _checkboxes.push(this.value) });
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   204
            var _data = {
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   205
                    eventLink: _checkboxes,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   206
                    eMail: jQuery("#fancybox-content .eMail").val(),
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   207
                    twitterHandle: jQuery("#fancybox-content .twitterHandle").val(),
657
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   208
                    cookie: _cookie,
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   209
                    protocol_level: _protocol_level
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   210
                };
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   211
            return false;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   212
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   213
<?php endif; ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   214
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   215
        jQuery("#mdselect_"+metadata_key).attr("selected","selected");
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   216
        jQuery("#mdselect").change(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   217
            var metadata_key = this.options[this.selectedIndex].value;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   218
            window.location.hash = "#metadata="+metadata_key;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   219
            window.location.href = window.location.href;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   220
            window.location.reload(true);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   221
            jQuery(".embedbutton").attr('href','<?php echo(URL_ROOT.$rep);?>/embed_form.php?metadata='+metadata_key);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   222
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   223
        if(metadata_key !== "metadata") {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   224
            jQuery(".embedbutton").attr('href','<?php echo(URL_ROOT.$rep);?>/embed_form.php?metadata='+metadata_key);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   225
        }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   226
        jQuery(".embedbutton").fancybox({
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   227
            'width'                : 360,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   228
            'height'            : 360,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   229
            'autoDimensions'    : false,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   230
            'transitionIn'        : 'none',
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   231
            'transitionOut'        : 'none',
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   232
            'type'                : 'iframe'
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   233
        });
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   234
        jQuery("#Program").fancybox({
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   235
            type: "iframe",
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   236
            width: 840,
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   237
            height: 640,
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   238
            transitionIn: "none",
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   239
            transitionOut: "none"
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   240
        });
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   241
        jQuery(".acctitre").click(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   242
            var _nx = jQuery(this).next();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   243
            if (_nx.is(":hidden")) {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   244
                jQuery(".acctexte").slideUp();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   245
                _nx.slideDown();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   246
            }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   247
        })
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   248
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   249
    });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   250
    </script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   251
    <script type="text/javascript">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   252
        var _gaq = _gaq || [];
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   253
        _gaq.push(['_setAccount', 'UA-23581291-1']);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   254
        _gaq.push(['_trackPageview', location.pathname + location.search + location.hash]);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   255
        _gaq.push(['_setAllowAnchor', true]);
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   256
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   257
        (function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   258
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   259
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   260
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   261
        })();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   262
    </script>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   263
  </head>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   264
  <body>
251
d81cc587cc4d add fablab and correction on feedback
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 236
diff changeset
   265
  <div id="sendUsFeedBack"><a href="<?php echo($C_feedback_form_url); ?>" target="_blank"><img src="<?php echo(URL_ROOT); ?>images/sendusfeedback.png"></a></div>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   266
291
db1e6bfaa54e add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 276
diff changeset
   267
  <!-- tooltip -->
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   268
  </div>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   269
    <div id="splash" style="display:none;">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   270
        <div class="splash">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   271
            <h1><?php echo $translate->_("Protocol_Head").$translate->_('config__title'); ?></h1>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   272
            <p><?php echo $translate->_("Protocol_Subtitle"); ?></p>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   273
            <?php echo $translate->_("Protocol_Explain_Level_".$protocol_level); ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   274
            <hr />
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   275
            <h2><?php echo $translate->_("Protocol_Questions_Head"); ?></h2>
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   276
            <form target="_blank">
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   277
                <h3><?php echo $translate->_("Protocol_Questions_Part_1_prefix").$translate->_('config__title').$translate->_("Protocol_Questions_Part_1_suffix"); ?></h3>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   278
                <ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   279
                    <li><input class="checkbox" type="checkbox" value="wasThere"/><?php echo $translate->_("Protocol_Answer_WasThere"); ?></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   280
                    <li><input class="checkbox" type="checkbox" value="watchedStream"/><?php echo $translate->_("Protocol_Answer_WatchedStream"); ?></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   281
                    <li><input class="checkbox" type="checkbox" value="liveTweeted"/><?php echo $translate->_("Protocol_Answer_liveTweeted"); ?></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   282
                    <li><input class="checkbox" type="checkbox" value="none"/><?php echo $translate->_("Protocol_Answer_none"); ?></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   283
                </ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   284
                <h3><?php echo $translate->_("Protocol_Questions_Part_2"); ?></h3>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   285
                <ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   286
                    <li><label><?php echo $translate->_("Protocol_Answer_Mail"); ?></label><input class="eMail" name="eMail" /></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   287
                    <li><label><?php echo $translate->_("Protocol_Answer_Twitter"); ?></label><input class="twitterHandle" name="twitterHandle" /></li>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   288
                </ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   289
                <input type="submit" value="<?php echo $translate->_("Protocol_Submit_Label"); ?>" class="submit" />
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   290
            </form>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   291
        </div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   292
    </div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   293
    <div id="container">
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   294
        <div class="barre">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   295
            <img id="headlogo" src="<?php echo($head_logo); ?>" width="171" height="63" />
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   296
            <div id="minilogo"></div>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   297
            <ul class="menu">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   298
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   299
                    <a href="<?php echo(URL_ROOT); ?>" class="menuLink">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   300
                        <?php print $translate->_("Accueil"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   301
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   302
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   303
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   304
                    <a href="<?php echo($translate->_('config__link')); ?>" class="menuLink" target="_blank" id='Program'>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   305
                        <?php print $translate->_("Programme"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   306
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   307
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   308
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   309
                    <a href="../about.php" class="menuLink" >
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   310
                        <?php print $translate->_("A propos"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   311
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   312
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   313
            </ul>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   314
            <ul class="menu">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   315
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   316
                    <a href="<?php URL_ROOT ?>polemicaltimeline.php?lang=ja_JP" class="menuLink" >
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   317
                        <img src='<?php echo(URL_ROOT); ?>images/flag_jp.gif'<?php if($actual!="ja_JP"){echo("style='opacity: .5;'"); } ?> />
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   318
                        <?php print $translate->_("Japonais"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   319
                    </a></li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   320
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   321
                    <a href="<?php URL_ROOT ?>polemicaltimeline.php?lang=fr" class="menuLink">
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   322
                        <img src='<?php echo(URL_ROOT); ?>images/flag_fr.gif' <?php if($actual!="fr"){echo("style='opacity: .5;'"); } ?> />
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   323
                        <?php print $translate->_("Français"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   324
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   325
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   326
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   327
                    <a href="<?php URL_ROOT ?>polemicaltimeline.php?lang=en" class="menuLink">
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   328
                        <img src='<?php echo(URL_ROOT); ?>images/flag_en.gif' <?php if($actual!="en"){echo("style='opacity: .5;'"); } ?> />
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   329
                        <?php print $translate->_("Anglais"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   330
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   331
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   332
            </ul>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   333
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   334
    <?php if(is_array($translate->_('config__metadata'))): ?>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   335
    <ul id="content_select_ul" class="menu mdselect">
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   336
        <span><?php print $translate->_("changer de contenu"); ?></span><br/>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   337
        <select id="mdselect">
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   338
            <?php foreach ($translate->_('config__metadata') as $key => $value):?>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   339
            <option value="<?php echo($key); ?>" id="mdselect_<?php echo($key); ?>" ><?php echo($value['display']); ?></option>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   340
            <?php endforeach;?>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   341
        </select>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   342
    </ul>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   343
    <?php endif;?>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   344
            <div class="embedbar">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   345
                <a class="embedbutton" href="<?php echo(URL_ROOT.$rep)?>/embed_form.php">Intégrer</a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   346
                <!-- AddThis Button BEGIN -->
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   347
                <div class="addthis_toolbox addthis_default_style addthis_32x32_style">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   348
                    <a class="addthis_button_facebook"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   349
                    <a class="addthis_button_twitter"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   350
                    <a class="addthis_button_email"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   351
                    <a class="addthis_button_compact"></a>
535
8276f3ff7a3f Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents: 534
diff changeset
   352
                </div>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   353
                <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   354
                <!-- AddThis Button END -->
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   355
            </div>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   356
        </div>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   357
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   358
    <!-- EXPLICATION  -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   359
    <div id="mdpgauche">
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   360
        <ul class="accordeon">
776
e73b0c98d2db Added Slideshare
Raphael Velt <raph.velt@gmail.com>
parents: 766
diff changeset
   361
            <div id="Slideshare"></div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   362
            <li class="acctitre">
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   363
                <h3><?php echo($translate->_('config__title')); ?></h3>
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   364
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   365
            <li class="acctexte mdpacclimited">
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   366
                <p><?php echo($translate->_('config__description')); ?></p>
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   367
            </li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   368
679
383c2fd568d7 Fix on Sam's fix: Tagcloud+List now displayed on non-protocol events
Raphael Velt <raph.velt@gmail.com>
parents: 673
diff changeset
   369
<?php if (!$use_protocol): ?>
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   370
            <li class="acctitre">
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   371
                <h3>Liste des Annotations</h3>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   372
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   373
            <li class="acctexte mdpacclimited" style="display: none;">
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   374
                <div id="AnnotationsListContainer"></div>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   375
            </li>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   376
            <li class="acctitre">
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   377
                <h3>Mots-clés</h3>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   378
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   379
            <li class="acctexte mdpacclimited" style="display: none;">
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   380
                <div id="TagcloudContainer"></div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   381
            </li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   382
<?php endif; ?>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   383
        </ul>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   384
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   385
      </div>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   386
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   387
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   388
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   389
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   390
      <div id="mdpdroite" >
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   391
        <div id="LdtPlayer"></div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   392
      </div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   393
<script type="text/javascript">
638
e0d4e8431de3 Updated Metadata Player
Raphael Velt <raph.velt@gmail.com>
parents: 623
diff changeset
   394
    var _myPlayer = new IriSP.Metadataplayer(_config);
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   395
</script>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   396
  </div>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   397
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   398
      <div class="footer">
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   399
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   400
        <hr>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   401
            <?php echo($translate->_('config__partenaires')); ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   402
      </div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   403
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   404
    </div>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   405
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   406
  </body>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   407
</html>