web/polemicaltimeline.php
author Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
Sun, 15 Feb 2015 00:43:16 +0100
changeset 1198 ff4b567d51f2
parent 980 37f7aec0b6ad
child 1199 bba2a67b9da2
permissions -rwxr-xr-x
upgrade metadataplayer and add annotation creation
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>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    75
    <script type="text/javascript" src="<?php echo(registry_url('tracemanager','js'));?>"></script>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    76
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    77
    <!-- Framework CSS -->
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
    78
    <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
    79
    <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
    80
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    81
    <!-- FONT -->
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_Narrow','font'));?>' rel='stylesheet' type='text/css'/>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    83
    <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
    84
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
    85
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    86
    <script type="text/javascript">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    87
          // Configuration Polemical Timeline
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    88
    if (typeof jQuery == "undefined") {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    89
        jQuery = IriSP.jQuery;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    90
    }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    91
    <?php
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    92
          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
    93
            $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
    94
            reset($metadataurls);
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    95
            $first_key = key($metadataurls);
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    96
    ?>
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
    97
    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
    98
    var url = jQuery.url();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
    99
    var metadata_key = url.fparam('metadata');
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   100
    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
   101
        metadata_key = "<?php echo($first_key);?>";
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   102
    }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   103
    <?php else: ?>
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
   104
    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
   105
    var metadata_key = "metadata";
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   106
    <?php endif;?>
657
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   107
    var _protocol_level = _protocol_level,
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   108
        _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
   109
        _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
   110
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   111
    var _tracer = tracemanager.init_trace("test", {
779
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   112
            url: "http://trail.dev.fabelier.org/",
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   113
            requestmode: "GET",
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   114
            syncmode: "sync",
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   115
            default_subject: "PolemicTweet"
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   116
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   117
    _tracer.trace("Pt_LoadPage", {
779
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   118
        cookie: _cookie,
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   119
        url: document.location.href
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   120
    });
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   121
581
7607516bd9f1 Add Tracewidget
Raphael Velt <raph.velt@gmail.com>
parents: 575
diff changeset
   122
    IriSP.libFiles.defaultDir = "<?php echo(registry_url('libdir','js'));?>";
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   123
    IriSP.widgetsDir = "<?php echo(registry_url('ldtwidgets','js'));?>";
638
e0d4e8431de3 Updated Metadata Player
Raphael Velt <raph.velt@gmail.com>
parents: 623
diff changeset
   124
    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
   125
    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
   126
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   127
    var _metadata = {
684
f59daf0830d2 less naive implementation of common LDT platform URL
Raphael Velt <raph.velt@gmail.com>
parents: 683
diff changeset
   128
        url: metadatas[metadata_key].url + '?callback=?',
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   129
        format: 'ldt'
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   130
    };
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   131
    var _config = {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   132
        width: 600,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   133
        height: 800,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   134
        container: 'LdtPlayer',
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   135
        default_options: {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   136
            metadata: _metadata
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   137
        },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   138
        css:'<?php echo(registry_url('metadataplayer','css'));?>',
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   139
        widgets: [
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   140
            {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   141
                type: "AutoPlayer",
940
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   142
                height: 360,
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   143
                width: 600,
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   144
                url_transform: function(u) {
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   145
                    var res = u.replace('ddc_player/video', 'ddc_player/mp4:video');
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   146
                    //console.log(res);
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   147
                    return res;
843f96e4eebd JwPlayer upgrade
Raphael Velt <raph.velt@gmail.com>
parents: 922
diff changeset
   148
                }
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   149
            },
852
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   150
            { type: "Slider" },
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   151
            {
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   152
                type: "Controller",
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   153
                disable_annotate_btn: true
957175538495 reorder widgets
Raphael Velt <raph.velt@gmail.com>
parents: 779
diff changeset
   154
            },
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   155
<?php if ($protocol_level > 1): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   156
            {
980
37f7aec0b6ad mediapart fn and change polemic max_elements
Thibaut Cavalié <thibaut.cavalie@iri.centrepompidou.fr>
parents: 940
diff changeset
   157
                type: "Polemic",
37f7aec0b6ad mediapart fn and change polemic max_elements
Thibaut Cavalié <thibaut.cavalie@iri.centrepompidou.fr>
parents: 940
diff changeset
   158
                max_elements: 60
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   159
<?php if ($protocol_level < 3): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   160
                ,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   161
                polemics: []
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   162
<?php endif; ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   163
            },
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   164
<?php endif; ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   165
<?php if ($protocol_level > 1): ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   166
            {
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   167
                type: "MultiSegments",
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   168
                //annotation_type: "chap"
779
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   169
            },
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   170
            {
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   171
                type: "Annotation",
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   172
                annotation_type: "découpage"
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   173
            },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   174
            { type: "Tweet" },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   175
            {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   176
                type: "Tagcloud",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   177
                container: "TagcloudContainer",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   178
                exclude_pattern: /^@/,
709
add35aad077d Added 1st Edito/Museo of 2012-2013
Raphael Velt <raph.velt@gmail.com>
parents: 694
diff changeset
   179
                custom_stopwords: <?php echo json_encode(array($translate->_('config__hashtag'))) ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   180
            },
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   181
            {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   182
                type: "AnnotationsList",
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   183
                //ajax_url : "http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}?callback=?",
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   184
                //foreign_url : "http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/front/player/{{media}}/{{project}}/{{annotationType}}#id={{annotation}}",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   185
                container: "AnnotationsListContainer"
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   186
            },
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   187
            {
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   188
                type: "CreateAnnotation",
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   189
                //api_endpoint_template: "http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/1.0/annotations/",
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   190
                api_endpoint_template: "http://localhost/~ymh/platform/ldtplatform/api/ldt/1.0/annotations/",
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   191
                api_method: 'POST',
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   192
                after_send_timeout: 8000,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   193
                show_mic_record: false,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   194
                close_after_send: false,
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   195
                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
   196
                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
   197
            },
685
b48fe0f2d5b1 Removed Protocol on FENS 2012
Raphael Velt <raph.velt@gmail.com>
parents: 684
diff changeset
   198
<?php endif; ?>
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   199
            { type: "Mediafragment"},
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   200
            {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   201
                type: "Trace",
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   202
                tracer: _tracer,
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   203
                extend: {
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   204
                    cookie: _cookie,
766
d106d2109ff3 Added ENMI 2012 videos
Raphael Velt <raph.velt@gmail.com>
parents: 719
diff changeset
   205
                    url: document.location.href
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   206
                },
779
e13084ff318b Traces are back
Raphael Velt <raph.velt@gmail.com>
parents: 778
diff changeset
   207
                js_console: false
694
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   208
            }
e9400c80e1e4 Updated Metadataplayer
Raphael Velt <raph.velt@gmail.com>
parents: 685
diff changeset
   209
        ]
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   210
    };
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   211
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   212
    jQuery(document).ready(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   213
<?php if ($show_splash): ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   214
        jQuery.fancybox(
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   215
            jQuery("#splash").html(),
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   216
            {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   217
                width: 500,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   218
                modal: true,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   219
                closeBtn: false
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   220
            });
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   221
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   222
        jQuery("#fancybox-content form").submit(function() {
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   223
            jQuery.fancybox.close();
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   224
            var _checkboxes = [];
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   225
            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
   226
            var _data = {
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   227
                    eventLink: _checkboxes,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   228
                    eMail: jQuery("#fancybox-content .eMail").val(),
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   229
                    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
   230
                    cookie: _cookie,
d563fda7b928 Traces now send Protocol Level and Cookie info
Raphael Velt <raph.velt@gmail.com>
parents: 656
diff changeset
   231
                    protocol_level: _protocol_level
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   232
                };
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   233
            _tracer.trace("Pt_SendForm", _data);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   234
            return false;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   235
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   236
<?php endif; ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   237
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   238
        jQuery("#mdselect_"+metadata_key).attr("selected","selected");
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   239
        jQuery("#mdselect").change(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   240
            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
   241
            window.location.hash = "#metadata="+metadata_key;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   242
            window.location.href = window.location.href;
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   243
            window.location.reload(true);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   244
            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
   245
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   246
        if(metadata_key !== "metadata") {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   247
            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
   248
        }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   249
        jQuery(".embedbutton").fancybox({
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   250
            'width'                : 360,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   251
            'height'            : 360,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   252
            'autoDimensions'    : false,
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   253
            'transitionIn'        : 'none',
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   254
            'transitionOut'        : 'none',
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   255
            'type'                : 'iframe'
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   256
        });
899
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   257
        jQuery("#Program").fancybox({
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   258
            type: "iframe",
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   259
            width: 840,
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   260
            height: 640,
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   261
            transitionIn: "none",
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   262
            transitionOut: "none"
cdcc5249830e Fancybox for programme restored
Raphael Velt <raph.velt@gmail.com>
parents: 852
diff changeset
   263
        });
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   264
        jQuery(".embedbutton").click(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   265
            _tracer.trace("Pt_EmbedButtonClicked");
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   266
        });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   267
        jQuery(".acctitre").click(function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   268
            var _nx = jQuery(this).next();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   269
            if (_nx.is(":hidden")) {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   270
                jQuery(".acctexte").slideUp();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   271
                _nx.slideDown();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   272
            }
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   273
        })
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   274
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   275
    });
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   276
    </script>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   277
    <script type="text/javascript">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   278
        var _gaq = _gaq || [];
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   279
        _gaq.push(['_setAccount', 'UA-23581291-1']);
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   280
        _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
   281
        _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
   282
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   283
        (function() {
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   284
            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
   285
            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
   286
            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
   287
        })();
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   288
    </script>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   289
  </head>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   290
  <body>
251
d81cc587cc4d add fablab and correction on feedback
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 236
diff changeset
   291
  <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
   292
291
db1e6bfaa54e add translation for config data
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 276
diff changeset
   293
  <!-- tooltip -->
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   294
  </div>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   295
    <div id="splash" style="display:none;">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   296
        <div class="splash">
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   297
            <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
   298
            <p><?php echo $translate->_("Protocol_Subtitle"); ?></p>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   299
            <?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
   300
            <hr />
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   301
            <h2><?php echo $translate->_("Protocol_Questions_Head"); ?></h2>
659
44c5c0a2b6d4 Added FENS events
Raphael Velt <raph.velt@gmail.com>
parents: 658
diff changeset
   302
            <form target="_blank">
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   303
                <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
   304
                <ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   305
                    <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
   306
                    <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
   307
                    <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
   308
                    <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
   309
                </ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   310
                <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
   311
                <ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   312
                    <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
   313
                    <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
   314
                </ul>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   315
                <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
   316
            </form>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   317
        </div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   318
    </div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   319
    <div id="container">
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   320
        <div class="barre">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   321
            <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
   322
            <div id="minilogo"></div>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   323
            <ul class="menu">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   324
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   325
                    <a href="<?php echo(URL_ROOT); ?>" class="menuLink">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   326
                        <?php print $translate->_("Accueil"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   327
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   328
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   329
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   330
                    <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
   331
                        <?php print $translate->_("Programme"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   332
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   333
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   334
                <li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   335
                    <a href="../about.php" class="menuLink" >
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   336
                        <?php print $translate->_("A propos"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   337
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   338
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   339
            </ul>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   340
            <ul class="menu">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   341
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   342
                    <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
   343
                        <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
   344
                        <?php print $translate->_("Japonais"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   345
                    </a></li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   346
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   347
                    <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
   348
                        <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
   349
                        <?php print $translate->_("Français"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   350
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   351
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   352
                <li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   353
                    <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
   354
                        <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
   355
                        <?php print $translate->_("Anglais"); ?>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   356
                    </a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   357
                </li>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   358
            </ul>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   359
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   360
    <?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
   361
    <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
   362
        <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
   363
        <select id="mdselect">
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   364
            <?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
   365
            <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
   366
            <?php endforeach;?>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   367
        </select>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   368
    </ul>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   369
    <?php endif;?>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   370
            <div class="embedbar">
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   371
                <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
   372
                <!-- AddThis Button BEGIN -->
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   373
                <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
   374
                    <a class="addthis_button_facebook"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   375
                    <a class="addthis_button_twitter"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   376
                    <a class="addthis_button_email"></a>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   377
                    <a class="addthis_button_compact"></a>
535
8276f3ff7a3f Added new player in player_embed
Raphael Velt <raph.velt@gmail.com>
parents: 534
diff changeset
   378
                </div>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   379
                <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
   380
                <!-- AddThis Button END -->
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   381
            </div>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   382
        </div>
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   383
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   384
    <!-- EXPLICATION  -->
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   385
    <div id="mdpgauche">
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   386
        <ul class="accordeon">
776
e73b0c98d2db Added Slideshare
Raphael Velt <raph.velt@gmail.com>
parents: 766
diff changeset
   387
            <div id="Slideshare"></div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   388
            <li class="acctitre">
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   389
                <h3><?php echo($translate->_('config__title')); ?></h3>
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   390
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   391
            <li class="acctexte mdpacclimited">
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   392
                <p><?php echo($translate->_('config__description')); ?></p>
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   393
            </li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   394
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
   395
<?php if (!$use_protocol): ?>
536
5dd170a735e9 new embed and share buttons
Raphael Velt <raph.velt@gmail.com>
parents: 535
diff changeset
   396
            <li class="acctitre">
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   397
                <h3>Liste des Annotations</h3>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   398
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   399
            <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
   400
                <div id="AnnotationsListContainer"></div>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   401
            </li>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   402
            <li class="acctitre">
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   403
                <h3>Mots-clés</h3>
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   404
            </li>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 598
diff changeset
   405
            <li class="acctexte mdpacclimited" style="display: none;">
598
d366aa22bd79 New Metadataplayer version
Raphael Velt <raph.velt@gmail.com>
parents: 597
diff changeset
   406
                <div id="TagcloudContainer"></div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   407
            </li>
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   408
<?php endif; ?>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   409
        </ul>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   410
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   411
      </div>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   412
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   413
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   414
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   415
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   416
      <div id="mdpdroite" >
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   417
        <div id="LdtPlayer"></div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   418
      </div>
534
0a2505c3b547 New metadata player and big directory reorganization
Raphael Velt <raph.velt@gmail.com>
parents: 489
diff changeset
   419
<script type="text/javascript">
638
e0d4e8431de3 Updated Metadata Player
Raphael Velt <raph.velt@gmail.com>
parents: 623
diff changeset
   420
    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
   421
</script>
569
76ee1291e0c8 corrected player placement bug
Raphael Velt <raph.velt@gmail.com>
parents: 537
diff changeset
   422
  </div>
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   423
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   424
      <div class="footer">
1198
ff4b567d51f2 upgrade metadataplayer and add annotation creation
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 980
diff changeset
   425
656
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   426
        <hr>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   427
            <?php echo($translate->_('config__partenaires')); ?>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   428
      </div>
635a86f25fe7 First tests for PT Protocol implementation
Raphael Velt <raph.velt@gmail.com>
parents: 654
diff changeset
   429
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   430
    </div>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   431
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   432
  </body>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
   433
</html>