--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/player/res/js/tooltip.js Tue Sep 14 13:15:28 2010 +0200
@@ -0,0 +1,329 @@
+/**
+ * @license
+ * jQuery Tools 1.2.4 Tooltip - UI essentials
+ *
+ * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
+ *
+ * http://flowplayer.org/tools/tooltip/
+ *
+ * Since: November 2008
+ * Date: Sun Aug 15 08:16:31 2010 +0000
+ */
+(function($) {
+ // static constructs
+ $.tools = $.tools || {version: '1.2.4'};
+
+ $.tools.tooltip = {
+
+ conf: {
+
+ // default effect variables
+ effect: 'toggle',
+ fadeOutSpeed: "fast",
+ predelay: 0,
+ delay: 30,
+ opacity: 1,
+ tip: 0,
+
+ // 'top', 'bottom', 'right', 'left', 'center'
+ position: ['top', 'center'],
+ offset: [0, 0],
+ relative: false,
+ cancelDefault: true,
+
+ // type to event mapping
+ events: {
+ def: "mouseenter,mouseleave",
+ input: "focus,blur",
+ widget: "focus mouseenter,blur mouseleave",
+ tooltip: "mouseenter,mouseleave"
+ },
+
+ // 1.2
+ layout: '<div/>',
+ tipClass: 'tooltip'
+ },
+
+ addEffect: function(name, loadFn, hideFn) {
+ effects[name] = [loadFn, hideFn];
+ }
+ };
+
+
+ var effects = {
+ toggle: [
+ function(done) {
+ var conf = this.getConf(), tip = this.getTip(), o = conf.opacity;
+ if (o < 1) { tip.css({opacity: o}); }
+ tip.show();
+ done.call();
+ },
+
+ function(done) {
+ this.getTip().hide();
+ done.call();
+ }
+ ],
+
+ fade: [
+ function(done) {
+ var conf = this.getConf();
+ this.getTip().fadeTo(conf.fadeInSpeed, conf.opacity, done);
+ },
+ function(done) {
+ this.getTip().fadeOut(this.getConf().fadeOutSpeed, done);
+ }
+ ]
+ };
+
+
+ /* calculate tip position relative to the trigger */
+ function getPosition(trigger, tip, conf) {
+
+
+ // get origin top/left position
+ var top = conf.relative ? trigger.position().top : trigger.offset().top,
+ left = conf.relative ? trigger.position().left : trigger.offset().left,
+ pos = conf.position[0];
+
+ top -= tip.outerHeight() - conf.offset[0];
+ left += trigger.outerWidth() + conf.offset[1];
+
+ // adjust Y
+ var height = tip.outerHeight() + trigger.outerHeight();
+ if (pos == 'center') { top += height / 2; }
+ if (pos == 'bottom') { top += height; }
+
+
+ // adjust X
+ pos = conf.position[1];
+ var width = tip.outerWidth() + trigger.outerWidth();
+ if (pos == 'center') { left -= width / 2; }
+ if (pos == 'left') { left -= width; }
+
+ return {top: top, left: left};
+ }
+
+
+
+ function Tooltip(trigger, conf) {
+
+ var self = this,
+ fire = trigger.add(self),
+ tip,
+ timer = 0,
+ pretimer = 0,
+ title = trigger.attr("title"),
+ tipAttr = trigger.attr("data-tooltip"),
+ effect = effects[conf.effect],
+ shown,
+
+ // get show/hide configuration
+ isInput = trigger.is(":input"),
+ isWidget = isInput && trigger.is(":checkbox, :radio, select, :button, :submit"),
+ type = trigger.attr("type"),
+ evt = conf.events[type] || conf.events[isInput ? (isWidget ? 'widget' : 'input') : 'def'];
+
+
+ // check that configuration is sane
+ if (!effect) { throw "Nonexistent effect \"" + conf.effect + "\""; }
+
+ evt = evt.split(/,\s*/);
+ if (evt.length != 2) { throw "Tooltip: bad events configuration for " + type; }
+
+
+ // trigger --> show
+ trigger.bind(evt[0], function(e) {
+
+ clearTimeout(timer);
+ if (conf.predelay) {
+ pretimer = setTimeout(function() { self.show(e); }, conf.predelay);
+
+ } else {
+ self.show(e);
+ }
+
+ // trigger --> hide
+ }).bind(evt[1], function(e) {
+ clearTimeout(pretimer);
+ if (conf.delay) {
+ timer = setTimeout(function() { self.hide(e); }, conf.delay);
+
+ } else {
+ self.hide(e);
+ }
+
+ });
+
+
+ // remove default title
+ if (title && conf.cancelDefault) {
+ trigger.removeAttr("title");
+ trigger.data("title", title);
+ }
+
+ $.extend(self, {
+
+ show: function(e) {
+
+ // tip not initialized yet
+ if (!tip) {
+
+ // data-tooltip
+ if (tipAttr) {
+ tip = $(tipAttr);
+
+ // autogenerated tooltip
+ } else if (title) {
+ tip = $(conf.layout).addClass(conf.tipClass).appendTo(document.body)
+ .hide().append(title);
+
+ // single tip element for all
+ } else if (conf.tip) {
+ tip = $(conf.tip).eq(0);
+
+ // manual tooltip
+ } else {
+ tip = trigger.next();
+ if (!tip.length) { tip = trigger.parent().next(); }
+ }
+
+ if (!tip.length) { throw "Cannot find tooltip for " + trigger; }
+ }
+
+ if (self.isShown()) { return self; }
+
+ // stop previous animation
+ tip.stop(true, true);
+
+ // get position
+ var pos = getPosition(trigger, tip, conf);
+
+
+ // onBeforeShow
+ e = e || $.Event();
+ e.type = "onBeforeShow";
+ fire.trigger(e, [pos]);
+ if (e.isDefaultPrevented()) { return self; }
+
+
+ // onBeforeShow may have altered the configuration
+ pos = getPosition(trigger, tip, conf);
+
+ // set position
+ tip.css({position:'absolute', top: pos.top, left: pos.left});
+
+ shown = true;
+
+ // invoke effect
+ effect[0].call(self, function() {
+ e.type = "onShow";
+ shown = 'full';
+ fire.trigger(e);
+ });
+
+
+ // tooltip events
+ var event = conf.events.tooltip.split(/,\s*/);
+
+ tip.bind(event[0], function() {
+ clearTimeout(timer);
+ clearTimeout(pretimer);
+ });
+
+ if (event[1] && !trigger.is("input:not(:checkbox, :radio), textarea")) {
+ tip.bind(event[1], function(e) {
+
+ // being moved to the trigger element
+ if (e.relatedTarget != trigger[0]) {
+ trigger.trigger(evt[1].split(" ")[0]);
+ }
+ });
+ }
+
+ return self;
+ },
+
+ hide: function(e) {
+
+ if (!tip || !self.isShown()) { return self; }
+
+ // onBeforeHide
+ e = e || $.Event();
+ e.type = "onBeforeHide";
+ fire.trigger(e);
+ if (e.isDefaultPrevented()) { return; }
+
+ shown = false;
+
+ effects[conf.effect][1].call(self, function() {
+ e.type = "onHide";
+ fire.trigger(e);
+ });
+
+ return self;
+ },
+
+ isShown: function(fully) {
+ return fully ? shown == 'full' : shown;
+ },
+
+ getConf: function() {
+ return conf;
+ },
+
+ getTip: function() {
+ return tip;
+ },
+
+ getTrigger: function() {
+ return trigger;
+ }
+
+ });
+
+ // callbacks
+ $.each("onHide,onBeforeShow,onShow,onBeforeHide".split(","), function(i, name) {
+
+ // configuration
+ if ($.isFunction(conf[name])) {
+ $(self).bind(name, conf[name]);
+ }
+
+ // API
+ self[name] = function(fn) {
+ $(self).bind(name, fn);
+ return self;
+ };
+ });
+
+ }
+
+
+ // jQuery plugin implementation
+ $.fn.tooltip = function(conf) {
+
+ // return existing instance
+ var api = this.data("tooltip");
+ if (api) { return api; }
+
+ conf = $.extend(true, {}, $.tools.tooltip.conf, conf);
+
+ // position can also be given as string
+ if (typeof conf.position == 'string') {
+ conf.position = conf.position.split(/,?\s/);
+ }
+
+ // install tooltip for each entry in jQuery object
+ this.each(function() {
+ api = new Tooltip($(this), conf);
+ $(this).data("tooltip", api);
+ });
+
+ return conf.api ? api: this;
+ };
+
+}) ();
+
+
+
--- a/client/player/src/css/LdtPlayer.css Fri Aug 06 17:19:37 2010 +0200
+++ b/client/player/src/css/LdtPlayer.css Tue Sep 14 13:15:28 2010 +0200
@@ -4,7 +4,14 @@
height:1.5em;
width:1.5em;
}
-
+
+ #Ldt-loader {
+ background:url(imgs/loader.gif) no-repeat;
+ width:20px;
+ height:16px;
+ float:left;
+ }
+
#Ldt-controler {
font-size: 62.5%;
font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
@@ -12,7 +19,7 @@
height:35px;
padding:5px;
}
-
+
.Ldt-iri-chapter{
padding-top:10px;
padding-bottom:5px;
@@ -33,6 +40,9 @@
color:#000;
font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
}
+ #Ldt-Root{
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ }
#Ldt-Hat{
height:3px;
}
@@ -59,9 +69,10 @@
background:url(imgs/grey_arrow_Show.png);
width:27px;
height:13px;
- margin-top:10px;
+ margin-top:12px;
margin-left:-10px;
}
+
#Ldt-Show-Tags{
position:relative;
height:13px;
@@ -88,12 +99,27 @@
color:#4D4D4D;
padding:5px;
font-weight:bold;
+ text-align:left;
+ float:left;
+ font-size:10px;
}
+ #Ldt-SaShareTools{
+ text-align:right;
+ float:right;
+ }
+
#Ldt-PlaceHolder{
position:absolue;
float:none;
}
+
+ .Ldt-mode-radio{
+ visibility:hidden;
+ height:0px;
+ display:none
+ }
+
.Ldt-Control1{
width:60px;
float:left;
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/player/src/css/LdtPlayerFc.css Tue Sep 14 13:15:28 2010 +0200
@@ -0,0 +1,175 @@
+ #demo-frame > div.demo { padding: 5px !important; };
+
+ button.ui-button-icon-only {
+ height:1.5em;
+ width:1.5em;
+ }
+
+ #Ldt-loader{
+ background:url(imgs/transBlack.gif);
+ width:10px;
+ height:10px;
+ }
+
+ #Ldt-controler {
+ font-size: 62.5%;
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ background-color:#DECFE2;
+ height:35px;
+ padding:5px;
+ }
+
+ .Ldt-iri-chapter{
+ padding-top:10px;
+ padding-bottom:5px;
+ border-left:solid 1px #000;
+ border-right:solid 1px #000;
+ }
+
+ #Ldt-loader {
+ background:url(imgs/loader_fc.gif) no-repeat;
+ width:20px;
+ height:16px;
+ float:left;
+ }
+
+ .tooltip {
+ display:none;
+ background:transparent url(imgs/white_arrow_mini.png);
+ font-size:12px;
+ height:55px;
+ width:180px;
+ padding:10px;
+ padding-left:15px;
+ padding-top:15px;
+ padding-right:15px;
+ color:#000;
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ }
+ #Ldt-Root{
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ }
+ #Ldt-Hat{
+ height:3px;
+ }
+ #Ldt-Annotations{
+ padding-left:5px;
+ width:470px;
+ float:left;
+ font-size: 62.5%;
+ }
+ #Ldt-SaTitle{
+ padding-top:2px;
+ padding-bottom:5px;
+ font-size:18px;
+ height:22p;
+ color:#FFF;
+ }
+ #Ldt-SaDescription{
+ font-size:12px;
+ }
+ #Ldt-Show-Arrow-container{
+ margin-left:60px;
+ }
+ #Ldt-Show-Arrow{
+ position:relative;
+ background:url(imgs/grey_arrow_Show.png);
+ width:27px;
+ height:13px;
+ margin-top:12px;
+ margin-left:-10px;
+ }
+
+ #Ldt-output{
+ display:none;
+ }
+ #Ldt-Show-Tags{
+ position:relative;
+ height:13px;
+ margin-top:-10px;
+ border: solid 1px #000;
+ }
+ #Ldt-ShowAnnotation-video{
+ position:absolute;
+ z-index: 999;
+ padding:5px;
+ background:url(imgs/transBlack.png);
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ color:#FFF;
+ }
+ #Ldt-ShowAnnotation-audio{
+ position:relative;
+ padding:5px;
+ background-color:#773584;
+ font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
+ color:#000000;
+ }
+ #Ldt-SaKeyword{
+ background-color:#28042D;
+ color:#FFFFFF;
+ padding:5px;
+ font-weight:bold;
+ text-align:left;
+ float:left;
+ font-size:10px;
+ }
+ #Ldt-SaShareTools{
+ text-align:right;
+ float:right;
+ }
+
+
+ #Ldt-PlaceHolder{
+ position:absolue;
+ float:none;
+ }
+
+ .Ldt-mode-radio{
+ visibility:hidden;
+ height:0px;
+ display:none
+ }
+
+ .Ldt-Control1{
+ width:60px;
+ float:left;
+ }
+ .Ldt-Control2{
+ padding-left:10px;
+ width:60px;
+ float:left;
+ }
+ .Ldt-cleaner {
+ clear:both;
+ }
+ .share {
+ background:url('imgs/widget20.png') no-repeat scroll 0 0 transparent ;
+ display:block;
+ height:16px;
+ line-height:16px !important;
+ overflow:hidden;
+ width:16px;
+ float:left;
+ cursor:pointer;
+ margin:2px;
+ }
+ .shareFacebook{
+ background-position:0 -704px;
+ }
+ .shareMySpace{
+ background-position:0 -736px;
+ }
+ .shareTwitter{
+ background-position:0 -1072px;
+ }
+ .shareGoogle{
+ background-position:0 -752px;
+ }
+ .shareDelicious{
+ background-position:0 -672px;
+ }
+ .shareJamesPot{
+ background-position:0 -1808px;
+ }
+
+
\ No newline at end of file
Binary file client/player/src/css/imgs/loader_fc.gif has changed
--- a/client/player/src/js/LdtPlayer.js Fri Aug 06 17:19:37 2010 +0200
+++ b/client/player/src/js/LdtPlayer.js Tue Sep 14 13:15:28 2010 +0200
@@ -1,337 +1,464 @@
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- ----------------------------------------------------------------
-
- LDTPlayer is created by http://www.iri.centrepompidou.fr
- 2010-06-14 - version 0.08
-
- init By Samuel Huron < samuel.huron (at) cybunk (dot) com >
- use JQUERY - Compatible v1.3.2 :: Optimal 1.4
- use TOOLTIP FOR JQ -
- use JQUERY UI - for theme management
- use JWPLAYER - but you can change it with other things
- use Media Fragment - inspired by HTML5 exemple from Silvia Pfeiffer
- for #t= // http://annodex.net/~silvia/itext/mediafrag.html
-
-
-
- TODO : ////////////////////////////////////////
-
- - ajouter le share embed
- - gestion créer une annotation simple
- - bouton graphique design : pause / stop
- - gestion des tags
- - creation du mode radio
-
- ----------------------------------------------------------------
+/*
+ *
+ * Copyright 2010 Institut de recherche et d’innovation
+ * contributor(s) : Samuel Huron
+ *
+ * contact@iri.centrepompidou.fr
+ * http://www.iri.centrepompidou.fr
+ *
+ * This software is a computer program whose purpose is to show and add annotations on a video .
+ * This software is governed by the CeCILL-C license under French law and
+ * abiding by the rules of distribution of free software. You can use,
+ * modify and/ or redistribute the software under the terms of the CeCILL-C
+ * license as circulated by CEA, CNRS and INRIA at the following URL
+ * "http://www.cecill.info".
+ *
+ * The fact that you are presently reading this means that you have had
+ * knowledge of the CeCILL-C license and that you accept its terms.
*/
+if(window.__IriSP === undefined ){ var __IriSP={};}
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- INIT player LDT */
+// Player Configuration
+__IriSP.config = {
+ metadata:{
+ format:'cinelab',
+ src:'http://exp.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be',
+ load:'jsonp'
+ },
+ gui:{
+ width:650,
+ height:0,
+ mode:'radio',
+ container:'LdtPlayer',
+ debug:false,
+ css:'../src/css/LdtPlayer.css'
+ },
+ player:{
+ type:'jwplayer',
+ src:'../res/swf/player.swf'
+ },
+ module:null
+ };
- //LdtShareTool = "<!-- AddThis Button BEGIN -->\n <div class='addthis_toolbox addthis_default_style'> \n<a href='http://www.addthis.com/bookmark.php?v=250&username=xa-4c349bb933426b8c' class='addthis_button_compact'>Share</a><span class='addthis_separator'>|</span> \n <a class='addthis_button_facebook'></a> \n <a class='addthis_button_myspace'></a> \n <a class='addthis_button_google'></a> \n <a class='addthis_button_twitter'></a> \n </div> \n <script type='text/javascript' src='http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4c349bb933426b8c'></script>/n<!-- AddThis Button END -->";
-
- LdtShareTool = ""+
- "\n<a onclick=\"LdtApiPlayer.share('delicious');\" title='partager avec delicious'><span class='share shareDelicious'> </span></a>"+
- "\n<a onclick=\"LdtApiPlayer.share('facebook');\" title='partager avec facebook'> <span class='share shareFacebook'> </span></a>"+
- "\n<a onclick=\"LdtApiPlayer.share('twitter');\" title='partager avec twitter'> <span class='share shareTwitter'> </span></a>"+
- "\n<a onclick=\"LdtApiPlayer.share('myspace');\" title='partager avec Myspace'> <span class='share shareMySpace'> </span></a>"+
- "\n<a onclick=\"LdtApiPlayer.share('jamespot');\" title='partager avec JamesPot'> <span class='share shareJamesPot'> </span></a>";
-
- var DIVROOTID;
+__IriSP.lib = {
+ jQuery:"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js",
+ jQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js",
+ jQueryToolTip:"http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js",
+ swfObject:"http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"
+ };
+
+// Player Variable
+__IriSP.LdtShareTool = ""+
+"\n<a onclick=\"__IriSP.MyApiPlayer.share('delicious');\" title='partager avec delicious'><span class='share shareDelicious'> </span></a>"+
+"\n<a onclick=\"__IriSP.MyApiPlayer.share('facebook');\" title='partager avec facebook'> <span class='share shareFacebook'> </span></a>"+
+"\n<a onclick=\"__IriSP.MyApiPlayer.share('twitter');\" title='partager avec twitter'> <span class='share shareTwitter'> </span></a>"+
+"\n<a onclick=\"__IriSP.MyApiPlayer.share('myspace');\" title='partager avec Myspace'> <span class='share shareMySpace'> </span></a>"+
+"\n<a onclick=\"__IriSP.MyApiPlayer.share('jamespot');\" title='partager avec JamesPot'> <span class='share shareJamesPot'> </span></a>";
+
+// Official instance - to refactor ?
+__IriSP.MyLdt = null;
+__IriSP.MyTags = null;
+__IriSP.MyApiPlayer = null;
+__IriSP.player = null;
+
+// genral var (old code) - to refactor
+__IriSP.Durration = null;
+__IriSP.playerLdtWidth= null;
+__IriSP.playerLdtHeight= null;
+
- function playerLdt (width,height,file,divId,MySwfPath,AudioVideo){
-
- if (AudioVideo==true){
- // VIDEO
- $jIRI("#"+divId).append("<div id=\"Ldt-Root\"><div id=\"ldt-Show\">\n <div id=\"Ldt-ShowAnnotation-video\" class=\"demo\" >\n <div id=\"Ldt-SaTitle\"></div>\n <div id=\"Ldt-SaDescription\"></div>\n <div style='text-align:right; float:right;' >\n \n "+LdtShareTool+"\n \n <div onclick=\"$jIRI('#Ldt-ShowAnnotation').slideUp();\" style='color:#ffffff;float:right;padding-right:10px;padding-left:10px;padding-bottom:5px;' >X</div> </div> </div> <div id=\"Ldt-PlaceHolder\">\n <a href=\"http://www.adobe.com/go/getflashplayer\">Get flash</a> to see this player \n </div>\n </div>\n <div id=\"Ldt-controler\" class=\"demo\">\n <div class=\"Ldt-Control1\" >\n <button id=\"ldt-CtrlPlay\" onclick=\"LdtApiPlayer.play()\">Play</button>\n <button id=\"ldt-CtrlNext\" onclick=\"LDTligne.nextAnnotation()\">next</button>\n </div>\n <div id=\"Ldt-Annotations\" class=\"ui-slider\">\n <div id=\"slider-range-min\"></div>\n </div>\n <div class=\"Ldt-Control2\">\n <button id=\"ldt-CtrlLink\" onclick=\"LdtApiPlayer.share()\">Share</button>\n <button id=\"ldt-CtrlSound\" onclick=\"LdtApiPlayer.mute()\">Sound</button>\n</div>\n </div><div class='cleaner'> </div></div>");
-
- } else {
- // AUDIO
- $jIRI("#"+divId).append("<div id=\"Ldt-Root\"><div id=\"Ldt-PlaceHolder\" style=\"visibility:hidden;height:0px;display:none;\">\n <a href=\"http://www.adobe.com/go/getflashplayer\">Get flash</a> to see this player \n </div>\n <div id=\"Ldt-controler\" class=\"demo\">\n <div class=\"Ldt-Control1\" >\n <button id=\"ldt-CtrlPlay\" onclick=\"LdtApiPlayer.play()\">Play</button>\n <button id=\"ldt-CtrlNext\" onclick=\"LDTligne.nextAnnotation()\">next</button>\n </div>\n <div id=\"Ldt-Annotations\" class=\"ui-slider\">\n <div id=\"slider-range-min\"></div>\n </div>\n <div class=\"Ldt-Control2\">\n <button id=\"ldt-CtrlLink\" onclick=\"LdtApiPlayer.share()\">Share</button>\n <button id=\"ldt-CtrlSound\" onclick=\"LdtApiPlayer.mute()\">Sound</button>\n </div>\n <div class='cleaner'> </div> \n <div id=\"Ldt-Show-Arrow-container\"> <div id=\"Ldt-Show-Arrow\"> </div> <!--<div id=\"Ldt-Show-Tags\" style=\"background-color:#000;width:10px;\">xx </div> --> </div>\n </div> <div> <div id=\"ldt-Show\">\n </div>\n<div id=\"Ldt-ShowAnnotation-audio\" class=\"demo\" >\n <div id=\"Ldt-SaTitle\"></div>\n <div id=\"Ldt-SaDescription\"></div>\n <div class='cleaner'> </div></div>\n<div id=\"Ldt-SaKeyword\">\n<div id=\"Ldt-SaKeywordText\" style='text-align:left; float:left;font-size:10px;width:500px;' > </div>\n <div class='cleaner'> </div> <div style='text-align:right; float:right;' >\n \n "+LdtShareTool+"\n \n <!--<div onclick=\"$jIRI('#Ldt-ShowAnnotation').slideUp();\" style='color:#8c8a8c;float:right;padding-right:10px;padding-left:10px;padding-bottom:5px;' >X</div> --> </div>\n <div class='cleaner'> </div></div> <div id=\"Ldt-Tags\" style=\"display:none;\" > My tags </div></div> <div id=\"output\" class=\"demo\" style=\"display:none;\"></div>");
- }
- //DIVROOTID=divId;
- //$jIRI("#Ldt-Root").css('visibility','hidden');
- //$jIRI("#Ldt-Root").css('display','none');
- loadJson(width,height,file,MySwfPath);
- }
+
- /*
- $('#loading').ajaxStart(function() {
- $(this).show();
- $('#result').hide();
- }).ajaxStop(function() {
- $(this).hide();
- $('#result').fadeIn('slow');
- });
- */
-
+__IriSP.init = function (config){
+
+ __IriSP.config = config;
+ var metadataSrc = __IriSP.config.metadata.src;
+ var guiContainer = __IriSP.config.gui.container;
+ var guiMode = __IriSP.config.gui.mode;
+ var guiLdtShareTool = __IriSP.LdtShareTool;
+ // Localize jQuery variable
+ __IriSP.jQuery = null;
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- LOAD JSON AND PARSE IT */
+ /******** Load jQuery if not present *********/
+ if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') {
+ var script_tag = document.createElement('script');
+ script_tag.setAttribute("type","text/javascript");
+ script_tag.setAttribute("src",__IriSP.lib.jQuery);
+ //"http://cdn.jquerytools.org/1.2.4/full/jquery.tools.min.js");
+ script_tag.onload = scriptLibHandler;
+ script_tag.onreadystatechange = function () { // Same thing but for IE
+ if (this.readyState == 'complete' || this.readyState == 'loaded') {
+ scriptLibHandler();
+
+ }
+ };
+ // Try to find the head, otherwise default to the documentElement
+ (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
+ } else {
+ // The jQuery version on the window is the one we want to use
+ __IriSP.jQuery = window.jQuery;
+ scriptLibHandler();
+ }
- var MyLdt;
- var MyTags;
- var Durration;
- var playerLdtWidth;
- var playerLdtHeight;
+ /******** Called once jQuery has loaded ******/
+ function scriptLibHandler() {
+
+ var script_jqUi_tooltip = document.createElement('script');
+ script_jqUi_tooltip.setAttribute("type","text/javascript");
+ script_jqUi_tooltip.setAttribute("src",__IriSP.lib.jQueryToolTip);
+ script_jqUi_tooltip.onload = scriptLoadHandler;
+ script_jqUi_tooltip.onreadystatechange = function () { // Same thing but for IE
+ if (this.readyState == 'complete' || this.readyState == 'loaded') {
+ scriptLoadHandler("jquery.tools.min.js loded");
+ }
+ };
+
+ var script_swfObj = document.createElement('script');
+ script_swfObj.setAttribute("type","text/javascript");
+ script_swfObj.setAttribute("src",__IriSP.lib.swfObject);
+ script_swfObj.onload = scriptLoadHandler;
+ script_swfObj.onreadystatechange = function () { // Same thing but for IE
+ if (this.readyState == 'complete' || this.readyState == 'loaded') {
+ scriptLoadHandler("swfobject.js loded");
+ }
+ };
+
+ var script_jqUi = document.createElement('script');
+ script_jqUi.setAttribute("type","text/javascript");
+ script_jqUi.setAttribute("src",
+ "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js");
+ script_jqUi.onload = scriptLoadHandler;
+ script_jqUi.onreadystatechange = function () { // Same thing but for IE
+ if (this.readyState == 'complete' || this.readyState == 'loaded') {
+ scriptLoadHandler("jquery-ui.min.js loded");
+ }
+ };
+
+
+
- $('#log').ajaxError(function(event, request, settings){
- $(this).append("<li>Error requesting page " + settings.url + "</li>");
- });
-
- function loadJson (width,height,urlJson,MySwfPath){
-
- playerLdtWidth=width;
- playerLdtHeight=height;
-
- $jIRI.ajax({
+ (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_jqUi_tooltip);
+ (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_jqUi);
+ (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_swfObj);
+
+
+ };
+
+ /******** Called once all lib are loaded ******/
+ var loadLib = 0;
+ function scriptLoadHandler(Mylib) {
+ //alert(Mylib);
+ loadLib +=1;
+ if(loadLib===3){
+ main();
+ }else {
+ // __IriSP.jQuery('#'+__IriSP.config.gui.container).html("Loading library ...");
+ }
+ };
+
+ /******** Our main function ********/
+ function main() {
+
+
+ // Make __IriSP.jQuery and restore window.jQuery
+ __IriSP.jQuery = window.jQuery.noConflict(true);
+ // Call MY Jquery
+ __IriSP.jQuery(document).ready(function($) {
+
+ /******* Load CSS *******/
+ var css_link_jquery = __IriSP.jQuery("<link>", {
+ rel: "stylesheet",
+ type: "text/css",
+ href: "../res/css/jq-css/themes/base/jquery.ui.all.css",
+ 'class': "dynamic_css"
+ });
+ var css_link_custom = __IriSP.jQuery("<link>", {
+ rel: "stylesheet",
+ type: "text/css",
+ href: __IriSP.config.gui.css ,
+ 'class': "dynamic_css"
+ });
+
+ css_link_jquery.appendTo('head');
+ css_link_custom.appendTo('head');
+
+ // to see dynamicly loaded css on IE
+ if ($.browser.msie) {
+ $('.dynamic_css').clone().appendTo('head');
+ }
+
+ //__IriSP.trace("main","ready createMyHtml");
+
+ __IriSP.createMyHtml();
+ //__IriSP.trace("main","end createMyHtml");
+
+ /******* Load Metadata *******/
+
+ __IriSP.jQuery.ajax({
dataType: 'jsonp',
- url:urlJson,
+ url:metadataSrc,
success : function(json){
- //alert("ICI : "+json);
-
- if(json == ""){
- alert("ERREUR DE CHARGEMENT JSON");
- } else {
-
-
- /* # CREATE MEDIA */
- /* # JUSTE ONE PLAYER FOR THE MOMENT */
- $jIRI("<div></div>").appendTo("#output");
- MyMedia = new Media(json.medias[0].id,json.medias[0].href,json.medias[0]["meta"]["dc:duration"],json.medias[0]['dc:title'],json.medias[0]['dc:description']);
- MyMedia.createPlayer(playerLdtWidth,playerLdtHeight,json.medias[0]["meta"]["item"]["value"],MySwfPath);
+ __IriSP.trace("ajax","success");
+
+ // START PARSING -----------------------
+ if(json === ""){
+ alert("ERREUR DE CHARGEMENT JSON");
+ } else {
+
+
+ // # CREATE MEDIA //
+ // # JUSTE ONE PLAYER FOR THE MOMENT //
+ //__IriSP.jQuery("<div></div>").appendTo("#output");
+ var MyMedia = new __IriSP.Media(
+ json.medias[0].id,
+ json.medias[0].href,
+ json.medias[0]['meta']['dc:duration'],
+ json.medias[0]['dc:title'],
+ json.medias[0]['dc:description']);
+
+ __IriSP.trace("__IriSP.MyApiPlayer",
+ __IriSP.config.gui.width+" "
+ + __IriSP.config.gui.height + " "
+ + json.medias[0].href + " "
+ + json.medias[0]['meta']['dc:duration'] + " "
+ + json.medias[0]['meta']['item']['value']);
+
+ // Create APIplayer
+ __IriSP.MyApiPlayer = new __IriSP.APIplayer(
+ __IriSP.config.gui.width,
+ __IriSP.config.gui.height,
+ json.medias[0].href,
+ json.medias[0]['meta']['dc:duration'],
+ json.medias[0]['meta']['item']['value']);
- /* # CREATE THE FIRST LINE */
- MyLdt = new Ligne (json['annotation-types'][0].id,json['annotation-types'][0]['dc:title'],json['annotation-types'][0]['dc:description'],json.medias[0]["meta"]["dc:duration"]);
+ // # CREATE THE FIRST LINE //
+ __IriSP.trace("__IriSP.init.main","__IriSP.Ligne");
+ __IriSP.MyLdt = new __IriSP.Ligne (
+ json['annotation-types'][0].id,
+ json['annotation-types'][0]['dc:title'],
+ json['annotation-types'][0]['dc:description'],
+ json.medias[0]['meta']['dc:duration']);
+
+ // CREATE THE TAG CLOUD //
+ __IriSP.trace("__IriSP.init.main","__IriSP.Tags");
+ __IriSP.MyTags = new __IriSP.Tags (json.tags);
- /* CREATE THE TAG CLOUD */
- MyTags = new Tags (json.tags);
+ // CREATE THE ANNOTATIONS //
+ // JUSTE FOR THE FIRST TYPE //
+ __IriSP.jQuery.each(json.annotations, function(i,item) {
+ if (item.meta['id-ref'] == __IriSP.MyLdt.id) {
+ //__IriSP.trace("__IriSP.init.main","__IriSP.MyLdt.addAnnotation");
+ __IriSP.MyLdt.addAnnotation(
+ item.id,
+ item.begin,
+ item.end,
+ item.media,
+ item.content.title,
+ item.content.description,
+ item.content.color,
+ item.tags);
+ }
+ //MyTags.addAnnotation(item);
+ });
+ __IriSP.jQuery.each(json.lists, function(i,item) {
+ __IriSP.trace("lists","");
+ });
+ __IriSP.jQuery.each(json.views, function(i,item) {
+ __IriSP.trace("views","");
+ });
+ }
+ // END PARSING ----------------------- //
- /* CREATE THE ANNOTATIONS */
- /* JUSTE FOR THE FIRST TYPE */
- $jIRI.each(json.annotations, function(i,item) {
- if (item.meta['id-ref'] == MyLdt.id) {
- MyLdt.addAnnotation(
- item.id,
- item.begin,
- item.end,
- item.media,
- item.content.title,
- item.content.description,
- item.content.color,
- item.tags);
- }
- MyTags.addAnnotation(item);
- });
- $jIRI.each(json.lists, function(i,item) {
- trace("lists","");
- });
- $jIRI.each(json.views, function(i,item) {
- trace("views","");
- });
- /* END PARSING ----------------------- */
- }
},error : function(data){
alert("ERROR : "+data);
}
});
- }
- function callbackLdts(json){
-
- alert("CALLBACK");
-
- }
- function trace (msg,value){
- $jIRI("<div>"+msg+" : "+value+"</div>").appendTo("#output");
- }
+
+
+ });
+ }
-
-
-
-
-
+};
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- Class Media */
-/*
-
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms":"o=0",
- "id":"kia_closeup",
- "url":"D:/Thibaut/Outils_techno/IRI-LignesDeTemps/media/video/kia_closeup_BQ.flv",
- "dc:creator":"tcavalie",
- "dc:created":"2010-05-04T00:00:00",
- "dc:contributor":"tcavalie",
- "dc:modified":"2010-05-04T00:00:00",
- "dc:creator.contents":"Abbas Kiarostami",
- "dc:created.contents":"1990",
- "dc:title":"Close Up is a very very long title",
- "dc:description":"Analyse de Close Up",
- "dc:duration":"689266"
- */
- function Media (id,url,duration,title,description){
- this.id = id;
- this.url = url;
- this.title = title;
- this.description = description;
- this.duration = duration;
+__IriSP.createMyHtml = function(){
+ var width = __IriSP.config.gui.width;
+
+ // AUDIO */
+ // PB dans le html : ;
+ __IriSP.jQuery( "<div id='Ldt-Root'>\n"+
+ " <div id='Ldt-PlaceHolder'>\n"+
+ " <a href='http://www.adobe.com/go/getflashplayer'>Get flash</a> to see this player \n"+
+ " </div>\n"+
+ " <div id='Ldt-controler' class='demo'>\n"+
+ " <div class='Ldt-Control1' >\n"+
+ " <button id='ldt-CtrlPlay' onclick='__IriSP.MyApiPlayer.play()'>Lecture / Pause </button>\n"+
+ " <button id='ldt-CtrlNext' onclick='__IriSP.MyLdt.nextAnnotation()'>Suivant</button>\n"+
+ " </div>\n"+
+ " <div id='Ldt-Annotations' class='ui-slider'>\n"+
+ " <div id='slider-range-min'></div>\n"+
+ " </div>\n"+
+ " <div class='Ldt-Control2'>\n"+
+ " <button id='ldt-CtrlLink'> Partager </button>\n"+
+ " <button id='ldt-CtrlSound' onclick='__IriSP.MyApiPlayer.mute()'>Sound</button>\n"+
+ " </div>\n"+
+ " <div class='cleaner'> \;</div> \n"+
+ " <div id='Ldt-Show-Arrow-container'>\n"+
+ " <div id='Ldt-Show-Arrow'> </div>\n"+
+ " </div>\n"+
+ "</div>\n"+
+ "<div>\n"+
+ " <div id='ldt-Show'> </div>\n"+
+ " <div id='Ldt-ShowAnnotation-audio' class='demo' >\n"+
+ " <div id='Ldt-SaTitle'></div>\n"+
+ " <div id='Ldt-SaDescription'></div>\n"+
+ " <div class='cleaner'><!-- \;--></div>\n"+
+ " </div>\n"+
+ " <div id='Ldt-SaKeyword'>\n"+
+ " <div id='Ldt-SaKeywordText'> </div>\n"+
+ " <div class='cleaner'></div>\n"+
+ " <div id='Ldt-SaShareTools'>\n"+
+ " \n"+
+ " "+__IriSP.LdtShareTool+"\n"+
+ " \n"+
+ " </div>\n"+
+ " <div class='cleaner'></div>"+
+ "</div> "+
+ //"<div id='Ldt-Tags'> Mots clefs : </div>"+
+ "</div>"+
+ "<div id='Ldt-output'></div>").appendTo("#"+__IriSP.config.gui.container);
+
+ __IriSP.trace("__IriSP.createHtml","end");
+
+ __IriSP.jQuery("#Ldt-Annotations").width(width-(75*2));
+ __IriSP.jQuery("#Ldt-Show-Arrow-container").width(width-(75*2));
+ __IriSP.jQuery("#Ldt-ShowAnnotation-audio").width(width-10);
+ __IriSP.jQuery("#Ldt-ShowAnnotation-video").width(width-10);
+ __IriSP.jQuery("#Ldt-SaKeyword").width(width-10);
+ __IriSP.jQuery("#Ldt-controler").width(width-10);
+ __IriSP.jQuery("#Ldt-Control").attr("z-index","100");
+ __IriSP.jQuery("#Ldt-controler").hide();
+
+ __IriSP.jQuery("<div id='Ldt-load-container'><div id='Ldt-loader'> </div> Chargement... </div>").appendTo("#Ldt-ShowAnnotation-audio");
+
+ if(__IriSP.config.gui.mode=='radio'){
+ __IriSP.jQuery("#Ldt-load-container").attr("width",__IriSP.config.gui.width);
+ }
+ // Show or not the output
+ if(__IriSP.config.gui.debug===true){
+ __IriSP.jQuery("#Ldt-output").show();
+ } else {
+ __IriSP.jQuery("#Ldt-output").hide();
+ }
+
+};
- this.lignes = new Array();
- this.updatePlayer = updatePlayerMedia;
- this.getDuration = getMediaDuration;
- this.createPlayer = createPlayerMedia;
-
- trace("Media ID :",id);
- trace("Media URL :",this.url);
- trace("- content : color",url);
- trace("- content : audio",title);
- }
- function createPlayerMedia(width,height,MyStreamer,MySwfPath){
- LdtApiPlayer = new APIplayer(width,height,this.url,this.duration,MyStreamer,MySwfPath);
+__IriSP.Media = function (id,url,duration,title,description){
+ this.id = id;
+ this.url = url;
+ this.title = title;
+ this.description = description;
+ this.duration = duration;
+ this.lignes = new Array();
+
+ __IriSP.trace("__IriSP.Media","Media ID : "+id);
+ __IriSP.trace("__IriSP.Media","Media URL : "+url);
+ __IriSP.trace("__IriSP.Media","Media title : "+title);
+}
+__IriSP.Media.prototype.createPlayerMedia = function (width,height,MyStreamer,MySwfPath){
+ __IriSP.MyApiPlayer = new __IriSP.APIplayer(width,height,this.url,this.duration,MyStreamer,MySwfPath);
//createPlayer(width,height,this.url,this.duration,MyStreamer,MySwfPath);
- }
- function updatePlayerMedia(){
-
- }
- function getMediaDuration(){
+}
+__IriSP.Media.prototype.getMediaDuration = function (){
return (this.duration);
- }
- function getMediaTitle(){
+}
+__IriSP.Media.prototype.getMediaTitle = function (){
return (this.title);
- }
-
-
-
-
-
-
+}
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- INTERFACE : SLIDER ( CONTROL BAR ) | BUTTON () */
- function createInterface (width,height,duration){
-
- //$jIRI("#Ldt-Root").css('display','visible');
- trace("CREATE INTERFACE ",width+","+height+","+duration+",");
+/* INTERFACE : SLIDER ( CONTROL BAR ) | BUTTON () */
+__IriSP.createInterface = function(width,height,duration){
+
+ __IriSP.jQuery("#Ldt-controler").show();
+ //__IriSP.jQuery("#Ldt-Root").css('display','visible');
+ __IriSP.trace("__IriSP.createInterface",width+","+height+","+duration+",");
- $jIRI(function() {
- $jIRI("#Ldt-Annotations").width(width-(75*2));
- $jIRI("#Ldt-Show-Arrow-container").width(width-(75*2));
- //$jIRI("#Ldt-Show-Arrow-container").width(width-(75*2));
- $jIRI("#Ldt-ShowAnnotation-audio").width(width-10);
- $jIRI("#Ldt-ShowAnnotation-video").width(width-10);
- $jIRI("#Ldt-SaKeyword").width(width-10);
- $jIRI("#Ldt-controler").width(width-10);
- $jIRI("#Ldt-Control").attr("z-index","100");
-
- $jIRI("#Ldt-ShowAnnotation").click(function () {
- //$jIRI(this).slideUp();
- });
+ __IriSP.jQuery("#Ldt-ShowAnnotation").click(function () {
+ //__IriSP.jQuery(this).slideUp();
+ });
- var LdtpPlayerY = $jIRI("#Ldt-PlaceHolder").attr("top");
- var LdtpPlayerX = $jIRI("#Ldt-PlaceHolder").attr("left");
-
- $jIRI("#slider-range-min").slider({ //range: "min",
- value: 0,
- min: 1,
- max: duration/1000,//1:54:52.66 = 3600+3240+
- step: 0.1,
- slide: function(event, ui) {
-
- //$jIRI("#amount").val(ui.value+" s");
- //player.sendEvent('SEEK', ui.value)
- LdtApiPlayer.seek(ui.value);
- //changePageUrlOffset(ui.value);
- //player.sendEvent('PAUSE')
- }
- });
- $jIRI("#amount").val($jIRI("#slider-range-min").slider("value")+" s");
-
- $jIRI(".Ldt-Control1 button:first").button({
- icons: {
- primary: 'ui-icon-play'
- },
- text: false
- }).next().button({
- icons: {
- primary: 'ui-icon-seek-next'
- },
- text: false
- });
-
- $jIRI(".Ldt-Control2 button:first").button({
- icons: {
- primary: 'ui-icon-transferthick-e-w'//,
- //secondary: 'ui-icon-volume-off'
- },
- text: false
- }).next().button({
- icons: {
- primary: 'ui-icon-volume-on'
- },
- text: false
- });
+ var LdtpPlayerY = __IriSP.jQuery("#Ldt-PlaceHolder").attr("top");
+ var LdtpPlayerX = __IriSP.jQuery("#Ldt-PlaceHolder").attr("left");
+ __IriSP.jQuery("#slider-range-min").slider({ //range: "min",
+ value: 0,
+ min: 1,
+ max: duration/1000,//1:54:52.66 = 3600+3240+
+ step: 0.1,
+ slide: function(event, ui) {
+
+ //__IriSP.jQuery("#amount").val(ui.value+" s");
+ //player.sendEvent('SEEK', ui.value)
+ __IriSP.MyApiPlayer.seek(ui.value);
+ //changePageUrlOffset(ui.value);
+ //player.sendEvent('PAUSE')
+ }
+ });
+ __IriSP.trace("__IriSP.createInterface","ICI");
+ __IriSP.jQuery("#amount").val(__IriSP.jQuery("#slider-range-min").slider("value")+" s");
+ __IriSP.jQuery(".Ldt-Control1 button:first").button({
+ icons: {
+ primary: 'ui-icon-play'
+ },
+ text: false
+ }).next().button({
+ icons: {
+ primary: 'ui-icon-seek-next'
+ },
+ text: false
+ });
+ __IriSP.jQuery(".Ldt-Control2 button:first").button({
+ icons: {
+ primary: 'ui-icon-transferthick-e-w'//,
+ //secondary: 'ui-icon-volume-off'
+ },
+ text: false
+ }).next().button({
+ icons: {
+ primary: 'ui-icon-volume-on'
+ },
+ text: false
+ });
+
+ // /!\ PB A MODIFIER
+ //__IriSP.MyTags.draw();
+ __IriSP.trace("__IriSP.createInterface","ICI2");
+ __IriSP.jQuery("#ldt-CtrlPlay").attr("style","background-color:#CD21C24;");
- // version radio
- //$jIRI("#Ldtplayer1").css('display','none');
- //$jIRI("#Ldt-Root").show();
- MyTags.draw();
- });
+ __IriSP.jQuery("#Ldt-load-container").hide();
+
+ if(__IriSP.config.gui.mode=="radio" & __IriSP.jQuery.browser.msie!=true){
+ __IriSP.jQuery("#Ldtplayer1").attr("height","0");
+ }
+ __IriSP.trace("__IriSP.createInterface","3");
+
+ __IriSP.trace("__IriSP.createInterface","END");
+
}
-
-
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- UTIL */
-
-// code from http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
- function stripHtml(s)
- {
- return s.replace(/\\&/g, '&').replace(/\\</g, '<').replace(/\\>/g, '>').replace(/\\t/g, ' ').replace(/\\n/g, '<br />').replace(/'/g, ''').replace(/"/g, '"');
- }
-
-/* Conversion de couleur Decimal vers HexaDecimal || 000 si fff */
- function DEC_HEXA_COLOR(dec)
- {
- var hexa='0123456789ABCDEF',hex=''
- while (dec>15)
- {
- tmp = dec-(Math.floor(dec/16))*16;
- hex = hexa.charAt(tmp)+hex;
- dec = Math.floor(dec/16);
- }
- hex = hexa.charAt(dec)+hex;
- if (hex == "FFCC00"){ hex="";/* by default color of Ldt annotation */ }
- return(hex);
- }
-
-
-
-
-
-
-
-
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- API player - work in progress */
- function APIplayer (width,height,url,duration,streamerPath,MySwfPath){
+/* API player - work in progress ... need refactoring of code */
+__IriSP.APIplayer = function (width,height,url,duration,streamerPath,MySwfPath){
+
this.player = null;
this.hashchangeUpdate = null;
@@ -343,512 +470,449 @@
this.streamerPath = streamerPath;
this.MySwfPath = MySwfPath;
- this.pause = APIpPause;
- this.ready = APIpReady;
- this.play = APIpPlay;
- this.seek = APIpSeek;
- this.update = APIpUpdate;
- this.mute = APIpMute;
- this.share = APIpShare;
- MyApiPlayer = this;
+ __IriSP.MyApiPlayer = this;
+
+ __IriSP.createPlayer(width,height,this.url,this.duration,this.streamerPath,this.MySwfPath);
+ __IriSP.trace("__IriSP.APIplayer","__IriSP.createPlayer");
- createPlayer(width,height,this.url,this.duration,this.streamerPath,this.MySwfPath);
-
+}
+__IriSP.APIplayer.prototype.ready = function(player){
+
+ //__IriSP.trace("__IriSP.APIplayer.prototype.APIpReady"," __IriSP.createInterface");
+ __IriSP.createInterface(this.width,this.height,this.duration);
+ __IriSP.trace("__IriSP.APIplayer.prototype.APIpReady","END __IriSP.createInterface");
+
+
+ // hashchange EVENT
+ if (window.addEventListener){
+
+ // pour FIREFOX hashchange EVENT
+ window.addEventListener("hashchange", function() {
+ var url = window.location.href;
+ var time = __IriSP.retrieveTimeFragment(url);
+ __IriSP.trace("__IriSP.APIplayer.prototype.ready",time);
+ if(__IriSP.MyApiPlayer.hashchangeUpdate==null){
+ __IriSP.MyApiPlayer.seek(time);
+ }else{
+ __IriSP.MyApiPlayer.hashchangeUpdate=null;
+ }
+ }, false);
+
+ }
+ else if (window.attachEvent){
+ // FOR IE hashchange EVENT
+
+ window.attachEvent("onhashchange", function() {
+ __IriSP.trace("hashchange",time);
+ var url = window.location.href;
+ var time = __IriSP.retrieveTimeFragment(url);
+ if(__IriSP.MyApiPlayer.hashchangeUpdate==null){
+ __IriSP.MyApiPlayer.seek(time);
+ }else{
+ __IriSP.MyApiPlayer.hashchangeUpdate=null;
+ }
+ }, false);
}
- function APIpCreate(){
-
- }
- function APIpReady(player){
- //alert("ready");
- createInterface(this.width,this.height,this.duration);
- this.player = player;
-
- // hashchange EVENT
- if (window.addEventListener){
- // pour FIREFOX hashchange EVENT
- window.addEventListener("hashchange", function() {
- var url = location.href;
- var time = retrieveTimeFragment(url);
- trace("hashchange",time);
- if(LdtApiPlayer.hashchangeUpdate==null){
- LdtApiPlayer.seek(time);
- }else{
- LdtApiPlayer.hashchangeUpdate=null;
- }
- }, false);
-
- }
- else if (window.attachEvent){
- // FOR IE hashchange EVENT
- window.attachEvent("onhashchange", function() {
- trace("hashchange",time);
- var url = location.href;
- var time = retrieveTimeFragment(url);
- if(LdtApiPlayer.hashchangeUpdate==null){
- LdtApiPlayer.seek(time);
- }else{
- LdtApiPlayer.hashchangeUpdate=null;
- }
- }, false);
- }
-
- }
- function APIpPause(){
- this.hashchangeUpdate = true;
- this.player.sendEvent('PAUSE');
- }
- function APIpPlay(){
- this.hashchangeUpdate = true;
- this.player.sendEvent('PLAY');
- }
- function APIpMute(){
- this.player.sendEvent('MUTE');
- }
- function APIpShare(network){
-
- MyMessage = "Je regarde :";
- MyURLNow = window.location.href;
- //alert(network+" : "+MyURLNow);
-
- if(network == "facebook"){
-
- //window.title =
-
- shareURL = "http://www.facebook.com/share.php?u=";
- //http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.addthis.com%2F%3Fsms_ss%3Dfacebook
-
- }else if(network == "twitter"){
-
- shareURL = "http://twitter.com/home?status="+MyMessage;
-
- }else if(network == "myspace"){
- shareURL ="http://www.myspace.com/Modules/PostTo/Pages/?u=";
-
- }else if(network == "delicious"){
- shareURL = "http://delicious.com/save?url=";
-
- }else if(network == "JamesPot"){
- alert(network+" non actif pour l'instant : "+MyURLNow);
-
- }
-
- window.location.href = shareURL+encodeURIComponent(MyURLNow);
- }
- function APIpSeek(time){
- this.player.sendEvent('SEEK', time);
- changePageUrlOffset(time);
- }
- function APIpUpdate(time){
- this.hashchangeUpdate = true;
- this.player.sendEvent('SEEK', time);
- }
- function changePageUrlOffset(time) {
- trace("changeURL",time);
- // update page url
- location.hash = "#t=" + time;
- //document.displayurl.offseturl.value = location.href;
- window.location.href = location.href;
- }
+}
+__IriSP.APIplayer.prototype.pause = function(){
+ this.hashchangeUpdate = true;
+ __IriSP.player.sendEvent('PAUSE');
+}
+__IriSP.APIplayer.prototype.play = function(){
+ this.hashchangeUpdate = true;
+ __IriSP.player.sendEvent('PLAY');
+}
+__IriSP.APIplayer.prototype.mute = function(){
+ __IriSP.player.sendEvent('MUTE');
+}
+__IriSP.APIplayer.prototype.share = function(network){
-
+ var MyMessage = "Je regarde :";
+ var MyURLNow = window.location.href;
+ var shareURL;
+ //alert(network+" : "+MyURLNow);
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- CREER JW PLAYER creation + listener */
-
- var currentPosition = 0;
- var currentVolume = 50;
- var player = null;
- var startPosition = null;
-
- function playerReady(thePlayer) {
-
- player = window.document[thePlayer.id];
- LdtApiPlayer.ready(player);
- trace("PLAYER READY ","");
- var url = location.href;
- var time = retrieveTimeFragment(url);
- trace("PLAYER READY SEEK IF NEEDED",time);
- startPosition = time;
- addListeners();
+ if(network == "facebook"){
+ shareURL = "http://www.facebook.com/share.php?u=";
+ }else if(network == "twitter"){
+ shareURL = "http://twitter.com/home?status="+MyMessage;
+ }else if(network == "myspace"){
+ shareURL ="http://www.myspace.com/Modules/PostTo/Pages/?u=";
+ }else if(network == "delicious"){
+ shareURL = "http://delicious.com/save?url=";
+ }else if(network == "JameSpot"){
+ shareURL = "http://www.jamespot.com/?action=spotit&u=";
+ //alert(network+" non actif pour l'instant : "+MyURLNow);
}
- function addListeners() {
- if (player) {
- player.addModelListener("TIME", "positionListener");
- player.addControllerListener("VOLUME", "volumeListener");
- player.addModelListener('STATE', 'stateMonitor');
- //http://developer.longtailvideo.com/trac/wiki/Player5Events
- } else {
- setTimeout("addListeners()",100);
- }
-
- // et changer les boutons
- }
- function stateMonitor(obj) {
- if(obj.newstate == 'PAUSED')
- {
- trace("PAUSE : ","");
- changePageUrlOffset(currentPosition);
-
- } else if (obj.newstate == 'PLAYING'){
- // une fois la video prete a lire la déplacer au bon timecode
- if(startPosition!=null){
- LdtApiPlayer.update(startPosition);
- startPosition = null;
- }
- } else if (obj.newstate == 'BUFFERING'){
- trace("BUFFERING : ","");
- //changePageUrlOffset(currentPosition);
+ window.location.href = shareURL+encodeURIComponent(MyURLNow);
+}
+__IriSP.APIplayer.prototype.seek = function (time){
+ __IriSP.player.sendEvent('SEEK', time);
+ this.changePageUrlOffset(time);
+}
+__IriSP.APIplayer.prototype.update = function (time){
+ this.hashchangeUpdate = true;
+ __IriSP.player.sendEvent('SEEK', time);
+}
+__IriSP.APIplayer.prototype.changePageUrlOffset = function (time) {
+ //alert(time);
+ __IriSP.trace("__IriSP.APIplayer.prototype.changePageUrlOffset","CHANGE URL "+time);
+ window.location.hash = "#t=" + time;
+ window.location.href = window.location.href;
+}
+
+/* MEDIA FRAGMENT FUNCTION */
+
+__IriSP.jumpToTimeoffset = function (form) {
+ var time = form.time.value;
+ __IriSP.MyApiPlayer.changePageUrlOffset(time);
+}
+__IriSP.retrieveTimeFragment = function (url) {
+ var pageoffset = 0;
+ var offsettime = 0;
+
+ if (url.split("#")[1] != null) {
+ pageoffset = url.split("#")[1];
+ if (pageoffset.substring(2) != null) {
+ offsettime = pageoffset.substring(2);
}
-
- }
- function positionListener(obj) {
- currentPosition = obj.position;
- var tmp = document.getElementById("posit");
- if (tmp) { tmp.innerHTML = "position: " + currentPosition; }
- $jIRI("#slider-range-min").slider("value", obj.position);
- $jIRI("#amount").val(obj.position+" s");
- // afficher annotation
- MyLdt.checkTime(currentPosition);
}
- function volumeListener(obj) {
- currentVolume = obj.percentage;
- var tmp = document.getElementById("vol");
- if (tmp) { tmp.innerHTML = "volume: " + currentVolume; }
- }
- function createPlayer(width,height,url,duration,streamerPath,MySwfPath) {
-
- myUrlFragment = url.split(streamerPath);
- file = myUrlFragment[1];
- streamer = streamerPath;
-
- var flashvars = {
- streamer:streamer,
- file:file,
- //live:"true",
- autostart:"true",
- controlbar:"none"
- }
-
- var params = {
- allowfullscreen:"true",
- allowscriptaccess:"always",
- wmode:"transparent"
- }
-
- var attributes = {
- id:"Ldtplayer1",
- name:"Ldtplayer1"
- }
-
- swfobject.embedSWF(MySwfPath, "Ldt-PlaceHolder", width, height, "9.0.115", false, flashvars, params, attributes);
- }
+ return offsettime;
+}
+__IriSP.ignoreTimeFragment = function(url){
+ if (url.split("#")[1] != null) {
+ var pageurl= url.split("#")[0];
+ }
+ return pageurl;
+}
-
-
-
+/* CODE SPECIAL JW PLAYER creation + listener */
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- MEDIA FRAGMENT FUNCTION*/
+__IriSP.currentPosition = 0;
+__IriSP.currentVolume = 50;
+__IriSP.player = null;
+__IriSP.startPosition = null;
+
+__IriSP.createPlayer = function (width,height,url,duration,streamerPath,MySwfPath) {
- // when the hash on the window changes, also do an offset
- // jump to time offset action
- function jumpToTimeoffset(form) {
- var time = form.time.value;
- changePageUrlOffset(time);
- }
- // parse the time hash out of the given url
- function retrieveTimeFragment(url) {
- var pageoffset = 0;
- var offsettime = 0;
-
- if (url.split("#")[1] != null) {
- pageoffset = url.split("#")[1];
- if (pageoffset.substring(2) != null) {
- offsettime = pageoffset.substring(2);
- }
- }
- return offsettime;
- }
- function ignoreTimeFragment(url){
- if (url.split("#")[1] != null) {
- pageurl= url.split("#")[0];
- }
- return pageurl;
+ __IriSP.trace("__IriSP.createPlayer","start");
+
+ __IriSP.myUrlFragment = url.split(streamerPath);
+ var file = __IriSP.myUrlFragment[1];
+ var streamer = streamerPath;
+
+ var flashvars = {
+ streamer:streamer,
+ file:file,
+ live:"true",
+ autostart:"true",
+ controlbar:"none",
+ playerready:"__IriSP.playerReady"
+ }
+
+ var params = {
+ allowfullscreen:"true",
+ allowscriptaccess:"always",
+ wmode:"transparent"
}
+ var attributes = {
+ id:"Ldtplayer1",
+ name:"Ldtplayer1"
+ }
+
+ __IriSP.trace("__IriSP.createPlayer","SWFOBJECT src:"+__IriSP.config.player.src+" " +width+" "+height);
+ swfobject.embedSWF(__IriSP.config.player.src, "Ldt-PlaceHolder", width, height, "9.0.115", false, flashvars, params, attributes);
+
+ // need a methode to
+ // re execute if this swf call does'nt work
+}
+__IriSP.playerReady = function (thePlayer) {
+
+ //__IriSP.trace("__IriSP.playerReady","PLAYER READY !!!!!!!!!!!!");
+ __IriSP.player = window.document[thePlayer.id];
+ //__IriSP.trace("__IriSP.playerReady","API CALL "+__IriSP.player);
+ __IriSP.MyApiPlayer.ready(__IriSP.player);
+ //__IriSP.trace("__IriSP.playerReady","API CALL END ");
+
+ var url = document.location.href;
+ var time = __IriSP.retrieveTimeFragment(url);
+ //__IriSP.trace("__IriSP.playerReady"," "+url+" "+time );
+ __IriSP.startPosition = time;
+ //__IriSP.trace("__IriSP.playerReady"," LISTENER LAUCHER");
+ __IriSP.addListeners();
+ //__IriSP.trace("__IriSP.playerReady"," LISTENER END");
+
+}
+__IriSP.addListeners = function () {
+ if (__IriSP.player) {
+ __IriSP.trace("__IriSP.addListeners","ADD Listener ");
+ __IriSP.player.addModelListener("TIME", "__IriSP.positionListener");
+ __IriSP.player.addControllerListener("VOLUME", "__IriSP.volumeListener");
+ __IriSP.player.addModelListener('STATE', '__IriSP.stateMonitor');
+ } else {
+ __IriSP.setTimeout("addListeners()",100);
+ }
+
+ // et changer les boutons
+}
+__IriSP.stateMonitor = function (obj) {
+
+ if(obj.newstate == 'PAUSED')
+ {
+ __IriSP.trace("__IriSP.stateMonitor","PAUSE");
+ __IriSP.MyApiPlayer.changePageUrlOffset(__IriSP.currentPosition);
+
+ } else if (obj.newstate == 'PLAYING'){
+ // une fois la video prete a lire la déplacer au bon timecode
+ if(__IriSP.startPosition!=null){
+ __IriSP.MyApiPlayer.update(__IriSP.startPosition);
+ __IriSP.startPosition = null;
+ }
+ } else if (obj.newstate == 'BUFFERING'){
+ __IriSP.trace("__IriSP.stateMonitor","BUFFERING : ");
+ //changePageUrlOffset(currentPosition);
+ }
+
+}
+__IriSP.positionListener = function(obj) {
+ //__IriSP.trace("__IriSP.positionListener",obj.position);
+ __IriSP.currentPosition = obj.position;
+ var tmp = document.getElementById("posit");
+ if (tmp) { tmp.innerHTML = "position: " + __IriSP.currentPosition; }
+ __IriSP.jQuery("#slider-range-min").slider("value", obj.position);
+ __IriSP.jQuery("#amount").val(obj.position+" s");
+ // afficher annotation
+ __IriSP.MyLdt.checkTime(__IriSP.currentPosition);
+}
+__IriSP.volumeListener = function (obj) {
+ __IriSP.currentVolume = obj.percentage;
+ var tmp = document.getElementById("vol");
+ if (tmp) { tmp.innerHTML = "volume: " + __IriSP.currentVolume; }
+}
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- Class Ligne (annotationType) */
-/*
- "id":"dp_1",
- "dc:creator":"tcavalie",
- "dc:created":"2010-04-04T19:09:44",
- "dc:contributor":"perso",
- "dc:modified":"15/2/2008",
- "dc:title":"dqsdkljfh qklsdhf very very very long",
- "dc:description":"sdfg sdfg sdfg sdfg"
- */
-
- var LDTligne = null;
- function Ligne (){
- this.id = id;
- this.title = title;
- this.description = description;
- this.annotations = new Array();
- this.annotationOldRead = "";
- this.addAnnotation = addAnnotationligne;
- this.clickAnnotation= onClickLigneAnnotation;
- this.checkTime = checkTimeLigne;
- this.nextAnnotation = onClickNextAnnotation;
- }
- function Ligne (id,title,description,duration){
- this.id = id;
- this.title = title;
- this.description = description;
- //
- this.annotations = new Array();
- this.addAnnotation = addLigneAnnotation;
- this.checkTime = checkTimeLigne;
- this.nextAnnotation = onClickNextAnnotation;
- this.numAnnotation = numAnnotationTimeLine;
- this.duration = duration;
- LDTligne = this;
- trace("LIGNE ","créer "+LDTligne);
- }
- function addLigneAnnotation(id,begin,end,media,title,description,color,tags){
- var myAnnotation = new Annotation(id,begin,end,media,title,description,color,tags,this.duration);
- this.annotations.push(myAnnotation);
- trace("LIGNE ","add annotation ");
- }
- function onClickLigneAnnotation(id){
- //changePageUrlOffset(currentPosition);
- //player.sendEvent('SEEK', this.start);
- //trace("SEEK",this.start);
- }
- function searchLigneAnnotation(id){
- /*for (){
- }*/
- }
- function listAnnotations (){
-
- }
- function onClickNextAnnotation(){
- var annotationCibleNumber = this.numAnnotation(this.annotationOldRead)+1;
- var annotationCible = this.annotations[annotationCibleNumber];
-
- if(annotationCibleNumber<this.annotations.length-1){
- annotationCible.begin
- player.sendEvent('SEEK', annotationCible.begin/1000);
-trace("LIGNE ","| next = "+annotationCibleNumber+" - "+this.annotations.length+" | seek :"+annotationCible.begin/1000);
- }else{
- player.sendEvent('SEEK', this.annotations[0].begin/1000);
- }
-
-
- }
- function numAnnotationTimeLine(annotationCible){
- for (var i=0; i < this.annotations.length; ++i){
- if(annotationCible == this.annotations[i]){
- return i;
- }
- }
- }
- function checkTimeLigne(time){
- var annotationTempo = -1;
-
- for (var i=0; i < this.annotations.length; ++i){
- if (time>this.annotations[i].begin/1000 && time<this.annotations[i].end/1000){
- var annotationTempo = this.annotations[i];
- // si différentes de la précédente
- if(annotationTempo!=this.annotationOldRead){
- this.annotationOldRead = annotationTempo;
- //trace("Check : ","annotation ici : "+i+" title "+annotationTempo.title);
- //$jIRI('#Ldt-ShowAnnotation').slideUp();
- //http://api.jquery.com/delay/ -> 1.4
- //$jIRI("#Ldt-SaTitle").delay(100).text(annotationTempo.title);
- //$jIRI("#Ldt-SaDescription").delay(100).text(annotationTempo.description);
- //$jIRI('#Ldt-ShowAnnotation').delay(100).slideDown();
-
- $jIRI("#Ldt-SaTitle").text(annotationTempo.title);
- $jIRI("#Ldt-SaDescription").text(annotationTempo.description);
-
- $jIRI("#Ldt-SaDescription").text(annotationTempo.description);
- $jIRI("#Ldt-SaKeywordText").html(annotationTempo.htmlTags);
-
- $jIRI('#Ldt-ShowAnnotation').slideDown();
-
-
- startPourcent = timeToPourcent((annotationTempo.begin*1+(annotationTempo.end-annotationTempo.begin)/2),annotationTempo.duration);
-
- $jIRI("#Ldt-Show-Arrow").css('left',startPourcent+'%');
- //alert(moyennePosition);
- var tempolinkurl = ignoreTimeFragment(window.location.href)+"#t="+(this.annotations[i].begin/1000);
- }
- break;
- }
-
- }
- // si il y en a pas : retractation du volet
- if( annotationTempo == -1){
- if(annotationTempo!=this.annotationOldRead){
- trace("Check : ","pas d'annotation ici ");
- $jIRI('#Ldt-ShowAnnotation').slideUp();
- this.annotationOldRead = annotationTempo;
- }
- }
-
- }
-
-
-
-
+/* UTIL */
+// code from http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
+__IriSP.stripHtml = function(s){
+ return s.replace(/\\&/g, '&').replace(/\\</g, '<').replace(/\\>/g, '>').replace(/\\t/g, ' ').replace(/\\n/g, '<br />').replace(/'/g, ''').replace(/"/g, '"');
+}
+// conversion de couleur Decimal vers HexaDecimal || 000 si fff
+__IriSP.DEC_HEXA_COLOR = function (dec){
+ var hexa='0123456789ABCDEF',hex='';
+ var tmp;
+ while (dec>15){
+ tmp = dec-(Math.floor(dec/16))*16;
+ hex = hexa.charAt(tmp)+hex;
+ dec = Math.floor(dec/16);
+ }
+ hex = hexa.charAt(dec)+hex;
+ if (hex == "FFCC00"){ hex="";/* by default color of Ldt annotation */ }
+ return(hex);
+}
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- CLASSE Annotation */
-/*
+/* CLASS Ligne (annotationType) */
- "begin":"767",
- "end":"785",
- "id":"dp_1_sp_3",
- "media":"kia_closeup",
- "content": {
- "mimetype":"application/x-ldt-structured",
- "title":"mon titre",
- "description":"ma description en <b>gras</b> .",
- "color":"16763904",
- "audio":{"src":"","mimetype":"audio/mp3","href":""}
- },
- "meta":
- {
- "id-ref":"dp_1",
- "dc:creator":"tcavalie",
- "dc:created":"2010-04-04T19:09:44",
- "dc:contributor":"perso",
- "dc:modified":"9/10/2007"
- }
- */
+__IriSP.LDTligne = null;
+__IriSP.Ligne = function (id,title,description,duration){
+ this.id = id;
+ this.title = title;
+ this.description = description;
+ //
+ this.annotations = new Array();
+ this.duration = duration;
+ __IriSP.LDTligne = this;
+ __IriSP.trace("__IriSP.Ligne","CREATE "+__IriSP.LDTligne);
+}
+__IriSP.Ligne.prototype.addAnnotation = function (id,begin,end,media,title,description,color,tags){
+ var myAnnotation = new __IriSP.Annotation(id,begin,end,media,title,description,color,tags,this.duration);
+ this.annotations.push(myAnnotation);
+ //__IriSP.trace("__IriSP.Ligne.prototype.addAnnotation ","add annotation "+title);
+}
+__IriSP.Ligne.prototype.onClickLigneAnnotation = function(id){
+ //changePageUrlOffset(currentPosition);
+ //player.sendEvent('SEEK', this.start);
+ //__IriSP.trace("SEEK",this.start);
+}
+__IriSP.Ligne.prototype.searchLigneAnnotation = function(id){
+ /*for (){
+ }*/
+}
+__IriSP.Ligne.prototype.listAnnotations = function(){
+
+}
+__IriSP.Ligne.prototype.nextAnnotation = function (){
+ var annotationCibleNumber = this.numAnnotation(this.annotationOldRead)+1;
+ var annotationCible = this.annotations[annotationCibleNumber];
+
+ if(annotationCibleNumber<this.annotations.length-1){
+ annotationCible.begin
+ __IriSP.player .sendEvent('SEEK', annotationCible.begin/1000);
+ __IriSP.trace("LIGNE ","| next = "+annotationCibleNumber+" - "+this.annotations.length+" | seek :"+annotationCible.begin/1000);
+ }else{
+ __IriSP.player .sendEvent('SEEK', this.annotations[0].begin/1000);
+ }
+
- function Annotation (){
- this.id = null;
- this.begin = null;
- this.end = null;
- this.media = null;
- this.description = null;
- this.title = null;
- this.color = null;
- this.onRollOver = onRollOverAnnotation;
- this.onClick = onClickAnnotation;
- this.toolTip = rollOverAnnotation;
- this.draw = drawAnnotation;
- this.drawTags = drawTagsAnnotation;
- this.tags = null;
- trace("annotation ","réussi")
- }
- function Annotation (id,begin,end,media,title,description,color,tags,duration){
- this.id = id;
- this.begin = begin;
- this.end = end;
- this.media = media;
- this.description = description;
- this.title = title;
- this.color = color;
- this.tags = tags;
- this.htmlTags = "";
- this.duration = duration;
- //
- this.onRollOver = onRollOverAnnotation;
- // this.onClick = onClickAnnotation;
- this.toolTip = tootTipAnnotation;
- this.draw = drawAnnotation;
- this.drawTags = drawTagsAnnotation;
- // this.show = showAnnotationNotice;
- // draw it
- this.draw();
- this.drawTags();
- //
- trace("Annotation created : ",id);
- }
- function drawAnnotation (){
- //alert (this.duration);
- startPourcent = timeToPourcent(this.begin,this.duration); // temps du média
- endPourcent = timeToPourcent(this.end,this.duration)-startPourcent;
- $AnnotationTemplate = "<div title='"+stripHtml(this.title)+"' id='"+this.id+"' class='ui-slider-range ui-slider-range-min ui-widget-header iri-chapter' width='100%' style=\"left:"+startPourcent+"%; width:"+endPourcent+"%; padding-top:15px; border-left:solid 1px #aaaaaa; border-right:solid 1px #aaaaaa; background:#"+DEC_HEXA_COLOR(this.color)+";\" onClick=\"LdtApiPlayer.seek('"+Math.round(this.begin/1000)+"');$jIRI('#Ldt-ShowAnnotation').slideDown();\" ></div> ";
- //alert(this.color+" : "+DEC_HEXA_COLOR(this.color));
+}
+__IriSP.Ligne.prototype.numAnnotation = function (annotationCible){
+ for (var i=0; i < this.annotations.length; ++i){
+ if(annotationCible == this.annotations[i]){
+ return i;
+ }
+ }
+}
+__IriSP.Ligne.prototype.checkTime = function(time){
+ var annotationTempo = -1;
+ //__IriSP.trace("__IriSP.Ligne.prototype.checkTimeLigne",time);
+
+ for (var i=0; i < this.annotations.length; ++i){
+ var annotationTempo = this.annotations[i];
+ if (time>annotationTempo.begin/1000 && time<annotationTempo.end/1000){
+
+ // different form the previous
+ if(annotationTempo!=this.annotationOldRead){
+ this.annotationOldRead = annotationTempo;
+ //__IriSP.trace("Check : ","annotation ici : "+i+" title "+annotationTempo.title);
+ //__IriSP.jQuery('#Ldt-ShowAnnotation').slideUp();
+ //http://api.jquery.com/delay/ -> 1.4
+ //__IriSP.jQuery("#Ldt-SaTitle").delay(100).text(annotationTempo.title);
+ //__IriSP.jQuery("#Ldt-SaDescription").delay(100).text(annotationTempo.description);
+ //__IriSP.jQuery('#Ldt-ShowAnnotation').delay(100).slideDown();
+ //__IriSP.trace("__IriSP.Ligne.prototype.checkTimeLigne",annotationTempo.title+" "+annotationTempo.description );
+ __IriSP.jQuery("#Ldt-SaTitle").text(annotationTempo.title);
+ __IriSP.jQuery("#Ldt-SaDescription").text(annotationTempo.description);
+
+ __IriSP.jQuery("#Ldt-SaDescription").text(annotationTempo.description);
+ __IriSP.jQuery("#Ldt-SaKeywordText").html("Mots clefs : "+annotationTempo.htmlTags);
+
+ //__IriSP.jQuery('#Ldt-ShowAnnotation').slideDown();
+ var startPourcent = annotationTempo.timeToPourcent((annotationTempo.begin*1+(annotationTempo.end*1-annotationTempo.begin*1)/2),annotationTempo.duration*1);
+ __IriSP.jQuery("#Ldt-Show-Arrow").animate({left:startPourcent+'%'},1000);
+ //alert(startPourcent);
+ var tempolinkurl = __IriSP.ignoreTimeFragment(window.location.href)+"#t="+(this.annotations[i].begin/1000);
+ }
+ break;
+ }
- $toolTipTemplate = "<div class='Ldt-tooltip'>"
- +"<div class='title'>"+stripHtml(this.title)+"</div>"
- +"<div class='time'>"+this.begin+" : "+this.end+"</div>"
- +"<div class='description'>"+stripHtml(this.description)+"</div>"
- +"</div>";
-
-
- $jIRI("<div>"+$AnnotationTemplate+"</div>").appendTo("#Ldt-Annotations");
- $jIRI("#"+this.id).tooltip({ effect: 'slide'});
-
-
- $jIRI("#"+this.id).fadeTo(0,0.3);
- $jIRI("#"+this.id).mouseover(function() {
- $jIRI("#"+this.id).animate({opacity: 0.6}, 5)
- }).mouseout(function(){
- $jIRI("#"+this.id).animate({opacity: 0.3}, 5)
- });
- //trace(" ### ","ADD ANOTATION : "+this.begin+" "+this.end+" "+stripHtml(this.title)+" | "+startPourcent+" | "+endPourcent+" | duration = "+this.duration);
-
- }
-
- function drawTagsAnnotation(){
- KeywordPattern = '<a href=\"\"> '+' </a>';
-
- //trace(" !? Tags : ",this.tags);
-
- if (this.tags!=undefined){
- for (var i = 0; i < this.tags.length; ++i){
-
- //this.htmlTags += '<span onclick=\"ShowTag('+this.tags[i]['id-ref']+');\" > '+MyTags.getTitle(this.tags[i]['id-ref'])+' </span>'+" , ";
- this.htmlTags += '<span> '+MyTags.getTitle(this.tags[i]['id-ref'])+' </span>'+" , ";
-
- }
+ }
+ // si il y en a pas : retractation du volet
+ if( annotationTempo == -1){
+ if(annotationTempo!=this.annotationOldRead){
+ __IriSP.trace("Check : ","pas d'annotation ici ");
+ __IriSP.jQuery('#Ldt-ShowAnnotation').slideUp();
+ this.annotationOldRead = annotationTempo;
}
}
- function tootTipAnnotation() {
- // 1 chercher le div correspondant
- // 2 y mettre les information
- return this.color + ' ' + this.type + ' apple';
- }
- function onRollOverAnnotation(){
- this.tootTip();
- }
- function timeToPourcent(time,timetotal){
- return (parseInt(Math.round(time/timetotal*100)));
- }
+}
-
+/* CLASS Annotation */
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- CLASSE Tags */
-function Tags (object){
+__IriSP.Annotation = function (){
+ var id = null;
+ var begin = null;
+ var end = null;
+ var media = null;
+ var description = null;
+ var title = null;
+ var color = null;
+ var tags = null;
+ __IriSP.trace("annotation ","réussi")
+}
+__IriSP.Annotation = function(id,begin,end,media,title,description,color,tags,duration){
+ this.id = id;
+ this.begin = begin;
+ this.end = end;
+ this.media = media;
+ this.description = description;
+ this.title = title;
+ this.color = color;
+ this.tags = tags;
+ this.htmlTags = "";
+ this.duration = duration;
+ // draw it
+ this.draw();
+ this.drawTags();
+ //
+ __IriSP.trace("Annotation created : ",id);
+}
+__IriSP.Annotation.prototype.draw = function(){
+ //alert (this.duration);
+ var startPourcent = this.timeToPourcent(this.begin,this.duration); // temps du media
+ var endPourcent = this.timeToPourcent(this.end,this.duration)-startPourcent;
+ var titleForDiv = this.title.substr(0,55);
+
+ __IriSP.jQueryAnnotationTemplate = "<div title='"+__IriSP.stripHtml(titleForDiv)+"' id='"+this.id+"' class='ui-slider-range ui-slider-range-min ui-widget-header iri-chapter' width='100%' style=\"left:"+startPourcent+"%; width:"+endPourcent+"%; padding-top:15px; border-left:solid 1px #aaaaaa; border-right:solid 1px #aaaaaa; background:#"+__IriSP.DEC_HEXA_COLOR(this.color)+";\" onClick=\"__IriSP.MyApiPlayer.seek('"+Math.round(this.begin/1000)+"');__IriSP.jQuery('#Ldt-ShowAnnotation').slideDown();\" ></div> ";
+ //alert(this.color+" : "+DEC_HEXA_COLOR(this.color));
+
+ __IriSP.jQuerytoolTipTemplate = "<div class='Ldt-tooltip'>"
+ +"<div class='title'>"+__IriSP.stripHtml(this.title)+"</div>"
+ +"<div class='time'>"+this.begin+" : "+this.end+"</div>"
+ +"<div class='description'>"+__IriSP.stripHtml(this.description)+"</div>"
+ +"</div>";
+
+
+ __IriSP.jQuery("<div>"+__IriSP.jQueryAnnotationTemplate+"</div>").appendTo("#Ldt-Annotations");
+ // TOOLTIP BUG !
+
+ __IriSP.jQuery("#"+this.id).tooltip({ effect: 'slide'});
+
+
+ __IriSP.jQuery("#"+this.id).fadeTo(0,0.3);
+ __IriSP.jQuery("#"+this.id).mouseover(function() {
+ __IriSP.jQuery("#"+this.id).animate({opacity: 0.6}, 5)
+ }).mouseout(function(){
+ __IriSP.jQuery("#"+this.id).animate({opacity: 0.3}, 5)
+ });
+ __IriSP.trace("__IriSP.Annotation.prototype.draw","ADD ANOTATION : "+this.begin+" "+this.end+" "+__IriSP.stripHtml(this.title)+" | "+startPourcent+" | "+endPourcent+" | duration = "+this.duration);
+
+}
+__IriSP.Annotation.prototype.drawTags = function(){
+ var KeywordPattern = '<a href=\"\"> '+' </a>';
+
+ //__IriSP.trace(" !? Tags : ",this.tags);
+
+ if (this.tags!=undefined){
+ for (var i = 0; i < this.tags.length; ++i){
+
+ //this.htmlTags += '<span onclick=\"ShowTag('+this.tags[i]['id-ref']+');\" > '+MyTags.getTitle(this.tags[i]['id-ref'])+' </span>'+" , ";
+ this.htmlTags += '<span> '+__IriSP.MyTags.getTitle(this.tags[i]['id-ref'])+' </span>'+" , ";
+
+ }
+ }
+}
+__IriSP.Annotation.prototype.tootTipAnnotation = function() {
+ // 1 chercher le div correspondant
+ // 2 y mettre les information
+ return this.color + ' ' + this.type + ' apple';
+}
+__IriSP.Annotation.prototype.onRollOverAnnotation = function (){
+ this.tootTip();
+}
+__IriSP.Annotation.prototype.timeToPourcent = function(time,timetotal){
+ return (parseInt(Math.round(time/timetotal*100)));
+}
+
+
+/* CLASS Tags */
+
+__IriSP.Tags = function(object){
this.myTags = object;
this.htmlTags = null;
this.weigthMax = 0;
//this.mySegments = new array();
}
-Tags.prototype.addAnnotation = function (annotation){
+__IriSP.Tags.prototype.addAnnotation = function (annotation){
for (var i = 0; i < this.myTags.length; ++i){
this.myTags[i].mySegments = new Array();
if (annotation.tags!=null){
@@ -857,7 +921,7 @@
this.myTags[i].mySegments.push([annotation.begin,annotation.end,annotation.id]);
var weigthTempo = this.myTags[i].mySegments.length
var tempo = this.myTags[i].mySegments[weigthTempo-1];
- trace (" ADD Tags : "," "+this.myTags[i]['meta']['dc:title']+" "+this.myTags[i]['id']+" : "+tempo[0]+" - "+tempo[1]);
+ //__IriSP.trace ("__IriSP.Tags.prototype.addAnnotation "," "+this.myTags[i]['meta']['dc:title']+" "+this.myTags[i]['id']+" : "+tempo[0]+" - "+tempo[1]);
if (this.weigthMax < weigthTempo ){
this.weigthMax = weigthTempo;
@@ -867,7 +931,7 @@
}
}
}
-Tags.prototype.getTitle = function (id){
+__IriSP.Tags.prototype.getTitle = function (id){
for (var i = 0; i < this.myTags.length; ++i){
if(this.myTags[i]['id']==id){
return(this.myTags[i]['meta']['dc:title']);
@@ -875,11 +939,11 @@
}
}
-Tags.prototype.draw = function (){
+__IriSP.Tags.prototype.draw = function (){
- trace("########### TAG DRAW "," WELL START " );
+ __IriSP.trace("__IriSP.Tags.prototype.draw"," !!! WELL START " );
for (var i = 0; i < this.myTags.length; ++i){
- //trace(" ADD Tags : ",this.myTags[i]['id']);
+ __IriSP.trace("__IriSP.Tags.prototype.draw"," ADD Tags : "+this.myTags[i]['id']);
if(this.myTags[i]['id']!=null){
this.htmlTags += '<span onclick=\"MyTags.show( \''+this.myTags[i]['id']
+'\');\" style=\"font-size:' +((this.myTags[i].mySegments.length/this.weigthMax*10)+8)
@@ -888,11 +952,11 @@
}
}
- $jIRI('#Ldt-Tags').html(this.htmlTags);
- trace("######### TAG DRAWing : "," END WMAX= "+this.weigthMax );
+ __IriSP.jQuery('#Ldt-Tags').html(this.htmlTags);
+ __IriSP.trace("__IriSP.Tags.prototype.draw"," !!!! END WMAX= "+this.weigthMax );
}
-Tags.prototype.show = function (id){
+__IriSP.Tags.prototype.show = function (id){
var timeStartOffsetA = 100000000000000000000;
var timeStartOffsetB = 100000000000000000000;
@@ -900,6 +964,9 @@
var timeEndOffsetB = 0;
var timeStartID;
var timeEndID;
+ var WidthPourCent;
+ var leftPourCent;
+ var timeStartOffset;
// case 1 : seul segment
// case 2 : 2 ou X segments
@@ -907,7 +974,7 @@
for (var i = 0; i < this.myTags.length; ++i){
if (this.myTags[i]['id']==id){
- trace("######### TAG DRAWing : "," END" );
+ __IriSP.trace("######### TAG DRAWing : "," END" );
for (var j = 0; j < this.myTags[i].mySegments.length; ++j){
if(timeStartOffset> this.myTags[i].mySegments[j][0]){
@@ -929,28 +996,32 @@
//
// -------------------------------------------------
- leftPourCent = timeToPourcent((timeStartOffsetA*1+(timeStartOffsetB-timeStartOffsetA)/2),MyLdt.duration);
- WidthPourCent = timeToPourcent((timeEndOffsetA*1+(timeEndOffsetB-timeEndOffsetA)/2),MyLdt.duration)-startPourcent;
- $jIRI("#Ldt-Show-Tags").css('left',leftPourCent+'%');
- $jIRI("#Ldt-Show-Tags").css('width',WidthPourCent+'%');
+ leftPourCent = __IriSP.timeToPourcent((timeStartOffsetA*1+(timeStartOffsetB-timeStartOffsetA)/2),__IriSP.MyLdt.duration);
+ WidthPourCent = __IriSP.timeToPourcent((timeEndOffsetA*1+(timeEndOffsetB-timeEndOffsetA)/2),__IriSP.MyLdt.duration)-leftPourCent;
+ //WidthPourCent = timeToPourcent((timeEndOffsetA*1+(timeEndOffsetB-timeEndOffsetA)/2),MyLdt.duration)-startPourcent;
+ __IriSP.jQuery("#Ldt-Show-Tags").css('left',leftPourCent+'%');
+ __IriSP.jQuery("#Ldt-Show-Tags").css('width',WidthPourCent+'%');
// like arrow script
}
+
+/* CLASS TRACE */
-
-/* ----------------------------------------------------------------
- ----------------------------------------------------------------
- Class tracess */
+__IriSP.traceNum=0;
+__IriSP.trace = function(msg,value){
+
+ if(__IriSP.config.gui.debug===true){
+ __IriSP.traceNum += 1;
+ __IriSP.jQuery("<div>"+__IriSP.traceNum+" - "+msg+" : "+value+"</div>").appendTo("#Ldt-output");
+ }
+
+}
- function Tracer (){
-
- }
- function addTrace(){
-
- }
+
+
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/player/src/js/LdtPlayer.min.js Tue Sep 14 13:15:28 2010 +0200
@@ -0,0 +1,65 @@
+/*
+ *
+ * Copyright 2010 Institut de recherche et d’innovation
+ * contributor(s) : Samuel Huron
+ *
+ * contact@iri.centrepompidou.fr
+ * http://www.iri.centrepompidou.fr
+ *
+ * This software is a computer program whose purpose is to show and add annotations on a video .
+ * This software is governed by the CeCILL-C license under French law and
+ * abiding by the rules of distribution of free software. You can use,
+ * modify and/ or redistribute the software under the terms of the CeCILL-C
+ * license as circulated by CEA, CNRS and INRIA at the following URL
+ * "http://www.cecill.info".
+ *
+ * The fact that you are presently reading this means that you have had
+ * knowledge of the CeCILL-C license and that you accept its terms.
+*/
+
+if(window.__IriSP===undefined)var __IriSP={};__IriSP.config={metadata:{format:"cinelab",src:"http://exp.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be",load:"jsonp"},gui:{width:650,height:0,mode:"radio",container:"LdtPlayer",debug:false,css:"../src/css/LdtPlayer.css"},player:{type:"jwplayer",src:"../res/swf/player.swf"},module:null};
+__IriSP.lib={jQuery:"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js",jQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js",jQueryToolTip:"http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js",swfObject:"http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"};__IriSP.LdtShareTool="\n<a onclick=\"__IriSP.MyApiPlayer.share('delicious');\" title='partager avec delicious'><span class='share shareDelicious'> </span></a>\n<a onclick=\"__IriSP.MyApiPlayer.share('facebook');\" title='partager avec facebook'> <span class='share shareFacebook'> </span></a>\n<a onclick=\"__IriSP.MyApiPlayer.share('twitter');\" title='partager avec twitter'> <span class='share shareTwitter'> </span></a>\n<a onclick=\"__IriSP.MyApiPlayer.share('myspace');\" title='partager avec Myspace'> <span class='share shareMySpace'> </span></a>\n<a onclick=\"__IriSP.MyApiPlayer.share('jamespot');\" title='partager avec JamesPot'> <span class='share shareJamesPot'> </span></a>";
+__IriSP.MyLdt=null;__IriSP.MyTags=null;__IriSP.MyApiPlayer=null;__IriSP.player=null;__IriSP.Durration=null;__IriSP.playerLdtWidth=null;__IriSP.playerLdtHeight=null;
+__IriSP.init=function(a){function b(){var f=document.createElement("script");f.setAttribute("type","text/javascript");f.setAttribute("src",__IriSP.lib.jQueryToolTip);f.onload=c;f.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded")c("jquery.tools.min.js loded")};var i=document.createElement("script");i.setAttribute("type","text/javascript");i.setAttribute("src",__IriSP.lib.swfObject);i.onload=c;i.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState==
+"loaded")c("swfobject.js loded")};var j=document.createElement("script");j.setAttribute("type","text/javascript");j.setAttribute("src","http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js");j.onload=c;j.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded")c("jquery-ui.min.js loded")};(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(f);(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(j);
+(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(i)}function c(){g+=1;g===3&&d()}function d(){__IriSP.jQuery=window.jQuery.noConflict(true);__IriSP.jQuery(document).ready(function(f){var i=__IriSP.jQuery("<link>",{rel:"stylesheet",type:"text/css",href:"../res/css/jq-css/themes/base/jquery.ui.all.css","class":"dynamic_css"}),j=__IriSP.jQuery("<link>",{rel:"stylesheet",type:"text/css",href:__IriSP.config.gui.css,"class":"dynamic_css"});i.appendTo("head");j.appendTo("head");
+f.browser.msie&&f(".dynamic_css").clone().appendTo("head");__IriSP.createMyHtml();__IriSP.jQuery.ajax({dataType:"jsonp",url:h,success:function(e){__IriSP.trace("ajax","success");if(e==="")alert("ERREUR DE CHARGEMENT JSON");else{new __IriSP.Media(e.medias[0].id,e.medias[0].href,e.medias[0].meta["dc:duration"],e.medias[0]["dc:title"],e.medias[0]["dc:description"]);__IriSP.trace("__IriSP.MyApiPlayer",__IriSP.config.gui.width+" "+__IriSP.config.gui.height+" "+e.medias[0].href+" "+e.medias[0].meta["dc:duration"]+
+" "+e.medias[0].meta.item.value);__IriSP.MyApiPlayer=new __IriSP.APIplayer(__IriSP.config.gui.width,__IriSP.config.gui.height,e.medias[0].href,e.medias[0].meta["dc:duration"],e.medias[0].meta.item.value);__IriSP.trace("__IriSP.init.main","__IriSP.Ligne");__IriSP.MyLdt=new __IriSP.Ligne(e["annotation-types"][0].id,e["annotation-types"][0]["dc:title"],e["annotation-types"][0]["dc:description"],e.medias[0].meta["dc:duration"]);__IriSP.trace("__IriSP.init.main","__IriSP.Tags");__IriSP.MyTags=new __IriSP.Tags(e.tags);
+__IriSP.jQuery.each(e.annotations,function(l,k){k.meta["id-ref"]==__IriSP.MyLdt.id&&__IriSP.MyLdt.addAnnotation(k.id,k.begin,k.end,k.media,k.content.title,k.content.description,k.content.color,k.tags)});__IriSP.jQuery.each(e.lists,function(){__IriSP.trace("lists","")});__IriSP.jQuery.each(e.views,function(){__IriSP.trace("views","")})}},error:function(e){alert("ERROR : "+e)}})})}__IriSP.config=a;var h=__IriSP.config.metadata.src;__IriSP.jQuery=null;if(window.jQuery===undefined||window.jQuery.fn.jquery!==
+"1.4.2"){a=document.createElement("script");a.setAttribute("type","text/javascript");a.setAttribute("src",__IriSP.lib.jQuery);a.onload=b;a.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded")b()};(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(a)}else{__IriSP.jQuery=window.jQuery;b()}var g=0};
+__IriSP.createMyHtml=function(){var a=__IriSP.config.gui.width;__IriSP.jQuery("<div id='Ldt-Root'>\n\t<div id='Ldt-PlaceHolder'>\n\t\t<a href='http://www.adobe.com/go/getflashplayer'>Get flash</a> to see this player\t\n\t</div>\n\t<div id='Ldt-controler' class='demo'>\n\t\t<div class='Ldt-Control1' >\n\t\t\t<button id='ldt-CtrlPlay' onclick='__IriSP.MyApiPlayer.play()'>Lecture / Pause </button>\n\t\t\t<button id='ldt-CtrlNext' onclick='__IriSP.MyLdt.nextAnnotation()'>Suivant</button>\n\t\t</div>\n\t\t<div id='Ldt-Annotations' class='ui-slider'>\n\t\t\t<div id='slider-range-min'></div>\n\t</div>\n\t\t<div class='Ldt-Control2'>\n\t\t\t<button id='ldt-CtrlLink'> Partager </button>\n\t\t\t<button id='ldt-CtrlSound' onclick='__IriSP.MyApiPlayer.mute()'>Sound</button>\n\t\t</div>\n <div class='cleaner'> </div> \n <div id='Ldt-Show-Arrow-container'>\n \t<div id='Ldt-Show-Arrow'> </div>\n </div>\n</div>\n<div>\n <div id='ldt-Show'> </div>\n\t<div id='Ldt-ShowAnnotation-audio' class='demo' >\n\t\t<div id='Ldt-SaTitle'></div>\n\t\t<div id='Ldt-SaDescription'></div>\n \t\t<div class='cleaner'><!-- --\></div>\n </div>\n <div id='Ldt-SaKeyword'>\n <div id='Ldt-SaKeywordText'> </div>\n <div class='cleaner'></div>\n <div id='Ldt-SaShareTools'>\n \n "+__IriSP.LdtShareTool+
+"\n \n </div>\n <div class='cleaner'></div></div> </div><div id='Ldt-output'></div>").appendTo("#"+__IriSP.config.gui.container);__IriSP.trace("__IriSP.createHtml","end");__IriSP.jQuery("#Ldt-Annotations").width(a-150);__IriSP.jQuery("#Ldt-Show-Arrow-container").width(a-150);__IriSP.jQuery("#Ldt-ShowAnnotation-audio").width(a-10);__IriSP.jQuery("#Ldt-ShowAnnotation-video").width(a-10);__IriSP.jQuery("#Ldt-SaKeyword").width(a-10);__IriSP.jQuery("#Ldt-controler").width(a-10);__IriSP.jQuery("#Ldt-Control").attr("z-index",
+"100");__IriSP.jQuery("#Ldt-controler").hide();__IriSP.jQuery("<div id='Ldt-load-container'><div id='Ldt-loader'> </div> Chargement... </div>").appendTo("#Ldt-ShowAnnotation-audio");__IriSP.config.gui.mode=="radio"&&__IriSP.jQuery("#Ldt-load-container").attr("width",__IriSP.config.gui.width);__IriSP.config.gui.debug===true?__IriSP.jQuery("#Ldt-output").show():__IriSP.jQuery("#Ldt-output").hide()};
+__IriSP.Media=function(a,b,c,d,h){this.id=a;this.url=b;this.title=d;this.description=h;this.duration=c;this.lignes=[];__IriSP.trace("__IriSP.Media","Media ID : "+a);__IriSP.trace("__IriSP.Media","Media URL : "+b);__IriSP.trace("__IriSP.Media","Media title : "+d)};__IriSP.Media.prototype.createPlayerMedia=function(a,b,c,d){__IriSP.MyApiPlayer=new __IriSP.APIplayer(a,b,this.url,this.duration,c,d)};__IriSP.Media.prototype.getMediaDuration=function(){return this.duration};
+__IriSP.Media.prototype.getMediaTitle=function(){return this.title};
+__IriSP.createInterface=function(a,b,c){__IriSP.jQuery("#Ldt-controler").show();__IriSP.trace("__IriSP.createInterface",a+","+b+","+c+",");__IriSP.jQuery("#Ldt-ShowAnnotation").click(function(){});__IriSP.jQuery("#Ldt-PlaceHolder").attr("top");__IriSP.jQuery("#Ldt-PlaceHolder").attr("left");__IriSP.jQuery("#slider-range-min").slider({value:0,min:1,max:c/1E3,step:0.1,slide:function(d,h){__IriSP.MyApiPlayer.seek(h.value)}});__IriSP.trace("__IriSP.createInterface","ICI");__IriSP.jQuery("#amount").val(__IriSP.jQuery("#slider-range-min").slider("value")+
+" s");__IriSP.jQuery(".Ldt-Control1 button:first").button({icons:{primary:"ui-icon-play"},text:false}).next().button({icons:{primary:"ui-icon-seek-next"},text:false});__IriSP.jQuery(".Ldt-Control2 button:first").button({icons:{primary:"ui-icon-transferthick-e-w"},text:false}).next().button({icons:{primary:"ui-icon-volume-on"},text:false});__IriSP.trace("__IriSP.createInterface","ICI2");__IriSP.jQuery("#ldt-CtrlPlay").attr("style","background-color:#CD21C24;");__IriSP.jQuery("#Ldt-load-container").hide();
+__IriSP.config.gui.mode=="radio"&__IriSP.jQuery.browser.msie!=true&&__IriSP.jQuery("#Ldtplayer1").attr("height","0");__IriSP.trace("__IriSP.createInterface","3");__IriSP.trace("__IriSP.createInterface","END")};
+__IriSP.APIplayer=function(a,b,c,d,h,g){this.hashchangeUpdate=this.player=null;this.width=a;this.height=b;this.url=c;this.duration=d;this.streamerPath=h;this.MySwfPath=g;__IriSP.MyApiPlayer=this;__IriSP.createPlayer(a,b,this.url,this.duration,this.streamerPath,this.MySwfPath);__IriSP.trace("__IriSP.APIplayer","__IriSP.createPlayer")};
+__IriSP.APIplayer.prototype.ready=function(){__IriSP.createInterface(this.width,this.height,this.duration);__IriSP.trace("__IriSP.APIplayer.prototype.APIpReady","END __IriSP.createInterface");if(window.addEventListener)window.addEventListener("hashchange",function(){var a=__IriSP.retrieveTimeFragment(window.location.href);__IriSP.trace("__IriSP.APIplayer.prototype.ready",a);if(__IriSP.MyApiPlayer.hashchangeUpdate==null)__IriSP.MyApiPlayer.seek(a);else __IriSP.MyApiPlayer.hashchangeUpdate=null},false);
+else window.attachEvent&&window.attachEvent("onhashchange",function(){__IriSP.trace("hashchange",a);var a=__IriSP.retrieveTimeFragment(window.location.href);if(__IriSP.MyApiPlayer.hashchangeUpdate==null)__IriSP.MyApiPlayer.seek(a);else __IriSP.MyApiPlayer.hashchangeUpdate=null},false)};__IriSP.APIplayer.prototype.pause=function(){this.hashchangeUpdate=true;__IriSP.player.sendEvent("PAUSE")};__IriSP.APIplayer.prototype.play=function(){this.hashchangeUpdate=true;__IriSP.player.sendEvent("PLAY")};
+__IriSP.APIplayer.prototype.mute=function(){__IriSP.player.sendEvent("MUTE")};
+__IriSP.APIplayer.prototype.share=function(a){var b=window.location.href,c;if(a=="facebook")c="http://www.facebook.com/share.php?u=";else if(a=="twitter")c="http://twitter.com/home?status=Je regarde :";else if(a=="myspace")c="http://www.myspace.com/Modules/PostTo/Pages/?u=";else if(a=="delicious")c="http://delicious.com/save?url=";else if(a=="JameSpot")c="http://www.jamespot.com/?action=spotit&u=";window.location.href=c+encodeURIComponent(b)};
+__IriSP.APIplayer.prototype.seek=function(a){__IriSP.player.sendEvent("SEEK",a);this.changePageUrlOffset(a)};__IriSP.APIplayer.prototype.update=function(a){this.hashchangeUpdate=true;__IriSP.player.sendEvent("SEEK",a)};__IriSP.APIplayer.prototype.changePageUrlOffset=function(a){__IriSP.trace("__IriSP.APIplayer.prototype.changePageUrlOffset","CHANGE URL "+a);window.location.hash="#t="+a;window.location.href=window.location.href};__IriSP.jumpToTimeoffset=function(a){__IriSP.MyApiPlayer.changePageUrlOffset(a.time.value)};
+__IriSP.retrieveTimeFragment=function(a){var b=0,c=0;if(a.split("#")[1]!=null){b=a.split("#")[1];if(b.substring(2)!=null)c=b.substring(2)}return c};__IriSP.ignoreTimeFragment=function(a){if(a.split("#")[1]!=null)var b=a.split("#")[0];return b};__IriSP.currentPosition=0;__IriSP.currentVolume=50;__IriSP.player=null;__IriSP.startPosition=null;
+__IriSP.createPlayer=function(a,b,c,d,h){__IriSP.trace("__IriSP.createPlayer","start");__IriSP.myUrlFragment=c.split(h);c={streamer:h,file:__IriSP.myUrlFragment[1],live:"true",autostart:"true",controlbar:"none",playerready:"__IriSP.playerReady"};__IriSP.trace("__IriSP.createPlayer","SWFOBJECT src:"+__IriSP.config.player.src+" "+a+" "+b);swfobject.embedSWF(__IriSP.config.player.src,"Ldt-PlaceHolder",a,b,"9.0.115",false,c,{allowfullscreen:"true",allowscriptaccess:"always",wmode:"transparent"},{id:"Ldtplayer1",
+name:"Ldtplayer1"})};__IriSP.playerReady=function(a){__IriSP.player=window.document[a.id];__IriSP.MyApiPlayer.ready(__IriSP.player);a=__IriSP.retrieveTimeFragment(document.location.href);__IriSP.startPosition=a;__IriSP.addListeners()};
+__IriSP.addListeners=function(){if(__IriSP.player){__IriSP.trace("__IriSP.addListeners","ADD Listener ");__IriSP.player.addModelListener("TIME","__IriSP.positionListener");__IriSP.player.addControllerListener("VOLUME","__IriSP.volumeListener");__IriSP.player.addModelListener("STATE","__IriSP.stateMonitor")}else __IriSP.setTimeout("addListeners()",100)};
+__IriSP.stateMonitor=function(a){if(a.newstate=="PAUSED"){__IriSP.trace("__IriSP.stateMonitor","PAUSE");__IriSP.MyApiPlayer.changePageUrlOffset(__IriSP.currentPosition)}else if(a.newstate=="PLAYING"){if(__IriSP.startPosition!=null){__IriSP.MyApiPlayer.update(__IriSP.startPosition);__IriSP.startPosition=null}}else a.newstate=="BUFFERING"&&__IriSP.trace("__IriSP.stateMonitor","BUFFERING : ")};
+__IriSP.positionListener=function(a){__IriSP.currentPosition=a.position;var b=document.getElementById("posit");if(b)b.innerHTML="position: "+__IriSP.currentPosition;__IriSP.jQuery("#slider-range-min").slider("value",a.position);__IriSP.jQuery("#amount").val(a.position+" s");__IriSP.MyLdt.checkTime(__IriSP.currentPosition)};__IriSP.volumeListener=function(a){__IriSP.currentVolume=a.percentage;if(a=document.getElementById("vol"))a.innerHTML="volume: "+__IriSP.currentVolume};
+__IriSP.stripHtml=function(a){return a.replace(/\\&/g,"&").replace(/\\</g,"<").replace(/\\>/g,">").replace(/\\t/g," ").replace(/\\n/g,"<br />").replace(/'/g,"'").replace(/"/g,""")};__IriSP.DEC_HEXA_COLOR=function(a){for(var b="",c;a>15;){c=a-Math.floor(a/16)*16;b="0123456789ABCDEF".charAt(c)+b;a=Math.floor(a/16)}b="0123456789ABCDEF".charAt(a)+b;if(b=="FFCC00")b="";return b};__IriSP.LDTligne=null;
+__IriSP.Ligne=function(a,b,c,d){this.id=a;this.title=b;this.description=c;this.annotations=[];this.duration=d;__IriSP.LDTligne=this;__IriSP.trace("__IriSP.Ligne","CREATE "+__IriSP.LDTligne)};__IriSP.Ligne.prototype.addAnnotation=function(a,b,c,d,h,g,f,i){this.annotations.push(new __IriSP.Annotation(a,b,c,d,h,g,f,i,this.duration))};__IriSP.Ligne.prototype.onClickLigneAnnotation=function(){};__IriSP.Ligne.prototype.searchLigneAnnotation=function(){};__IriSP.Ligne.prototype.listAnnotations=function(){};
+__IriSP.Ligne.prototype.nextAnnotation=function(){var a=this.numAnnotation(this.annotationOldRead)+1,b=this.annotations[a];if(a<this.annotations.length-1){__IriSP.player.sendEvent("SEEK",b.begin/1E3);__IriSP.trace("LIGNE ","| next = "+a+" - "+this.annotations.length+" | seek :"+b.begin/1E3)}else __IriSP.player.sendEvent("SEEK",this.annotations[0].begin/1E3)};__IriSP.Ligne.prototype.numAnnotation=function(a){for(var b=0;b<this.annotations.length;++b)if(a==this.annotations[b])return b};
+__IriSP.Ligne.prototype.checkTime=function(a){for(var b=-1,c=0;c<this.annotations.length;++c){b=this.annotations[c];if(a>b.begin/1E3&&a<b.end/1E3){if(b!=this.annotationOldRead){this.annotationOldRead=b;__IriSP.jQuery("#Ldt-SaTitle").text(b.title);__IriSP.jQuery("#Ldt-SaDescription").text(b.description);__IriSP.jQuery("#Ldt-SaDescription").text(b.description);__IriSP.jQuery("#Ldt-SaKeywordText").html("Mots clefs : "+b.htmlTags);a=b.timeToPourcent(b.begin*1+(b.end*1-b.begin*1)/2,b.duration*1);__IriSP.jQuery("#Ldt-Show-Arrow").animate({left:a+
+"%"},1E3);__IriSP.ignoreTimeFragment(window.location.href)}break}}if(b==-1)if(b!=this.annotationOldRead){__IriSP.trace("Check : ","pas d'annotation ici ");__IriSP.jQuery("#Ldt-ShowAnnotation").slideUp();this.annotationOldRead=b}};__IriSP.Annotation=function(){__IriSP.trace("annotation ","r\ufffdussi")};
+__IriSP.Annotation=function(a,b,c,d,h,g,f,i,j){this.id=a;this.begin=b;this.end=c;this.media=d;this.description=g;this.title=h;this.color=f;this.tags=i;this.htmlTags="";this.duration=j;this.draw();this.drawTags();__IriSP.trace("Annotation created : ",a)};
+__IriSP.Annotation.prototype.draw=function(){var a=this.timeToPourcent(this.begin,this.duration),b=this.timeToPourcent(this.end,this.duration)-a,c=this.title.substr(0,55);__IriSP.jQueryAnnotationTemplate="<div title='"+__IriSP.stripHtml(c)+"' id='"+this.id+"' class='ui-slider-range ui-slider-range-min ui-widget-header iri-chapter' width='100%' style=\"left:"+a+"%; width:"+b+"%; padding-top:15px; border-left:solid 1px #aaaaaa; border-right:solid 1px #aaaaaa; background:#"+__IriSP.DEC_HEXA_COLOR(this.color)+
+';" onClick="__IriSP.MyApiPlayer.seek(\''+Math.round(this.begin/1E3)+"');__IriSP.jQuery('#Ldt-ShowAnnotation').slideDown();\" ></div> ";__IriSP.jQuerytoolTipTemplate="<div class='Ldt-tooltip'><div class='title'>"+__IriSP.stripHtml(this.title)+"</div><div class='time'>"+this.begin+" : "+this.end+"</div><div class='description'>"+__IriSP.stripHtml(this.description)+"</div></div>";__IriSP.jQuery("<div>"+__IriSP.jQueryAnnotationTemplate+"</div>").appendTo("#Ldt-Annotations");__IriSP.jQuery("#"+this.id).tooltip({effect:"slide"});
+__IriSP.jQuery("#"+this.id).fadeTo(0,0.3);__IriSP.jQuery("#"+this.id).mouseover(function(){__IriSP.jQuery("#"+this.id).animate({opacity:0.6},5)}).mouseout(function(){__IriSP.jQuery("#"+this.id).animate({opacity:0.3},5)});__IriSP.trace("__IriSP.Annotation.prototype.draw","ADD ANOTATION : "+this.begin+" "+this.end+" "+__IriSP.stripHtml(this.title)+" | "+a+" | "+b+" | duration = "+this.duration)};
+__IriSP.Annotation.prototype.drawTags=function(){if(this.tags!=undefined)for(var a=0;a<this.tags.length;++a)this.htmlTags+="<span> "+__IriSP.MyTags.getTitle(this.tags[a]["id-ref"])+" </span> , "};__IriSP.Annotation.prototype.tootTipAnnotation=function(){return this.color+" "+this.type+" apple"};__IriSP.Annotation.prototype.onRollOverAnnotation=function(){this.tootTip()};__IriSP.Annotation.prototype.timeToPourcent=function(a,b){return parseInt(Math.round(a/b*100))};
+__IriSP.Tags=function(a){this.myTags=a;this.htmlTags=null;this.weigthMax=0};__IriSP.Tags.prototype.addAnnotation=function(a){for(var b=0;b<this.myTags.length;++b){this.myTags[b].mySegments=[];if(a.tags!=null)for(var c=0;c<a.tags.length;++c)if(this.myTags[b].id==a.tags[c]["id-ref"]){this.myTags[b].mySegments.push([a.begin,a.end,a.id]);var d=this.myTags[b].mySegments.length;if(this.weigthMax<d)this.weigthMax=d}}};
+__IriSP.Tags.prototype.getTitle=function(a){for(var b=0;b<this.myTags.length;++b)if(this.myTags[b].id==a)return this.myTags[b].meta["dc:title"]};
+__IriSP.Tags.prototype.draw=function(){__IriSP.trace("__IriSP.Tags.prototype.draw"," !!! WELL START ");for(var a=0;a<this.myTags.length;++a){__IriSP.trace("__IriSP.Tags.prototype.draw"," ADD Tags : "+this.myTags[a].id);if(this.myTags[a].id!=null)this.htmlTags+="<span onclick=\"MyTags.show( '"+this.myTags[a].id+'\');" style="font-size:'+(this.myTags[a].mySegments.length/this.weigthMax*10+8)+'px;" alt="'+this.myTags[a].mySegments.length+'"> '+this.myTags[a].meta["dc:title"]+" </span> , "}__IriSP.jQuery("#Ldt-Tags").html(this.htmlTags);
+__IriSP.trace("__IriSP.Tags.prototype.draw"," !!!! END WMAX= "+this.weigthMax)};
+__IriSP.Tags.prototype.show=function(a){for(var b=1.0E20,c=1.0E20,d=0,h=0,g=0;g<this.myTags.length;++g)if(this.myTags[g].id==a){__IriSP.trace("######### TAG DRAWing : "," END");for(var f=0;f<this.myTags[g].mySegments.length;++f){if(void 0>this.myTags[g].mySegments[f][0]){b=this.myTags[g].mySegments[f][0];c=this.myTags[g].mySegments[f][1]}if(void 0>this.myTags[g].mySegments[f][0]){d=this.myTags[g].mySegments[f][0];h=this.myTags[g].mySegments[f][1]}}}a=__IriSP.timeToPourcent(b*1+(c-b)/2,__IriSP.MyLdt.duration);
+d=__IriSP.timeToPourcent(d*1+(h-d)/2,__IriSP.MyLdt.duration)-a;__IriSP.jQuery("#Ldt-Show-Tags").css("left",a+"%");__IriSP.jQuery("#Ldt-Show-Tags").css("width",d+"%")};__IriSP.traceNum=0;__IriSP.trace=function(a,b){if(__IriSP.config.gui.debug===true){__IriSP.traceNum+=1;__IriSP.jQuery("<div>"+__IriSP.traceNum+" - "+a+" : "+b+"</div>").appendTo("#Ldt-output")}};
\ No newline at end of file
--- a/client/player/test/index.htm Fri Aug 06 17:19:37 2010 +0200
+++ b/client/player/test/index.htm Tue Sep 14 13:15:28 2010 +0200
@@ -1,1971 +1,53 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html class="js" dir="ltr" xml:lang="fr"
-xmlns="http://www.w3.org/1999/xhtml" lang="fr"><head><link media="all"
-href="emission_fichiers/widget40.css" type="text/css" rel="stylesheet">
-
-
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<script type="text/javascript" src="emission_fichiers/swfobject.txt"></script>
-<meta name="afs:suggest/onload" content="onSuggestLoad()">
-<link rel="shortcut icon"
-href="http://www.franceculture.com/sites/default/files/franceculture_favicon.png"
- type="image/x-icon">
-<link rel="alternate" type="application/rss+xml" title="Les Retours du
-dimanche " href="http://www.franceculture.com/emission/1232581/rss">
- <title>Le salaire de la politique ; les vuvuzelas ; l'actualité
-politique belge - Information - France Culture</title>
- <link type="text/css" rel="stylesheet" media="all"
-href="emission_fichiers/css_e94d821d2c09c140834405452127e5ae.css">
-<link type="text/css" rel="stylesheet" media="screen"
-href="emission_fichiers/css_bf9cf64d750be06f6006828a2bed7b98.css">
-<link type="text/css" rel="stylesheet" media="print"
-href="emission_fichiers/css_8af77a07a1f960afe4e4736580827c7c.css">
-<!--[if lte IE 7]>
-<link type="text/css" rel="stylesheet" media="all" href="/sites/all/themes/franceculture/ie.css?y" />
-<link type="text/css" rel="stylesheet" media="all" href="/sites/all/themes/franceculture/footer2.css?y" />
-<![endif]-->
- <script type="text/javascript" src="emission_fichiers/jquery_005.js"></script>
-<script type="text/javascript" src="emission_fichiers/drupal.js"></script>
-<script type="text/javascript" src="emission_fichiers/fr_4fb8f115d8d263374d07dafa1b2a40b5.js"></script>
-<script type="text/javascript" src="emission_fichiers/fc_widget_twitter.js"></script>
-<script type="text/javascript" src="emission_fichiers/youtube.js"></script>
-<script type="text/javascript" src="emission_fichiers/fivestar.js"></script>
-<script type="text/javascript" src="emission_fichiers/high.js"></script>
-<script type="text/javascript" src="emission_fichiers/fc_antidot_recherche.js"></script>
-<script type="text/javascript" src="emission_fichiers/panels.js"></script>
-<script type="text/javascript" src="emission_fichiers/popups_002.js"></script>
-<script type="text/javascript" src="emission_fichiers/popups.js"></script>
-<script type="text/javascript" src="emission_fichiers/tableheader.js"></script>
-<script type="text/javascript" src="emission_fichiers/comment.js"></script>
-<script type="text/javascript" src="emission_fichiers/textarea.js"></script>
-<script type="text/javascript" src="emission_fichiers/fc_bloc_direct.js"></script>
-<script type="text/javascript" src="emission_fichiers/ajax-responder.js"></script>
-<script type="text/javascript" src="emission_fichiers/jquery_006.js"></script>
-<script type="text/javascript" src="emission_fichiers/rf_player.js"></script>
-<script type="text/javascript" src="emission_fichiers/rollover.js"></script>
-<script type="text/javascript" src="emission_fichiers/jquery_002.js"></script>
-<script type="text/javascript" src="emission_fichiers/jquery_003.js"></script>
-<script type="text/javascript" src="emission_fichiers/jquery.js"></script>
-<script type="text/javascript" src="emission_fichiers/footer.js"></script>
-<script type="text/javascript" src="emission_fichiers/jquery_004.js"></script>
-<script type="text/javascript" src="emission_fichiers/script.js"></script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-jQuery.extend(Drupal.settings, {"basePath":"\/","fivestar":{"titleUser":"Your rating: ","titleAverage":"Average: ","feedbackSavingVote":"Saving your vote...","feedbackVoteSaved":"Your vote has been saved.","feedbackDeletingVote":"Deleting your vote...","feedbackVoteDeleted":"Your vote has been deleted."},"adresseProxy":"http:\/\/www.franceculture.com\/proxy","popups":{"originalPath":"node\/2347301","defaultTargetSelector":"#main","modulePath":"sites\/all\/modules\/contrib\/popups","autoCloseFinalMessage":1},"fc_bloc_direct":{"interval":60000,"refresh_on_load":1}});
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
-function quelisentils_redirect() {
- location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/2169101#fc-quelisentils-comment-form';
- location.reload(true);
- return false;
-}
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
-function quelisentils_redirect() {
- location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/778481#fc-quelisentils-comment-form';
- location.reload(true);
- return false;
-}
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
-function quelisentils_redirect() {
- location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/1061061#fc-quelisentils-comment-form';
- location.reload(true);
- return false;
-}
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
-function quelisentils_redirect() {
- location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/437741#fc-quelisentils-comment-form';
- location.reload(true);
- return false;
-}
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
+<html dir="ltr" xml:lang="fr"
+xmlns="http://www.w3.org/1999/xhtml" lang="fr">
-function quelisentils_redirect() {
- location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/2357521#fc-quelisentils-comment-form';
- location.reload(true);
- return false;
-}
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-jQuery(document).ready(function() {
- $(".more-doc").text("voir les 5 documents").css("background" , 'url("/sites/all/themes/franceculture/images/urg-down.png") no-repeat 100% 4px');
- $(".rel-doc .more-liste").hide();
-
-$(".more-doc").toggle(
-function(){
-$(".rel-doc .more-liste").show("slow");
-$(this).text("n'afficher que les 3 premiers").css("background" , 'url("/sites/all/themes/franceculture/images/urg-up.png") no-repeat 100% 4px');
-},
-function(){
-$(".rel-doc .more-liste").hide("slow");
-$(this).text("voir les 5 documents").css("background" , 'url("/sites/all/themes/franceculture/images/urg-down.png") no-repeat 100% 4px');
-});
-});
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
- $(document).ready(function(){
- $('#cb-left').addClass('script-vertical');
- $('#script-scroll').addClass('script');
- $('#share').addClass('share-script');
- $('.share-more').css('background' , 'url("/sites/all/themes/franceculture/images/share-more.png") no-repeat 100% 4px');
-
- $('.share-more').toggle(
- function(){
- $('.share-script .more-services').addClass('active');
- $(this).css('background' , 'url("/sites/all/themes/franceculture/images/share-less.png") no-repeat 100% 4px');
- },
- function(){
- $('.share-script .more-services').removeClass('active');
- $(this).css('background' , 'url("/sites/all/themes/franceculture/images/share-more.png") no-repeat 100% 4px');
- }
- );
- $('span.more-services a.addthis_button_facebook').click(function() {
- window.open(this.href, 'facebook-share', 'resizable=no,with=500,height=315');
- return false;
- });
- });
-//--><!]]>
-</script>
-<script type="text/javascript">
-<!--//--><![CDATA[//><!--
-
- $.fn.cleartextonfocus = function() {
- return this.focus(function() {
- if(this.value == this.defaultValue) {
- this.value = '';
- }
- }).blur(function() {
- if(!this.value.length) {
- this.value = this.defaultValue;
- }
- });
- };
+<head>
- $(document).ready(function(){
- $('textarea.clearonfocus').cleartextonfocus();
- });
-
-//--><!]]>
-</script>
- <!--[if lte IE 7]><script type="text/javascript" src="/sites/all/themes/franceculture/ie.js?y"></script><![endif]--><script language="JavaScript">
-<!--
-//configuration
-OAS_url ='http://pub.ftv-publicite.fr/RealMedia/ads/';
-OAS_listpos = 'Middle,x02,BottomRight';
-OAS_query = '?';
-OAS_sitepage = 'www.radiofrance.fr/franceculture/les-retours-du-dimanche';
-//end of configuration
-OAS_version = 10;
-OAS_rn = '001234567890'; OAS_rns = '1234567890';
-OAS_rn = new String (Math.random()); OAS_rns = OAS_rn.substring (2, 11);
-function OAS_NORMAL(pos) {
- document.write("<a href='" + OAS_url + "click_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + OAS_query + "' target=_top>");
- document.write("<img src='" + OAS_url + "adstream_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + OAS_query + "' border=0 alt='Click!'></a>");
-}
-//-->
-</script>
-<script language="JavaScript1.1">
-<!--
-OAS_version = 11;
-if (navigator.userAgent.indexOf('Mozilla/3') != -1)
- OAS_version = 10;
- if (OAS_version >= 11)
- document.write("<sc"+"ript language='JavaScript1.1' src='" + OAS_url + "adstream_mjx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + OAS_query + "'><\/script>");
-//-->
-</script><script language="JavaScript1.1" src="emission_fichiers/1219830366Middlex02BottomRight.js"></script><script language="JavaScript">
-<!--
-document.write('');
-function OAS_AD(pos) {
- if (OAS_version >= 11 && typeof(OAS_RICH!='undefined'))
- OAS_RICH(pos);
- else
- OAS_NORMAL(pos);
-}
-//-->
-</script>
-<style type="text/css">/**
- * Highlight style classes
- * .a background color
- * .b underline
- * .c underline + font color
- */
-
-@media screen{
-em.diigoHighlight {
- text-align:inherit;
- text-decoration: inherit;
- line-height:inherit;
- font:inherit;
- color:inherit;
- display:inline;
- position:relative;
-}
-em.diigoHighlight.a.mouseOvered {
- background-color: #ffc62a !important;
-}
+</head>
-em.diigoHighlight.b.mouseOvered, em.diigoHighlight.c.mouseOvered {
- border-bottom: solid 2px #ffc62a;
-}
-
-em.diigoHighlight.c {
- color: #000099;
-}
-em.diigoHighlight.c.mouseOvered {
- color: #ffc62a;
-}
+<body>
-em.diigoHighlight.a.yellow {
- background-color: #FF9;
-}
-
-em.diigoHighlight.b.yellow, em.diigoHighlight.c.yellow {
- border-bottom: solid 2px #FF9;
-}
-
-img.diigoHighlight.yellow {/*image highlight*/
- cursor: pointer;
- outline:2px solid #FF9;
-}
-
-em.diigoHighlight.a.blue {
- background-color: #ABD5FF;
-}
-
-em.diigoHighlight.b.blue, em.diigoHighlight.c.blue {
- border-bottom: solid 2px #ABD5FF;
-}
-
-img.diigoHighlight.blue {/*image highlight*/
- cursor: pointer;
- outline:2px solid #ABD5FF;
-}
-
-
-em.diigoHighlight.a.green {
- background-color: #B2E57E;
-}
-
-em.diigoHighlight.b.green, em.diigoHighlight.c.green {
- border-bottom: solid 2px #B2E57E;
-}
-
-img.diigoHighlight.green {/*image highlight*/
- cursor: pointer;
- outline:2px solid #B2E57E;
-}
-
-
-em.diigoHighlight.a.pink {
- background-color: #ffcccc;
-}
-
-em.diigoHighlight.b.pink, em.diigoHighlight.c.pink {
- border-bottom: solid 2px #ffcccc;
-}
-
-img.diigoHighlight.pink {/*image highlight*/
- cursor: pointer;
- outline:2px solid #ffcccc;
-}
-
-img.diigoHighlight.mouseOvered {
- cursor: pointer;
- outline:2px solid #ffc62a;
-}
-
-
-div.diigotb-inline-cloud{
- position:fixed !important;
- width:440px !important;
- height:370px !important;
- left:0;top:0;
- background-color:#fef5c7 !important;
- z-index:9999999999 !important;
- display:none;
- -moz-border-radius:15px !important;
-}
-/* capture image */
-
-.diigotb-body #diigotb-upload-cover{
- cursor:crosshair!important;
- z-index:1999999!important;
- position:fixed!important;
- left:0!important;
- top:31px;
-}
-
-.diigotb-body #diigotb-upload-tip{
- color: #fff!important;
- padding:2px 4px!important;
- position:fixed!important;
- z-index:11000001!important;
-}
-
-.diigotb-body #diigotb-upload-select{
- position:fixed!important;
- z-index:1000001;
-}
-
-.diigotb-body #diigotb-upload-resizer{
- z-index:11000002!important;
- position:fixed!important;
- cursor:move!important;
- border:1px dashed black!important;
-}
-
-.diigotb-body #currentColor{
- background-color: #fff!important;
- width: 37px!important;
- height: 37px!important;
- padding: 1px!important;
- border: 1px solid #2e68e6!important;
- float: left!important;
- margin: 0 5px 0 0!important;
-}
-
-.diigotb-body #currentColor div{
- width: 37px!important;
- height: 37px!important;
- margin:0!important;
-}
-.diigotb-body .selectPanel{
- margin-top:5px!important;
-}
-
-.diigotb-body .colorCell{
- float: left!important;
- margin: 0 1px 1px 0!important;
- border: 1px solid #5f92ff!important;
- width: 18px!important;
- height: 18px!important;
-}
-
-.diigotb-body .colorCell:hover{
- border: 1px solid #FF9900!important;
-}
-.diigotb-body .colorCell.actived{
- border: 1px solid #FF9900!important;
-}
-
-.diigotb-body .colorCell div{
- width: 18px!important;
- height: 18px!important;
- cursor:pointer!important;
- margin:0!important;
-}
-
-.diigotb-body .capture-black{background-color:#000!important;}
-.diigotb-body .capture-white{background-color:#fff!important;}
-.diigotb-body .capture-gray{background-color:#808080!important;}
-.diigotb-body .capture-light-gray{background-color:#c0c0c0!important;}
-
-.diigotb-body .capture-red{background-color:#ff0000!important;}
-.diigotb-body .capture-cyan{background-color:#00ffff!important;}
-.diigotb-body .capture-orange{background-color:#ff9900!important;}
-.diigotb-body .capture-blue{background-color:#0000ff!important;}
-
-.diigotb-body .capture-yellow{background-color:#ffff00!important;}
-.diigotb-body .capture-purple{background-color:#9900ff!important;}
-.diigotb-body .capture-green{background-color:#00ff00!important;}
-.diigotb-body .capture-pink{background-color:#ff00ff!important;}
-
-.diigotb-body #diigotb-colorpanel{
- background:transparent url(chrome://diigotb/skin/ann-bar-palette-bg-left.png) no-repeat scroll left center!important;
- display:block;
- height:55px!important;
- position:fixed!important;
- width:180px!important;
- z-index:11000022!important;
- margin:0!important;
-}
-
-.diigotb-body .diigotb-cbg{
- background:transparent url(chrome://diigotb/skin/ann-bar-palette-bg-right.png) no-repeat scroll right top!important;
- height:55px!important;
- line-height:55px!important;
- padding-left:6px!important;
- width:180px!important;
- margin:0!important;
-}
-
-
-.diigotb-body #currentArrow{
- background:transparent url(chrome://diigotb/skin/ann-bar-palette-arrow.png) no-repeat scroll 0 0!important;
- height:6px!important;
- left:0;
- position:relative!important;
- top:-5px;
- width:7px!important;
- margin:0!important;
-}
-
-.diigotb-body #currentArrow._istop{
- background:transparent url(chrome://diigotb/skin/ann-bar-palette-arrow-down.png) no-repeat scroll 0 0!important;
- top:51px!important;
-}
-
-
-.diigotb-body #diigotb-text-area{
- position:fixed!important;
- z-index:11000010!important;
-}
-
-.diigotb-body .diigotb-text-input{
- font: 18px/22px Helvetica,Arial,sans-serif!important;
- border:0px solid #5f92ff!important;
- z-index:11000011!important;
-}
-
-.diigotb-body #diigotb-editpanel{
- background:transparent url(chrome://diigotb/skin/ann-bar-bg-right.png) no-repeat scroll right center!important;
- height:35px!important;
- position: fixed!important;
- z-index:11000022!important;
- margin:0!important;
-}
-
-
-.diigotb-body .diigotb-btn div{
- cursor:pointer!important;
- width:18px!important;
- height:18px!important;
- margin:2px!important;
-}
-.diigotb-body .diigotb-btn{
- width:23px!important;
- height:23px!important;
-}
-
-
-.diigotb-body #diigotb-editpanel .diigotb-bg{
- background:transparent url(chrome://diigotb/skin/ann-bar-bg-left.png) repeat-x scroll left center!important;
- height:35px!important;
- padding-left:6px!important;
- line-height:35px!important;
- margin:0!important;
-}
-
-
-.diigotb-body div.diigotb-tip{
- -moz-border-radius:4px 4px 4px 4px;
- background-color:#f1f2f7;
- border:1px solid #767676;
- color:black;
- display:none;
- -moz-box-shadow:5px 5px 5px -5px #767676;
- font:12px Arial,Helvetica,sans-serif;
- margin:0 !important;
- padding:3px 6px !important;
- position:absolute;
- z-index:2147483647;
-}
+ <div style="width:650px;font-family: 'Trebuchet MS', 'Helvetica', 'Arial', 'Verdana', 'sans-serif';">
+ <h1>SimplePlayer </h1>
+ Iri SimplePlayer is a javascript's Widget interface to augment existing flash or html5 video player.
+ It's made to show time annotation and different metadata on video.
+ To implement it on your website it's 's really simple.
+ You just need to insert a div and a script, like the exemple under this lines.<br/><br/>
+ This player was test on : firefox 3.6.9 / Chrome 6.0.472.55 / Safari 5.0.2 / Internet Explore 8<br/><br/>
+ This Player is a freeSoftware under <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"/> CeCILL-C</a> license.
+ This program is made by <a href="http://www.iri.centrepompidou.fr/" >Institut de recherche et d innovation</a>
+ more information on <a href="http://www.iri.centrepompidou.fr/outils/agmented-player/" >this page</a>.
+ <br/><br/>
+ </div>
-.diigotb-body #diigotb-editpanel div.diigotb-btn{
- padding:0px!important;
- display:inline-table!important;
- margin-bottom:0 !important;
- margin-left:0 !important;
- margin-right:0 !important;
- margin-top:5px;
-}
-
-
-.diigotb-body #diigotb-editpanel div.diigotb-sep img{
- pading:0!important;
- margin:0!important;
-}
-
-.diigotb-body #diigotb-editpanel div.diigotb-sep{
- pading:4px 0!important;
- display:inline-table!important;
- margin:0!important;
- line-height:0 !important;
-}
-
-.diigotb-body #diigotb-editpanel div.diigotb-btn.enabled:hover{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-current.png') no-repeat!important;
-}
-
-.diigotb-body #diigotb-editpanel #diigotb-undo.enabled div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-undo.png') no-repeat center center!important;
-}
-
-.diigotb-body #diigotb-editpanel div.diigotb-btn.actived{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-current.png') no-repeat!important;
-}
-
-.diigotb-image-border{
- border:1px solid #666 !important;
-}
-
-#diigotb-imagepanel{
- height:22px!important;
- position: absolute!important;
- z-index:11000022!important;
- margin:0!important;
-}
-
-#diigotb-imagepanel .diigotb-btn{
- cursor:pointer!important;
- width:20px!important;
- height:20px!important;
- margin:2px!important;
- float:left !important;
- background:transparent url(chrome://diigotb/skin/save-image-action-icons.png) no-repeat scroll!important;
-}
-
-
-#diigotb-imagepanel #diigotb-quick-save{
- background-position:0 0!important;
-}
-
-#diigotb-imagepanel.processing #diigotb-quick-save{
- background-position:0 -20px!important;
- cursor:default!important;
-}
-
-
-#diigotb-imagepanel.needpremium #diigotb-quick-save{
- background-position:0 -20px!important;
- cursor:default!important;
-}
-
-#diigotb-imagepanel.hassaved #diigotb-quick-save{
- background-position: -60px 0!important;
- cursor: pointer !important;
-}
-
-.diigotb-imagetip{
- background:transparent url(chrome://diigotb/skin/notice-bar-bg-right.png) no-repeat scroll right center !important;
- height:21px !important;
- margin:0 !important;
- position:absolute !important;
- z-index:11000022 !important;
- width:106px;
-}
-
-.diigotb-imagebg{
- background:transparent url(chrome://diigotb/skin/notice-bar-bg-left.png) repeat-x scroll left center !important;
- height:21px !important;
- margin:0 !important;
- padding-left:6px !important;
- width:90px;
-}
-
-.diigotb-imagetip-text{
- padding-left:20px!important;
- font:11px/13px Helvetica,Arial,sans-serif!important;
- color:white!important;
- line-height:20px!important;
- float:left;
-}
-
-.diigotb-imagetip.processing .diigotb-imagetip-text{
- background:transparent url(chrome://diigotb/skin/processing-fb.gif) no-repeat scroll left center !important;
-}
-
-.diigotb-imagetip.hassaved .diigotb-imagetip-text{
- background:transparent url(chrome://diigotb/skin/icon-done.png) no-repeat scroll left center !important;
-}
-
-.diigotb-border{
- position: absolute!important;
- z-index:11000000!important;
- margin:0!important;
- background-color: #4b8cdc!important;
-}
-.diigotb-left{
- width:1px!important;
-}
-.diigotb-right{
- width:1px!important;
-}
-.diigotb-top{
- height:1px!important;
-}
-.diigotb-bottom{
- height:1px!important;
-}
-
-.diigotb-body #diigotb-rect div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-rectangle.png') no-repeat center center!important;
-}
-.diigotb-body #diigotb-round div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-ellipse.png') no-repeat center center!important;
-}
-.diigotb-body #diigotb-text div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-font.png') no-repeat center center!important;
-}
-
-.diigotb-body #diigotb-arrow div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-arrow.png') no-repeat center center!important;
-}
-
-.diigotb-body .diigotb-sep{
- background: transparent url('chrome://diigotb/skin/ann-bar-bg-separator.png') no-repeat center center!important;
-}
-
-.diigotb-body #diigotb-undo div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-undo-disabled.png') no-repeat center center!important;
-}
-
-.diigotb-body #diigotb-capture-save div{
- background: transparent url('chrome://diigotb/skin/ann-bar-opt-quickly-save.png') no-repeat center center!important;
-}
-
-
-
-.diigotb-body #diigotb-upload-resizer div {
- position: absolute!important;
- width: 9px!important;
- height: 9px!important;
- /*background-color: white;*/
- z-index:11000002!important;
- margin:0px!important;
- background:transparent url(chrome://diigotb/skin/spot.png) no-repeat scroll left center!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.gleft {
- left: -9px!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.gtop {
- top: -9px!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.gright {
- right: -9px!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.gbottom {
- bottom: -9px!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.ghor {
- margin-left: auto!important;
- margin-right: auto!important;
- left: 0px!important;
- right: 0px!important;
-}
-
-.diigotb-body #diigotb-upload-resizer div.gver {
- margin-top: auto!important;
- margin-bottom: auto!important;
- top: 0px!important;
- bottom: 0px!important;
-}
-
-.diigotb-body{
- padding-top: 31px!important;
-}
-
-.diigotb-body #diigotb-topbar{
- background: url(chrome://diigotb/skin/topbar-bg.png) left top repeat-x!important;
- border-bottom: 1px solid #999!important;
- color: #555!important;
- font: 12px/18px Helvetica,Arial,sans-serif!important;
- height: 30px!important;
- line-height: 30px!important;
- position: fixed!important;
- left: 0!important;
- top: 0!important;
- text-align:center!important;
- z-index:1999999!important;
-}
-
-.diigotb-body #diigotb-msg img{
- margin:0 5px 0 0!important;
- vertical-align: middle!important;
-}
-
-.diigotb-body #diigotb-msg{
- color:#333!important;
-}
-
-.diigotb-body #diigotb-msg a{
- color: #0044cc!important;
- text-decoration: none!important;
-}
-
-.diigotb-body #diigotb-msg a:hover{
- text-decoration: underline!important;
-}
-
-.diigotb-body #diigotb-escLink{
- display: block!important;
- float: right!important;
- margin: 5px 5px 0 0!important;
- text-decoration: none!important;
- width: 50px!important;
- cursor:pointer!important;
-}
-
-.diigotb-body #diigotb-escLink:hover{
- text-decoration: underline!important;
-}
+ <!-- START Integration ###################################### -->
+ <!-- SIMPLE PLAYER EXPERIMENTATION -->
+ <script type="text/javascript" src="../src/js/LdtPlayer.js"></script>
-.diigotb-body #diigotb-escLink span{
- background: url(chrome://diigotb/skin/esc-right.png) right top no-repeat!important;
- display: block!important;
- padding-right: 9px!important;
-}
-
-.diigotb-body #diigotb-escLink span strong{
- background: url(chrome://diigotb/skin/esc-left.png) left top no-repeat!important;
- display: block!important;
- color: #fff!important;
- font-weight: 700!important;
- line-height: 20px!important;
- text-indent:7px!important;
-}
-
-
-
-/*highlight label*/
-.diigoHighlight .diigoHighlightLabel sup {
- font:normal normal normal 8px/8px "lucida grande",tahoma,verdana,arial,sans-serif;
- text-decoration:none;
- background-color:inherit;
- cursor:default;
-}
-
-body.diigoHiPen.yellow{
- cursor:url(chrome://diigotb/skin/highlighter-orange.cur), text !important
-}
-
-body.diigoHiPen.blue{
- cursor:url(chrome://diigotb/skin/highlighter-blue.cur), text !important
-}
-
-body.diigoHiPen.green{
- cursor:url(chrome://diigotb/skin/highlighter-green.cur), text !important
-}
-
-body.diigoHiPen.pink{
- cursor:url(chrome://diigotb/skin/highlighter-pink.cur), text !important
-}
-em.diigoHighlight.type_0.commented {
- padding-left:30px;
-}
-
-/*float note*/
-div.diigoHighlight.type_2 {
- position:absolute;
- width:29px;
- height:36px;
- text-align:center;
- background:transparent url('chrome://diigotb/skin/float_icon.png') no-repeat 50% 50%;
- z-index:9996;
-}
-div.diigoHighlight.type_2.mouseOvered {
- position:absolute;
- width:37px;
- height:31px;
- text-align:center;
- background:transparent url('chrome://diigotb/skin/float_icon.png') no-repeat;
- z-index:9996;
-}
-div.diigoHighlight.type_2 span {
- color:#000;
- font:bold 13px Arial, Helvetica, sans-serif;
- cursor: default;
- line-height: 37px;
- text-shadow: #fff 0 1px 0;
-}
-/*
-* html div.diigoHighlight.type_2{
- filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale, src="http://www.diigo.com/javascripts/webtoolbar/images/float_icon.png");
- overflow:hidden;
- background:none;
-}
-*/
-
-
-div.diigoIcon.commented.TextIcon.diigoEdit{
- background-repeat:no-repeat !important;
- background-position:right !important;
-}
-
-
-div.diigoIcon.commented.ImageIcon.diigoEdit{
- background-repeat:no-repeat !important;
- background-position:right !important;
-}
-
-
-/*mouse over effect*/
-/*
-.diigoHighlight.id_190e5778b533dc0fa1b1660653a4f6f5 {outline: 2px dotted green !important;}
-*/
-div.diigoIcon{
- cursor:pointer !important;
- margin: 0pt;
- padding: 0px 0px 0px 0px;
- position: absolute;
- display:none;
- width: 24px !important;
- z-index:999999;
- height: 23px !important;
- background: transparent url('chrome://diigotb/skin/edit-highlight.png') no-repeat left;
-}
-
-div.diigoIcon span{
- color:#000000;
- display:block;
- font-family:Helvetica,Arial,sans-serif;
- font-size:13px;
- font-weight:700;
- line-height:18px;
- text-align:center;
- text-shadow:0 1px 1px #FFFFFF;
-}
-
-div.diigoIcon.commented.ImageIcon{
- display:block !important;
- background-color: transparent !important;
-}
+ <div id="LdtPlayer"></div>
-div.diigoIcon:hover{
- background-background: transparent !important;
- background-repeat:no-repeat !important;
- background-position:right !important;
-}
-
-div.diigoIcon.commented.TextIcon{
- display:block !important;
- left:0;
- bottom:0;
-}
-
-div.diigoIcon.commented.public{
- background: #FFFFFF url('chrome://diigotb/skin/public-annotation.png') no-repeat left;
-}
-
-div.diigoIcon.commented.private{
- background: #FFFFFF url('chrome://diigotb/skin/private-annotation.png') no-repeat left;
-}
-
-div.diigoIcon.commented.group{
- background: #FFFFFF url('chrome://diigotb/skin/group-annotation.png') no-repeat left;
-}
-
-/*Clip video*/
-div.diigoClipVideo{
- float:left;
- height:16px;
- padding:0 16px 0 6px;
- background:#f5f5f5 url(chrome://diigotb/skin/toolbar-clip-bg.gif) no-repeat right 0;
- border:1px solid #ccc;
- border-bottom-width:0;
- font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
- z-index:999;
- position:absolute;
-}
-
-div.diigoClipVideo.clipped {
- background-position: right -32px; left: 717px; top: 135px;
-}
-
- div.diigoClipVideo span{
- font-weight:bold;
- font-size:10px;
- line-height:16px;
- text-decoration:underline;
- color:#03f;
- cursor:pointer;
- margin-right:6px
- }
- div.diigoClipVideo span:hover,div.diigoClipVideo span:active{
- color:#00f
- }
- /*.diigolet input{
- font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
- font-size:9px;
- }*/
-
-/*-----------notice msg--------------*/
-.diigotb-notice-img {
- float:left!important;
- height:16px!important;
- width:16px!important;
- margin-top:6px!important;
- margin-right:3px!important;
-}
-.success .diigotb-notice-img{
- background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll 0 0 transparent!important;
-}
-.failed .diigotb-notice-img{
- background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -16px 0 transparent!important;
-}
-.info .diigotb-notice-img{
- background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -32px 0 transparent!important;
-}
-.process .diigotb-notice-img{
- background:url("chrome://diigotb/skin/processing.gif") no-repeat scroll left 0 transparent!important;
-}
-
-.diigotb-notice-msg-rt {
- background:url("chrome://diigotb/skin/notice-bar-2-bg-left.png") no-repeat scroll left bottom transparent!important;
- line-height:28px!important;
- padding-left:10px!important;
- height:30px!important;
-}
-.failed .diigotb-notice-msg-rt {
- background:url("chrome://diigotb/skin/notice-bar-2-bg-left.png") no-repeat scroll left top transparent!important;
-}
-
-.diigotb-notice-close{
- float:right!important;
- height:16px!important;
- width:16px!important;
- margin-left:20px!important;
- margin-top:6px!important;
- cursor:pointer;
- background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -48px 0 transparent!important;
-}
-
-.diigotb-notice-close:hover{
- background-position: -63px 0!important;
-}
-
-.diigotb-notice-msg {
- background:url("chrome://diigotb/skin/notice-bar-2-bg-right.png") no-repeat scroll right bottom transparent!important;
- float:right!important;
- height:30px!important;
- padding:0 11px 0 0!important;
- border: none!important;
- margin:0!important;
- position:fixed!important;
- font:12px/14px Helvetica,Arial,sans-serif!important;
- z-index:100000!important;
-}
-.diigotb-notice-msg a {
- color:#0044cc!important;
- text-decoration:underline!important;
-}
-
-.failed.diigotb-notice-msg {
- background:url("chrome://diigotb/skin/notice-bar-2-bg-right.png") no-repeat scroll right top transparent!important;
-}
-
-}
-
-
-@media print{
-em.diigoHighlight.a, em.diigoHighlight.b, em.diigoHighlight.c {
- border-bottom:0.5pt dashed Black;
-}
+ <script type="text/javascript">
+ var config = {
+ metadata:{
+ format:'cinelab',
+ src:'http://exp.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be',
+ load:'jsonp'},
+ gui:{
+ width:650,
+ height:1,
+ mode:'radio',
+ container:'LdtPlayer',
+ debug:false,
+ css:'../src/css/LdtPlayer.css'},
+ player:{
+ type:'jwplayer',
+ src:'../res/swf/player.swf'}
+ };
+ __IriSP.init(config);
+ </script>
-/*image highlight*/
-/*no inline comments*/
-img.diigoHighlight {
- border:0.5pt dashed Black
-}
-
-/*float note*/
-div.diigoHighlight.type_2 {
- display:none
-}
-div.diigoHighlight.type_2 span {
- display:none
-}
-}</style><style id="diigo-activeHighlight" type="text/css">dummyRuleForDigg{}</style></head><body
- class="not-front not-logged-in node-type-rf-diffusion one-sidebar
-sidebar-right emissions page-node-2347301
-section-emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg
- popups-processed tableHeader-processed"><div id="_atssh"
-style="visibility: hidden; height: 1px; width: 1px; position: absolute;
-z-index: 100000;"><iframe src="emission_fichiers/sh20.htm"
-style="height: 1px; width: 1px; position: absolute; z-index: 100000;
-border: 0pt none; left: 0pt; top: 0pt;" id="_atssh433"></iframe></div>
- <div id="header-commun" class="header-footer content-header-footer"><div
- id="header-content"><ul><li class="first-header"><a
-href="http://radiofrance.fr/" name="top-page-ancre">radiofrance.fr</a></li><li><a
- href="http://www.franceinter.com/">france inter</a></li><li><a
-href="http://www.france-info.com/">france info</a></li><li><a
-href="http://www.francebleu.com/">france bleu</a></li><li><a
-href="http://www.franceculture.com/">france culture</a></li><li><a
-href="http://www.francemusique.com/">france musique</a></li><li><a
-href="http://fip-radio.com/">fip</a></li><li><a
-href="http://www.lemouv.com/">le mouv'</a></li><li class="last-header"><a
- href="http://concerts.radiofrance.fr/">les orchestres</a></li></ul><div
- class="clearer"> </div></div></div><div id="page">
- <div id="page-inner">
-<!-- début du header -->
- <div id="header">
- <!-- début du menu d'accès rapide -->
- <div id="acces-rapide"><a name="top"></a>
- <a href="#acces-navigation-primaire"
-title="descriptif du lien">acces rapide a la navigation principale</a><br>
- <a href="#acces-navigation-secondaire"
-title="descriptif du lien">acces rapide a la navigation secondaire</a><br>
- <a href="#acces-contenu" title="descriptif du lien">acces
- rapide au contenu</a><br>
- <a href="#acces-right" title="descriptif du lien">acces
- rapide au contenu de droite</a><br>
- <a href="#acces-footer" title="descriptif du lien">acces
- rapide au footer</a><br>
- </div>
- <a href="http://www.franceculture.com/" class="retour-home"><img
- src="emission_fichiers/logo.png" alt="Accueil" height="106" width="106"></a>
- <div id="block-simplenews-65" class="block block-simplenews">
- <div class="block-inner">
-
- <div class="block-content">
- <p>Recevez la lettre d'information</p>
-
- <form
-action="/emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg"
- accept-charset="UTF-8" method="post" id="simplenews-block-form-65">
-<div><div class="form-item" id="edit-mail-1-wrapper">
- <label for="edit-mail-1">E-mail : <span class="form-required"
-title="Ce champ est obligatoire.">*</span></label>
- <input maxlength="128" name="mail" id="edit-mail-1" size="20"
-value="identifiant@mail.com" class="form-text required idleField"
-type="text">
-</div>
-<div class="form-radios"><div class="form-item"
-id="edit-action-subscribe-wrapper">
- <label class="option" for="edit-action-subscribe"><input
-id="edit-action-subscribe" name="action" value="subscribe"
-checked="checked" class="form-radio" type="radio"> S'abonner</label>
-</div>
-<div class="form-item" id="edit-action-unsubscribe-wrapper">
- <label class="option" for="edit-action-unsubscribe"><input
-id="edit-action-unsubscribe" name="action" value="unsubscribe"
-class="form-radio" type="radio"> Se désabonner</label>
-</div>
-</div><input name="submit" value="Enregistrer" id="edit-submit-1"
-class="form-submit submit" src="emission_fichiers/inscription.png"
-type="image">
-<input name="form_build_id" id="form-d495e634489f3be0bd7ebbe9bf42e037"
-value="form-d495e634489f3be0bd7ebbe9bf42e037" type="hidden">
-<input name="form_id" id="edit-simplenews-block-form-65"
-value="simplenews_block_form_65" type="hidden">
-
-</div></form>
-
-
-
- </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
- <div class="search"><form
-action="/emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg"
- accept-charset="UTF-8" method="post" id="antidot-search-block-form-1">
-<div><div class="form-item" id="search_top_page-wrapper">
- <label for="search_top_page">Cherchez sur France Culture : </label>
- <input maxlength="128" name="antidot_search_block_form"
-id="search_top_page" size="15" title="Entrez les termes que vous voulez
-rechercher." autocomplete="off" class="form-text idleField" type="text">
-</div>
-<input name="op" id="edit-submit" value="Recherche" class="submit
-rollover" src="emission_fichiers/search-submit.png" alt="Rechercher"
-height="26" type="image" width="26"><input name="form_build_id"
-id="form-0fb0ec9e93007e0870ba7f8b130bd7f7"
-value="form-0fb0ec9e93007e0870ba7f8b130bd7f7" type="hidden">
-<input name="form_id" id="edit-antidot-search-block-form-1"
-value="antidot_search_block_form" type="hidden">
-
-</div></form>
-</div>
- <!--block de navigation secondaire -->
- <a name="acces-navigation-secondaire"></a><a href="#top"
-class="back-to-top">retour en haut de page</a>
- <ul class="" id="menu-top"><li class="leaf first menu-top"><a
- href="http://www.franceculture.com/quelisentils" title="" accesskey="b">Que
- lisent-ils ?</a></li>
-<li class="leaf menu-top"><a
-href="http://www.franceculture.com/votre-agenda" title="" accesskey="b">Votre
- agenda Culture</a></li>
-<li class="leaf menu-top"><a
-href="http://www.franceculture.com/culture-academie" title=""
-accesskey="b">Culture Académie</a></li>
-<li class="leaf menu-top login"><a
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- title="Connexion [Popup]" alt="Connexion" class="popups-form-reload
-popups-processed" accesskey="b">Connexion</a></li>
-<li class="leaf last menu-top register"><a
-href="http://www.franceculture.com/user/register-profile" title="pas
-encore membre ? [Popup]" alt="pas encore membre ?"
-class="popups-form-reload popups-processed" accesskey="b">pas encore
-membre ?</a></li>
-</ul> <!-- block de navigation principale -->
- <a name="acces-navigation-primaire"></a><a href="#top"
-class="back-to-top">retour en haut de page</a>
- <ul class="" id="menu-principal"><li class="leaf first
-menu-principal"><a
-href="http://www.franceculture.com/rubrique/information" title=""
-accesskey="b">Information</a></li>
-<li class="leaf menu-principal"><a
-href="http://www.franceculture.com/rubrique/litt%C3%A9rature" title=""
-accesskey="b">Littérature</a></li>
-<li class="leaf menu-principal"><a
-href="http://www.franceculture.com/rubrique/id%C3%A9es" title=""
-accesskey="b">Idées</a></li>
-<li class="leaf menu-principal"><a
-href="http://www.franceculture.com/rubrique/arts-spectacles" title=""
-accesskey="b">Arts et spectacles</a></li>
-<li class="leaf menu-principal"><a
-href="http://www.franceculture.com/rubrique/histoire" title=""
-accesskey="b">Histoire</a></li>
-<li class="leaf menu-principal"><a
-href="http://www.franceculture.com/rubrique/sciences" title=""
-accesskey="b">Sciences</a></li>
-<li class="leaf first menu-action"><a
-href="http://www.franceculture.com/podcasts" title="" accesskey="b">Podcasts</a></li>
-<li class="leaf menu-action"><a
-href="http://www.franceculture.com/emissions/titre" title=""
-accesskey="b">Emissions</a></li>
-<li class="leaf last menu-action"><a
-href="http://www.franceculture.com/grille-des-programmes/" title=""
-accesskey="b">Programmes</a></li>
-</ul>
- <div id="x02">
- <script language="JavaScript">
- <!--
- OAS_AD("x02");
- //-->
- </script>
- </div> </div><!-- /header -->
-
- <!-- début du contenu -->
- <div id="main"><a name="acces-contenu"></a><a href="#top"
-class="back-to-top">retour en haut de page</a>
-
- <div id="content">
-
- <div id="content-inner">
- <div id="content-top">
- <div id="block-fcbloc-emission-header"
-class="block block-fcbloc">
- <div class="block-inner">
-
- <div class="block-content">
-
- <div class="bandeau">
- <h1 class="theme1-130">Les Retours du dimanche
- <a href="http://www.franceculture.com/emission/1232581/rss"
-class="feed-icon"><img src="emission_fichiers/picto-rss.gif"
-alt="Syndiquer le contenu" title="Les Retours du dimanche " height="16"
-width="16"></a>
- <span class="emission-producteurs">par <a
-href="http://www.franceculture.com/personne-caroline-brou%C3%A9.html">Caroline
- Broué</a>, <a
-href="http://www.franceculture.com/personne-herve-gardette.html">Hervé
-Gardette</a></span>
- <a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche.html"
- class="site" title="Les Retours du dimanche ">Le site de l'émission</a>
- </h1>
- <div class="image">
- <img src="emission_fichiers/retour_dimanche.png" alt="Les Retours du
-dimanche " title="" height="100" width="640">
- <a href="http://www.franceculture.com/podcast/1232581" title="Les
-Retours du dimanche "><img
-src="emission_fichiers/culture_les_retours_du_dimanche.jpg"
-alt="Emission Les Retours du dimanche " title="" class="illu-small"
-height="75" width="75"></a>
- </div>
- <p>le dimanche de 18h10 Ă 19h </p>
- </div>
- </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-
- </div>
-
- <div id="node-2347301" class="node node-rf_diffusion">
-
-
- <div class="titre-plus">
- <div class="listen">
- <a class="rf-player-open rf-player-open-processed"
-href="http://www.franceculture.com/player?p=reecoute-2347301#reecoute-2347301">
- <img alt="Ecoutez l'émission"
-src="emission_fichiers/listen.png" height="78" width="78">
- </a>
- <span>50 minutes</span>
- </div>
- <h2 class="title">
- Le salaire de la politique ; les vuvuzelas ; l'actualité
-politique belge <a class="num-com" href="#comments">
- <span>0</span>
- </a>
- </h2>
- <p>
- <span class="date">20.06.2010 - 18:10</span>
- </p>
- <div class="clear"></div>
- </div>
-
-
- <span class="print-link"></span><div class="field
-field-type-multimedia-editorial-element field-field-contenu">
- <div class="field-items">
- <div class="field-item odd">
- <div class="dnd-drop-wrapper">
-
-
- <div class="image atom-Image">
- <img class="dnd-dropped" src="emission_fichiers/Garrigou.jpg"
-alt="">
- <div class="opaque"><p>le sociologue Alain Garrigou <span>©Radio
-France</span></p></div>
- </div>
-
-
-</div><p>Au sommaire des <strong>Retours du dimanche </strong>:</p><p> </p><p>La
-
-
- revue
-d'actualités : rappel des petits et grands évènements de la semaine. : <a
- title=" ça s'est passé cette semaine"
-href="http://www.franceculture.com/2010-06-19-20-juin-2010-ca-s-039-est-passe-cette-semaine.html">il
- faut reconnaître un mérite à Raymond Domenech et à ses joueurs...</a></p><p> </p><p>L'entretien
-
-
-
- : "<a href="#t=700">Le salaire de la politique</a>", <span><span
-class="262252614-17062010">après que la question de la rémunération des
-politiques a été posée par le
-premier ministre cette semaine. Invité : </span></span>l'historien
-et professeur en science politique <strong>Alain Garrigou</strong>,
-auteur de <em>Mourir pour des Idées, la vie posthume d'Alphone Baudin</em>,
- paru aux éditions Les Belles Lettres en avril 2010.</p><p> </p><p> </p>
-
- <!-- START Integration testing ###################################### -->
- <!-- IRI PLAYER EXPERIMENTATION -->
- <!-- JS INJECTION WITHE LOCAL JQUERY -->
-
- <!-- EXTERNAL JAVASCRIPT / JQUERY -->
- <script type="text/javascript" src="../res/js/ui/jquery.ui.core.js"></script>
- <script type="text/javascript" src="../res/js/ui/jquery.ui.widget.js"></script>
- <script type="text/javascript" src="../res/js/ui/jquery.ui.mouse.js"></script>
- <script type="text/javascript" src="../res/js/ui/jquery.ui.slider.js"></script>
- <script type="text/javascript" src="../res/js/ui/jquery.ui.button.js"></script>
- <script type="text/javascript" src="../res/js/jquery.tools.min.js"></script>
- <script type="text/javascript" src="../res/js/swfobject.js"></script>
-
-<!-- INITIALISE JQUERY WITH NO CONFLICT VERSION -->
- <script> var $jIRI = $; </script>
- <link type="text/css" href="../res/css/jq-css/themes/base/jquery.ui.all.css" rel="stylesheet" />
- <link type="text/css" href="../src/css/LdtPlayer.css" rel="stylesheet" />
- <script type="text/javascript" src="../src/js/LdtPlayer.js"></script>
-
- <div id="playerLdt"></div>
-<script type="text/javascript">
- playerLdt(650,1, "http://web.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be","playerLdt","../res/swf/player.swf",false);
-</script>
-
-
-<!-- END ###################################### ####################################-->
-
- <br/>
-
- <p> <a href="#t=1773">La
- revue de
-presse </a>: les <strong>vuvuzelas comme phénomène identitaire</strong>, ces
- trompettes qui occupent le fond sonore de tous les matchs de la coupe
-du monde de football qui se déroule en ce moment en Afrique du Sud.<br>
-<br> <a href="#t=1846"> La bulle sonore :</a><strong> Patrick Roegiers</strong><strong> </strong>pour revenir
- sur<strong> l'actualité politique en Belgique. </strong>Notre invité
-est romancier, auteur de <em>La Belgique, Le roman d'un pays</em>, paru
-chez Découvertes Gallimard en 2005, et <em>Le mal du pays, autoportrait
-de la Belgique</em>, publié au Seuil en 2003. Il a récemment publié <em>La
- Nuit du Monde</em>, au Seuil en janvier 2010.</p><p> </p><p>
- <a href="#t=2647">La
-chronique d'Anthony Bellanger de </a> <strong>Courrier
-
-International.</strong></p>
-<p><br>Et comme chaque semaine : le sujet choisi par l'invité, notre
-choix pour
-la semaine Ă venir...</p> </div>
- </div>
-</div>
- <div class="clear"></div>
-
- <p class="invites">Invités :<br>
- <a
-href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
-Garrigou</a>, professeur agrégé d'histoire et docteur en science
-politique à l'université de Paris-X Nanterre<br><a
-href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
- Roegiers</a> </p>
- <p class="theme">Thèmes :
- <a href="http://www.franceculture.com/rubrique/information"
-title="">Information</a>| <a
-href="http://www.franceculture.com/theme/d%C3%A9bat" title="">Débat</a>|
- <a href="http://www.franceculture.com/theme/gouvernement" title="">Gouvernement</a>|
- <a
-href="http://www.franceculture.com/theme/sciences-dures-et-sciences-humaines/histoire"
- title="">Histoire</a> </p>
- <div class="rel-doc">
- <h2 class="titre-barre"><span>Documents</span></h2>
- <ul><li><p>
- <a
-href="http://www.franceculture.com/oeuvre-mourir-pour-des-idees-la-vie-posthume-d-alphone-baudin-de-alain-garrigou.html">
- Mourir pour des idées, la vie posthume d'Alphone Baudin </a>
- <a href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
- Garrigou</a> <span>
- Belles lettres, 2010 </span>
- </p>
-<a
-href="http://www.franceculture.com/oeuvre-mourir-pour-des-idees-la-vie-posthume-d-alphone-baudin-de-alain-garrigou.html">
- <img src="emission_fichiers/baudin.jpg" alt="" title=""
-class="imagecache imagecache-oeuvre_image_liste" height="143" width="95"></a>
-</li><li><p>
- <a
-href="http://www.franceculture.com/oeuvre-les-elites-contre-la-republique-histoire-et-mutations-de-sciences-po-et-de-l-ena-de-alain-gar">
- Les élites contre la République : histoire et mutations de Sciences
-Po et de l'ENA </a>
- <a href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
- Garrigou</a> <span>
- Editions La découverte, </span>
- </p>
-<a
-href="http://www.franceculture.com/oeuvre-les-elites-contre-la-republique-histoire-et-mutations-de-sciences-po-et-de-l-ena-de-alain-gar">
- <img
-src="emission_fichiers/les_lites_contre_la_rpublique_histoire_et_mutations_de_scien.jpg"
- alt="" title="" class="imagecache imagecache-oeuvre_image_liste"
-height="157" width="95"></a>
-</li><li><p>
- <a
-href="http://www.franceculture.com/oeuvre-le-mal-du-pays-autobiographie-de-la-belgique-de-patrick-roegiers.html">
- Le mal du pays : autobiographie de la Belgique </a>
- <a href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
- Roegiers</a> <span>
- Seuil, 2003 </span>
- </p>
-<a
-href="http://www.franceculture.com/oeuvre-le-mal-du-pays-autobiographie-de-la-belgique-de-patrick-roegiers.html">
- <img
-src="emission_fichiers/le_mal_du_pays_autobiographie_de_la_belgique20100424.jpg"
- alt="" title="" class="imagecache imagecache-oeuvre_image_liste"
-height="161" width="95"></a>
-</li><li style="display: none;" class="more-liste liste-clear"></li><li
-style="display: none;" class="more-liste"><p>
- <a
-href="http://www.franceculture.com/oeuvre-la-nuit-du-monde-de-patrick-roegiers.html">
- La nuit du monde </a>
- <a href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
- Roegiers</a> <span>
- Seuil, 2010 </span>
- </p>
-<a
-href="http://www.franceculture.com/oeuvre-la-nuit-du-monde-de-patrick-roegiers.html">
- <img src="emission_fichiers/la_nuit_du_monde20100423.jpg" alt=""
-title="" class="imagecache imagecache-oeuvre_image_liste" height="143"
-width="95"></a>
-</li><li style="display: none;" class="more-liste"><p>
- <a
-href="http://www.franceculture.com/oeuvre-l-evangile-selon-jesus-christ-de-jose-saramago.html">
- L'évangile selon Jésus-Christ </a>
- <a
-href="http://www.franceculture.com/personne-jos%C3%A9-saramago.html">José
- Saramago</a> <span>
- Ed. du Seuil - coll. Points, 2000 </span>
- </p>
-<a
-href="http://www.franceculture.com/oeuvre-l-evangile-selon-jesus-christ-de-jose-saramago.html">
- <img src="emission_fichiers/97820204039860-2000020811.jpg" alt=""
-title="" class="imagecache imagecache-oeuvre_image_liste" height="158"
-width="95"></a>
-</li></ul><div class="clear"></div><a style="background:
-url("/sites/all/themes/franceculture/images/urg-down.png")
-no-repeat scroll 100% 4px transparent;" class="more-doc">voir les 5
-documents</a> </div>
- <div class="clear"></div>
- </div> <!-- /node -->
- <div id="comments" class="com">
- <h2 class="titre-barre"><span>0 commentaire</span></h2>
- <div class="box">
- <h2 class="title titre-barre"><span>Votre commentaire</span></h2>
- <form action="/comment/reply/2347301" accept-charset="UTF-8"
-method="post" id="comment-form">
-<div><div class="form-item" id="edit-name-wrapper">
- <label for="edit-name">votre nom : </label>
- <input maxlength="60" name="name" id="edit-name" size="30"
-value="Anonyme" class="form-text idleField" type="text">
-</div>
-<div class="form-item" id="edit-mail-wrapper">
- <label for="edit-mail">votre adresse électronique : </label>
- <input maxlength="64" name="mail" id="edit-mail" size="30"
-class="form-text idleField" type="text">
-</div>
-<div class="form-item" id="edit-comment-wrapper">
- <label for="edit-comment">votre commentaire : <span
-class="form-required" title="Ce champ est obligatoire.">*</span></label>
- <div class="resizable-textarea"><span><textarea cols="60" rows="15"
-name="comment" id="edit-comment" class="form-textarea resizable required
- clearonfocus textarea-processed">Tapez ici vos commentaires</textarea><div
- style="margin-right: -33px;" class="grippie"></div></span></div>
-</div>
-<div class="wysiwyg wysiwyg-format-5 wysiwyg-editor-none
-wysiwyg-field-edit-comment wysiwyg-status-1 wysiwyg-toggle-1
-wysiwyg-resizable-1"> </div><input name="form_build_id"
-id="form-3d46a280b7c4d6960ed80ba3c5ae0418"
-value="form-3d46a280b7c4d6960ed80ba3c5ae0418" type="hidden">
-<input name="form_id" id="edit-comment-form" value="comment_form"
-type="hidden">
-<input name="op" id="edit-submit" value="Envoyer" class="form-submit"
-type="submit"><div id="saving"><p class="saving">Enregistrement des
-données…</p></div>
-<input name="op" id="edit-preview" value="Aperçu" class="form-submit"
-type="submit">
-
-</div></form>
-</div> <!-- /box -->
- </div>
- <!-- /comment wrapper -->
-<div id="block-print-0" class="block block-print">
- <div class="block-inner">
-
- <div class="block-content">
- <span class="print_html"><a
-href="http://www.franceculture.com/print/463861" title="Imprimer le
-contenu" class="print-page" onclick="window.open(this.href); return
-false" rel="nofollow">imprimer</a></span> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-<div id="share" class="block block-addthis share-script">
-
- <div class="addthis_toolbox addthis_default_style">
- <a class="addthis_button_email share-mail at300b" title="partager par
- courier"><span class="at300bs at15t_email"></span>envoyer par courriel</a>
-
- <span class="more-services">
- <a title="Send to Facebook" target="_blank"
-href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=facebook&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
- class="addthis_button_facebook share-services at300b"><span
-class="at300bs at15t_facebook"></span>facebook</a>
- <a title="Tweet This" target="_blank"
-href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=twitter&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
- class="addthis_button_twitter share-services at300b"><span
-class="at300bs at15t_twitter"></span>twitter</a>
- <a title="Send to Netvibes" target="_blank"
-href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=netvibes&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
- class="addthis_button_netvibes share-services at300b"><span
-class="at300bs at15t_netvibes"></span>netvibes</a>
- <a title="Send to Delicious" target="_blank"
-href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=delicious&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
- class="addthis_button_delicious share-services at300b"><span
-class="at300bs at15t_delicious"></span>delicious</a>
- </span>
- <a style="background:
-url("/sites/all/themes/franceculture/images/share-more.png")
-no-repeat scroll 100% 4px transparent;" href="#" title="plus d'actions
-de partage" class="share-more">partager</a>
- <div class="atclear"></div></div>
- <script type="text/javascript" src="emission_fichiers/addthis_widget.js"></script>
- </div>
-
-
- <div class="clear"></div>
- </div> <!-- /content-inner -->
-
-
- </div> <!-- /content -->
-
- <!-- début de sidebar-right -->
- <div id="sidebar-right"><a name="acces-right"></a><a
-href="#top" class="back-to-top">retour en haut de page</a>
- <div id="block-fc_bloc_direct-direct" class="block
-block-fc_bloc_direct block-ecoute">
- <div class="block-inner">
- <h2 class="titre-barre"><span>Ecoutez France Culture</span></h2>
- <div class="content"><div class="context">
- <a href="http://www.franceculture.com/player" title="écouter le direct"
- class="rf-player-open img-float rf-player-open-processed">
- <img src="emission_fichiers/direct.png" alt="écouter le direct"
-height="72" width="72">
- </a>
- <h3>
- <span class="timer"><a href="http://www.franceculture.com/player"
-class="rf-player-open rf-player-open-processed">En direct</a></span>
- <a class="rf-player-open rf-player-open-processed"
-href="http://www.franceculture.com/player" title="écouter le direct">Sur
- France Culture</a>
- <a class="rf-player-open rf-player-open-processed"
-href="http://www.franceculture.com/player" title="écouter le direct"></a>
- </h3>
- <p></p>
- <div class="clear"></div>
-</div>
-<p>
- <span class="timer"></span>
-
-</p>
-<p class="auteur">
-
-</p>
-</div>
- </div>
-</div><div id="block-fcbloc-emission-equipe" class="block block-fcbloc">
- <div class="block-inner">
- <h2 class="title"><span>L'équipe</span></h2>
-
- <div class="block-content">
- <div class="item-list"><ul><li class="first">
- <h3>Production</h3>
- <p><a
-href="http://www.franceculture.com/personne-caroline-brou%C3%A9.html">Caroline
- Broué</a>, <a
-href="http://www.franceculture.com/personne-herve-gardette.html">Hervé
-Gardette</a></p>
- </li>
-<li>
- <h3>Réalisation</h3>
- <p>Jean-Christophe Francis</p>
- </li>
-<li>
- <h3>Collaboratrice(s) Spécialisée(s)</h3>
- <p>Soline Ledésert</p>
- </li>
-<li class="last">
- <h3>Chronique(s)</h3>
- <p><a
-href="http://www.franceculture.com/personne-anthony-bellanger.html">Anthony
- Bellanger</a></p>
- </li>
-</ul></div> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-<div id="block-fcbloc-publicite" class="block block-fcbloc">
- <div class="block-inner">
-
- <div class="block-content">
- <p class="pub-notice">publicité</p><div class="pub-inner"><script language="JavaScript">
-<!--
-OAS_AD("Middle");
-//-->
-</script> </div> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-<div id="block-fcbloc-sur-le-meme-theme" class="block block-fcbloc">
- <div class="block-inner">
- <h2 class="title"><span>Sur le même thème</span></h2>
-
- <div class="block-content">
- <div class="view view-commun-fo-blocs-full-node
-view-id-commun_fo_blocs_full_node view-display-id-page_1 view-dom-id-12">
-
-
-
- <div class="view-content">
- <ul>
- <li class="first odd">
-
-
-
- <a
-href="http://www.franceculture.com/culture-ac-seminaire-d%E2%80%99antoine-compagnon-ecrire-la-vie-26.html">Écrire
- la vie (2/6)</a>
-
-
- <span class="date">
-
-
- <div class="clear"></div>
-00:00
-
- </span>
-
- </li>
- <li class="even">
-
-
-
- <a
-href="http://www.franceculture.com/emission-dossier-du-jour-conference-des-donateurs-a-kaboul-2010-07-20.html">Conférence
- des donateurs Ă Kaboul</a>
-
-
- <p>
-
-
- <a
-href="http://www.franceculture.com/emission-dossier-du-jour.html">
-Dossier du jour </a>
- </p>
-
-
- <span class="date">
-
-
- <div class="clear"></div>
-À écouter le 19.07.2010
-
- </span>
-
-
- <span>
-
-
- <span class="timer"><span class="date-display-single">4</span>
-min.</span>
- </span>
-
- </li>
- <li class="last odd">
-
-
-
- <a
-href="http://www.franceculture.com/emission-place-de-la-toile-lift-marseille-2010-07-24.html">Lift
- Marseille</a>
-
-
- <p>
-
-
- <a
-href="http://www.franceculture.com/emission-place-de-la-toile.html">Place
- de la toile</a>
- </p>
-
-
- <span class="date">
-
-
- <div class="clear"></div>
-À écouter le 16.07.2010
-
- </span>
-
-
- <span>
-
-
- <span class="timer"><span class="date-display-single">59</span>
-min.</span>
- </span>
-
- </li>
- </ul>
- </div>
-
-
-
-
-
-
-</div> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-<div id="block-views-diffusion_fo_blocs-block_1" class="block
-block-views">
- <div class="block-inner">
- <h2 class="title"><span>Dernières diffusions</span></h2>
-
- <div class="block-content">
- <div class="view view-diffusion-fo-blocs view-id-diffusion_fo_blocs
-view-display-id-block_1 view-dom-id-13">
-
-
-
- <div class="view-content">
- <div class="item-list">
- <ul>
- <li class="views-row views-row-1 views-row-odd
-views-row-first">
- <div class="views-field-title-1">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-les-retours-du-dimanche-best-of-12-2010-07-18.html">LES
- RETOURS DU DIMANCHE - Best of 1/2</a></span>
- </div>
-
- <div class="views-field-field-contenu-value">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-les-retours-du-dimanche-best-of-12-2010-07-18.html"
- title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
-alt="Écouter l'émission" title="Écouter l'émission" class="pictos
-rollover" height="15" width="15"></a><a title="[Popup]"
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- class="popups-form-reload popups-processed"><img
-src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
- title="Ajouter Ă ma liste de lecture" class="pictos rollover"
-height="15" width="15"></a><a
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
- src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
-mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
-rollover" height="15" width="15"></a></span>
- </div>
-
- <span class="views-field-field-diffusion-date-debut-fin-value">
- <span class="field-content"><span
-class="date-display-single">18.07.2010</span></span>
- </span>
-
- <span class="views-field-field-diffusion-date-debut-fin-value-1">
- <span class="field-content"><span class="timer"><span
-class="date-display-single">49</span> min.</span></span>
- </span>
-</li>
- <li class="views-row views-row-2 views-row-even">
- <div class="views-field-title-1">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-medias-et-democratie-quel-est-le-role-du-journaliste-le-declin-du-m">Médias
- et démocratie: quel est le rôle du journaliste ? ; le déclin du
-ministère des affaires étrangères ; les Roms</a></span>
- </div>
-
- <div class="views-field-field-contenu-value">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-medias-et-democratie-quel-est-le-role-du-journaliste-le-declin-du-m"
- title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
-alt="Écouter l'émission" title="Écouter l'émission" class="pictos
-rollover" height="15" width="15"></a><a title="[Popup]"
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- class="popups-form-reload popups-processed"><img
-src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
- title="Ajouter Ă ma liste de lecture" class="pictos rollover"
-height="15" width="15"></a><a
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
- src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
-mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
-rollover" height="15" width="15"></a></span>
- </div>
-
- <span class="views-field-field-diffusion-date-debut-fin-value">
- <span class="field-content"><span
-class="date-display-single">11.07.2010</span></span>
- </span>
-
- <span class="views-field-field-diffusion-date-debut-fin-value-1">
- <span class="field-content"><span class="timer"><span
-class="date-display-single">50</span> min.</span></span>
- </span>
-</li>
- <li class="views-row views-row-3 views-row-odd views-row-last">
-
- <div class="views-field-title-1">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-qu-est-ce-qu-une-decouverte-scientifique-l-avenir-d-eric-woerth-au-">Qu'est-ce
- qu'une découverte scientifique ? ; l'avenir d'Eric Woerth au
-gouvernement ; hommage Ă Laurent Terzieff ; Percy Kemp</a></span>
- </div>
-
- <div class="views-field-field-contenu-value">
- <span class="field-content"><a
-href="http://www.franceculture.com/emission-les-retours-du-dimanche-qu-est-ce-qu-une-decouverte-scientifique-l-avenir-d-eric-woerth-au-"
- title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
-alt="Écouter l'émission" title="Écouter l'émission" class="pictos
-rollover" height="15" width="15"></a><a title="[Popup]"
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- class="popups-form-reload popups-processed"><img
-src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
- title="Ajouter Ă ma liste de lecture" class="pictos rollover"
-height="15" width="15"></a><a
-href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
- title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
- src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
-mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
-rollover" height="15" width="15"></a></span>
- </div>
-
- <span class="views-field-field-diffusion-date-debut-fin-value">
- <span class="field-content"><span
-class="date-display-single">04.07.2010</span></span>
- </span>
-
- <span class="views-field-field-diffusion-date-debut-fin-value-1">
- <span class="field-content"><span class="timer"><span
-class="date-display-single">50</span> min.</span></span>
- </span>
-</li>
- </ul>
-</div> </div>
-
-
-
-
-
-
-</div> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
-
- </div> <!-- /sidebar-right -->
-
- <div class="clear"></div>
- </div> <!-- /main -->
-
- <!-- début du footer -->
- <div id="footer-top"><a name="acces-footer"></a><a href="#top"
-class="back-to-top">retour en haut de page</a>
-
- <br class="clear">
-<div id="pub-bottom-right">
- <div id="block-fcbloc-footer-adsense" class="block
-block-fcbloc">
- <div class="block-inner">
-
- <div class="block-content">
-
- <script language="JavaScript">
- <!--
- OAS_AD("BottomRight");
- //-->
- </script> </div>
-
- <div class="closure"></div>
- </div>
-</div> <!-- /block -->
- </div>
- </div> <!-- /footer -->
-
- </div> <!-- /page-inner -->
-</div> <!-- /page -->
- <div id="footer-commun" class="header-footer footer-franceculture"><div
- class="content-header-footer"><div id="footer-chaine"><div
-id="colonne-liens-footer" class="colonne-footer colonne-footer-first"><a
- href="http://www.franceculture.com/"><img
-src="emission_fichiers/franceculture.png" alt="logo de franceculture"></a><p><a
- href="http://www.franceculture.com/sitemap">plan du site</a></p><p><a
-href="http://www.franceculture.com/a_propos">Ă propos</a></p><p><a
-href="http://www.franceculture.com/contact">contact</a></p></div><!--fin de div colonne-liens-footer--><div
- id="colonne-ecouter-footer" class="colonne-footer"><h4>écouter</h4><ul><li
- class="color-chaine "><a href="http://www.franceculture.com/player"
-class="rf-player-open rf-player-open-processed">direct</a></li><li><a
-href="http://www.franceculture.com/programmes">grille</a></li><li><a
-href="http://www.franceculture.com/frequences">fréquences</a></li><li><a
- href="http://www.franceculture.com/podcasts">podcasts</a></li><li><a
-href="http://www.radiofrance.fr/boite-a-outils/widget/">applis</a></li><li><a
- href="http://www.radiofrance.fr/boite-a-outils/faq/">aide à l'écoute</a></li></ul></div><!--fin de div colonne-thematique-footer--><div
- id="colonne-thematique-footer" class="colonne-footer"><h4>thématiques</h4><ul><li><a
- href="http://www.franceculture.com/rubrique/information">information</a>
- - <span>économie, justice, politique française, relations
-internationales</span></li><li><a
-href="http://www.franceculture.com/rubrique/litterature">littérature</a>
- - <span>édition, poésie, prix littéraires, roman, théâtre</span></li><li><a
- href="http://www.franceculture.com/rubrique/idees">idées</a> - <span>débats,
- philosophie, sociologie</span></li><li><a
-href="http://www.franceculture.com/rubrique/arts-spectacles">arts &
-spectacles</a> - <span>architecture, cinéma, danse, musique, spectacle,
-télévision</span></li><li><a
-href="http://www.franceculture.com/rubrique/histoire">histoire</a> - <span>histoire
- de l'art, histoire de France, histoire des idées, histoire des sciences</span></li><li><a
- href="http://www.franceculture.com/rubrique/sciences">sciences</a> - <span>astronomie,
- biologie, mathématiques, physique</span></li><li><a
-href="http://www.franceculture.com/quelisentils">que lisent-ils</a> - <a
- href="http://www.franceculture.com/votre-agenda">votre agenda culturel</a>
- - <a href="http://www.franceculture.com/culture-academie">culture
-académie</a> - <a href="http://www.franceculture.com/blogs">les blogs</a></li></ul></div><!--fin de div colonne-partager-footer--><div
- id="colonne-partager-footer" class="colonne-footer colonne-footer-last"><div
- id="liens-partage-footer"><h4>nous rejoindre</h4><ul><li
-id="facebook-footer"><a
-href="http://www.facebook.com/pages/FRANCE-CULTURE/83625483348?ref=ts"
-class="gris">facebook</a></li><li id="twitter-footer"><a
-href="http://www.twitter.com/france_culture" class="gris">twitter</a></li><li
- id="dailymotion-footer"><a
-href="http://www.dailymotion.com/franceculture" class="gris">dailymotion</a></li><li
- class="clearer"> </li></ul></div><!--fin de bloc 1--><div><h4>s'abonner</h4><span><a
- href="http://www.franceculture.com/podcasts" class="gris">podcasts</a></span>
- - <span><a href="http://www.franceculture.com/la-lettre"
-class="color-chaine">newsletter</a></span></div></div><!--fin de div colonne-partager-footer--><div
- class="clearer"> </div></div><div id="sous-footer"><div
-id="footer-rf"><ul><li class="first"><a
-href="http://www.radiofrance.fr/">radiofrance.fr</a></li><li><a
-href="http://www.radiofrance.fr/les-blogs/blog-du-mediateur/">médiateur</a></li><li><a
- href="http://www.radiofrance.fr/liens-bas-de-page/mentionslegales/">mentions
- légales</a></li><li class="last"><a
-href="http://www.radiofrance.fr/boite-a-outils/frequences/">fréquences</a></li><li
- class="last-page"><span class="haut-de-page"><a href="#top-page-ancre"
-id="top-page" class="gris">haut de page</a></span></li></ul><p>Radio
-France décline toute responsabilité quant au contenu des sites proposés
-en liens</p></div><!--fin de div footer-rf--></div></div></div> <script type="text/javascript">
-<!--//--><![CDATA[//><!--
-$.post(Drupal.settings.basePath + 'jstats.php', {"path":"node\/2347301","nid":"2347301"});
-//--><!]]>
-</script>
-<!-- eStat -->
-<script language="JavaScript">
-<!--
-var _PJS=0;
-//-->
-</script>
-<script language="JavaScript" src="emission_fichiers/265074200838.js"></script>
-<script language="JavaScript">
-<!--
-if(_PJS)
-{
- eStat_id.cmclient("franceculture");
- eStat_id.niveau(1,"information");
- eStat_id.niveau(2,"les-retours-du-dimanche");
- eStat_id.niveau(3,"le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20");
- eStat_id.niveau(4,"histoire-gouvernement-debat");
- eStat_tag.post("ml");
-}
-//-->
-</script>
-<noscript>
-<img src="http://stat3.cybermonitor.com/franceculture_v?c=information&p=les-retours-du-dimanche&l3=le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20&l4=histoire-gouvernement-debatst=0&sjs=0" border="0" width="1" height="1" />
-</noscript>
-<!-- /eStat -->
-<!-- xiti -->
-<script type="text/javascript">
-<!--
-xtnv = document; //parent.document or top.document or document
-xtsd = "http://logp";
-xtsite = "24121";
-xtn2 = "3"; // level 2 site
-xtpage ="Emissions::les-retours-du-dimanche::le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20"; //page name
-xtdi = ""; //implication degree
-//-->
-</script>
-
-<script type="text/javascript" src="emission_fichiers/xtcore.js"></script>
-
-<noscript>
-<img width="1" height="1" alt="" src="http://logp.xiti.com/hit.xiti?s=24121&s2=3&p=Emissions::les-retours-du-dimanche::le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20&di=&" >
-</noscript>
-<!-- /xiti -->
-</body><div style="display: none; width: 24px;" id="diigotb-imagepanel"><div
- class="diigotb-btn enabled" title="Save this image to Diigo"
-id="diigotb-quick-save"></div></div><div style="display: none;"
-class="diigotb-border diigotb-left"></div><div style="display: none;"
-class="diigotb-border diigotb-top"></div><div style="display: none;"
-class="diigotb-border diigotb-right"></div><div style="display: none;"
-class="diigotb-border diigotb-bottom"></div></html>
\ No newline at end of file
+<!-- END ################ ###################################### -->
+ </body>
+ </html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/player/test/indexFC.htm Tue Sep 14 13:15:28 2010 +0200
@@ -0,0 +1,1974 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html class="js" dir="ltr" xml:lang="fr"
+xmlns="http://www.w3.org/1999/xhtml" lang="fr"><head><link media="all"
+href="emission_fichiers/widget40.css" type="text/css" rel="stylesheet">
+
+
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<script type="text/javascript" src="emission_fichiers/swfobject.txt"></script>
+<meta name="afs:suggest/onload" content="onSuggestLoad()">
+<link rel="shortcut icon"
+href="http://www.franceculture.com/sites/default/files/franceculture_favicon.png"
+ type="image/x-icon">
+<link rel="alternate" type="application/rss+xml" title="Les Retours du
+dimanche " href="http://www.franceculture.com/emission/1232581/rss">
+ <title>Le salaire de la politique ; les vuvuzelas ; l'actualité
+politique belge - Information - France Culture</title>
+ <link type="text/css" rel="stylesheet" media="all"
+href="emission_fichiers/css_e94d821d2c09c140834405452127e5ae.css">
+<link type="text/css" rel="stylesheet" media="screen"
+href="emission_fichiers/css_bf9cf64d750be06f6006828a2bed7b98.css">
+<link type="text/css" rel="stylesheet" media="print"
+href="emission_fichiers/css_8af77a07a1f960afe4e4736580827c7c.css">
+<!--[if lte IE 7]>
+<link type="text/css" rel="stylesheet" media="all" href="/sites/all/themes/franceculture/ie.css?y" />
+<link type="text/css" rel="stylesheet" media="all" href="/sites/all/themes/franceculture/footer2.css?y" />
+<![endif]-->
+ <script type="text/javascript" src="emission_fichiers/jquery_005.js"></script>
+<script type="text/javascript" src="emission_fichiers/drupal.js"></script>
+<script type="text/javascript" src="emission_fichiers/fr_4fb8f115d8d263374d07dafa1b2a40b5.js"></script>
+<script type="text/javascript" src="emission_fichiers/fc_widget_twitter.js"></script>
+<script type="text/javascript" src="emission_fichiers/youtube.js"></script>
+<script type="text/javascript" src="emission_fichiers/fivestar.js"></script>
+<script type="text/javascript" src="emission_fichiers/high.js"></script>
+<script type="text/javascript" src="emission_fichiers/fc_antidot_recherche.js"></script>
+<script type="text/javascript" src="emission_fichiers/panels.js"></script>
+<script type="text/javascript" src="emission_fichiers/popups_002.js"></script>
+<script type="text/javascript" src="emission_fichiers/popups.js"></script>
+<script type="text/javascript" src="emission_fichiers/tableheader.js"></script>
+<script type="text/javascript" src="emission_fichiers/comment.js"></script>
+<script type="text/javascript" src="emission_fichiers/textarea.js"></script>
+<script type="text/javascript" src="emission_fichiers/fc_bloc_direct.js"></script>
+<script type="text/javascript" src="emission_fichiers/ajax-responder.js"></script>
+<script type="text/javascript" src="emission_fichiers/jquery_006.js"></script>
+<script type="text/javascript" src="emission_fichiers/rf_player.js"></script>
+<script type="text/javascript" src="emission_fichiers/rollover.js"></script>
+<script type="text/javascript" src="emission_fichiers/jquery_002.js"></script>
+<script type="text/javascript" src="emission_fichiers/jquery_003.js"></script>
+<script type="text/javascript" src="emission_fichiers/jquery.js"></script>
+<script type="text/javascript" src="emission_fichiers/footer.js"></script>
+<script type="text/javascript" src="emission_fichiers/jquery_004.js"></script>
+<script type="text/javascript" src="emission_fichiers/script.js"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/","fivestar":{"titleUser":"Your rating: ","titleAverage":"Average: ","feedbackSavingVote":"Saving your vote...","feedbackVoteSaved":"Your vote has been saved.","feedbackDeletingVote":"Deleting your vote...","feedbackVoteDeleted":"Your vote has been deleted."},"adresseProxy":"http:\/\/www.franceculture.com\/proxy","popups":{"originalPath":"node\/2347301","defaultTargetSelector":"#main","modulePath":"sites\/all\/modules\/contrib\/popups","autoCloseFinalMessage":1},"fc_bloc_direct":{"interval":60000,"refresh_on_load":1}});
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+function quelisentils_redirect() {
+ location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/2169101#fc-quelisentils-comment-form';
+ location.reload(true);
+ return false;
+}
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+function quelisentils_redirect() {
+ location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/778481#fc-quelisentils-comment-form';
+ location.reload(true);
+ return false;
+}
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+function quelisentils_redirect() {
+ location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/1061061#fc-quelisentils-comment-form';
+ location.reload(true);
+ return false;
+}
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+function quelisentils_redirect() {
+ location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/437741#fc-quelisentils-comment-form';
+ location.reload(true);
+ return false;
+}
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+function quelisentils_redirect() {
+ location.href = Drupal.settings.basePath + 'quelisentils/oeuvre/2357521#fc-quelisentils-comment-form';
+ location.reload(true);
+ return false;
+}
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery(document).ready(function() {
+ $(".more-doc").text("voir les 5 documents").css("background" , 'url("/sites/all/themes/franceculture/images/urg-down.png") no-repeat 100% 4px');
+ $(".rel-doc .more-liste").hide();
+
+$(".more-doc").toggle(
+function(){
+$(".rel-doc .more-liste").show("slow");
+$(this).text("n'afficher que les 3 premiers").css("background" , 'url("/sites/all/themes/franceculture/images/urg-up.png") no-repeat 100% 4px');
+},
+function(){
+$(".rel-doc .more-liste").hide("slow");
+$(this).text("voir les 5 documents").css("background" , 'url("/sites/all/themes/franceculture/images/urg-down.png") no-repeat 100% 4px');
+});
+});
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+ $(document).ready(function(){
+ $('#cb-left').addClass('script-vertical');
+ $('#script-scroll').addClass('script');
+ $('#share').addClass('share-script');
+ $('.share-more').css('background' , 'url("/sites/all/themes/franceculture/images/share-more.png") no-repeat 100% 4px');
+
+ $('.share-more').toggle(
+ function(){
+ $('.share-script .more-services').addClass('active');
+ $(this).css('background' , 'url("/sites/all/themes/franceculture/images/share-less.png") no-repeat 100% 4px');
+ },
+ function(){
+ $('.share-script .more-services').removeClass('active');
+ $(this).css('background' , 'url("/sites/all/themes/franceculture/images/share-more.png") no-repeat 100% 4px');
+ }
+ );
+ $('span.more-services a.addthis_button_facebook').click(function() {
+ window.open(this.href, 'facebook-share', 'resizable=no,with=500,height=315');
+ return false;
+ });
+ });
+//--><!]]>
+</script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+
+ $.fn.cleartextonfocus = function() {
+ return this.focus(function() {
+ if(this.value == this.defaultValue) {
+ this.value = '';
+ }
+ }).blur(function() {
+ if(!this.value.length) {
+ this.value = this.defaultValue;
+ }
+ });
+ };
+
+ $(document).ready(function(){
+ $('textarea.clearonfocus').cleartextonfocus();
+ });
+
+//--><!]]>
+</script>
+ <!--[if lte IE 7]><script type="text/javascript" src="/sites/all/themes/franceculture/ie.js?y"></script><![endif]--><script language="JavaScript">
+<!--
+//configuration
+OAS_url ='http://pub.ftv-publicite.fr/RealMedia/ads/';
+OAS_listpos = 'Middle,x02,BottomRight';
+OAS_query = '?';
+OAS_sitepage = 'www.radiofrance.fr/franceculture/les-retours-du-dimanche';
+//end of configuration
+OAS_version = 10;
+OAS_rn = '001234567890'; OAS_rns = '1234567890';
+OAS_rn = new String (Math.random()); OAS_rns = OAS_rn.substring (2, 11);
+function OAS_NORMAL(pos) {
+ document.write("<a href='" + OAS_url + "click_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + OAS_query + "' target=_top>");
+ document.write("<img src='" + OAS_url + "adstream_nx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + "!" + pos + OAS_query + "' border=0 alt='Click!'></a>");
+}
+//-->
+</script>
+<script language="JavaScript1.1">
+<!--
+OAS_version = 11;
+if (navigator.userAgent.indexOf('Mozilla/3') != -1)
+ OAS_version = 10;
+ if (OAS_version >= 11)
+ document.write("<sc"+"ript language='JavaScript1.1' src='" + OAS_url + "adstream_mjx.ads/" + OAS_sitepage + "/1" + OAS_rns + "@" + OAS_listpos + OAS_query + "'><\/script>");
+//-->
+</script><script language="JavaScript1.1" src="emission_fichiers/1219830366Middlex02BottomRight.js"></script><script language="JavaScript">
+<!--
+document.write('');
+function OAS_AD(pos) {
+ if (OAS_version >= 11 && typeof(OAS_RICH!='undefined'))
+ OAS_RICH(pos);
+ else
+ OAS_NORMAL(pos);
+}
+//-->
+</script>
+<style type="text/css">/**
+ * Highlight style classes
+ * .a background color
+ * .b underline
+ * .c underline + font color
+ */
+
+@media screen{
+em.diigoHighlight {
+ text-align:inherit;
+ text-decoration: inherit;
+ line-height:inherit;
+ font:inherit;
+ color:inherit;
+ display:inline;
+ position:relative;
+}
+em.diigoHighlight.a.mouseOvered {
+ background-color: #ffc62a !important;
+}
+
+em.diigoHighlight.b.mouseOvered, em.diigoHighlight.c.mouseOvered {
+ border-bottom: solid 2px #ffc62a;
+}
+
+em.diigoHighlight.c {
+ color: #000099;
+}
+em.diigoHighlight.c.mouseOvered {
+ color: #ffc62a;
+}
+
+em.diigoHighlight.a.yellow {
+ background-color: #FF9;
+}
+
+em.diigoHighlight.b.yellow, em.diigoHighlight.c.yellow {
+ border-bottom: solid 2px #FF9;
+}
+
+img.diigoHighlight.yellow {/*image highlight*/
+ cursor: pointer;
+ outline:2px solid #FF9;
+}
+
+em.diigoHighlight.a.blue {
+ background-color: #ABD5FF;
+}
+
+em.diigoHighlight.b.blue, em.diigoHighlight.c.blue {
+ border-bottom: solid 2px #ABD5FF;
+}
+
+img.diigoHighlight.blue {/*image highlight*/
+ cursor: pointer;
+ outline:2px solid #ABD5FF;
+}
+
+
+em.diigoHighlight.a.green {
+ background-color: #B2E57E;
+}
+
+em.diigoHighlight.b.green, em.diigoHighlight.c.green {
+ border-bottom: solid 2px #B2E57E;
+}
+
+img.diigoHighlight.green {/*image highlight*/
+ cursor: pointer;
+ outline:2px solid #B2E57E;
+}
+
+
+em.diigoHighlight.a.pink {
+ background-color: #ffcccc;
+}
+
+em.diigoHighlight.b.pink, em.diigoHighlight.c.pink {
+ border-bottom: solid 2px #ffcccc;
+}
+
+img.diigoHighlight.pink {/*image highlight*/
+ cursor: pointer;
+ outline:2px solid #ffcccc;
+}
+
+img.diigoHighlight.mouseOvered {
+ cursor: pointer;
+ outline:2px solid #ffc62a;
+}
+
+
+div.diigotb-inline-cloud{
+ position:fixed !important;
+ width:440px !important;
+ height:370px !important;
+ left:0;top:0;
+ background-color:#fef5c7 !important;
+ z-index:9999999999 !important;
+ display:none;
+ -moz-border-radius:15px !important;
+}
+/* capture image */
+
+.diigotb-body #diigotb-upload-cover{
+ cursor:crosshair!important;
+ z-index:1999999!important;
+ position:fixed!important;
+ left:0!important;
+ top:31px;
+}
+
+.diigotb-body #diigotb-upload-tip{
+ color: #fff!important;
+ padding:2px 4px!important;
+ position:fixed!important;
+ z-index:11000001!important;
+}
+
+.diigotb-body #diigotb-upload-select{
+ position:fixed!important;
+ z-index:1000001;
+}
+
+.diigotb-body #diigotb-upload-resizer{
+ z-index:11000002!important;
+ position:fixed!important;
+ cursor:move!important;
+ border:1px dashed black!important;
+}
+
+.diigotb-body #currentColor{
+ background-color: #fff!important;
+ width: 37px!important;
+ height: 37px!important;
+ padding: 1px!important;
+ border: 1px solid #2e68e6!important;
+ float: left!important;
+ margin: 0 5px 0 0!important;
+}
+
+.diigotb-body #currentColor div{
+ width: 37px!important;
+ height: 37px!important;
+ margin:0!important;
+}
+.diigotb-body .selectPanel{
+ margin-top:5px!important;
+}
+
+.diigotb-body .colorCell{
+ float: left!important;
+ margin: 0 1px 1px 0!important;
+ border: 1px solid #5f92ff!important;
+ width: 18px!important;
+ height: 18px!important;
+}
+
+.diigotb-body .colorCell:hover{
+ border: 1px solid #FF9900!important;
+}
+.diigotb-body .colorCell.actived{
+ border: 1px solid #FF9900!important;
+}
+
+.diigotb-body .colorCell div{
+ width: 18px!important;
+ height: 18px!important;
+ cursor:pointer!important;
+ margin:0!important;
+}
+
+.diigotb-body .capture-black{background-color:#000!important;}
+.diigotb-body .capture-white{background-color:#fff!important;}
+.diigotb-body .capture-gray{background-color:#808080!important;}
+.diigotb-body .capture-light-gray{background-color:#c0c0c0!important;}
+
+.diigotb-body .capture-red{background-color:#ff0000!important;}
+.diigotb-body .capture-cyan{background-color:#00ffff!important;}
+.diigotb-body .capture-orange{background-color:#ff9900!important;}
+.diigotb-body .capture-blue{background-color:#0000ff!important;}
+
+.diigotb-body .capture-yellow{background-color:#ffff00!important;}
+.diigotb-body .capture-purple{background-color:#9900ff!important;}
+.diigotb-body .capture-green{background-color:#00ff00!important;}
+.diigotb-body .capture-pink{background-color:#ff00ff!important;}
+
+.diigotb-body #diigotb-colorpanel{
+ background:transparent url(chrome://diigotb/skin/ann-bar-palette-bg-left.png) no-repeat scroll left center!important;
+ display:block;
+ height:55px!important;
+ position:fixed!important;
+ width:180px!important;
+ z-index:11000022!important;
+ margin:0!important;
+}
+
+.diigotb-body .diigotb-cbg{
+ background:transparent url(chrome://diigotb/skin/ann-bar-palette-bg-right.png) no-repeat scroll right top!important;
+ height:55px!important;
+ line-height:55px!important;
+ padding-left:6px!important;
+ width:180px!important;
+ margin:0!important;
+}
+
+
+.diigotb-body #currentArrow{
+ background:transparent url(chrome://diigotb/skin/ann-bar-palette-arrow.png) no-repeat scroll 0 0!important;
+ height:6px!important;
+ left:0;
+ position:relative!important;
+ top:-5px;
+ width:7px!important;
+ margin:0!important;
+}
+
+.diigotb-body #currentArrow._istop{
+ background:transparent url(chrome://diigotb/skin/ann-bar-palette-arrow-down.png) no-repeat scroll 0 0!important;
+ top:51px!important;
+}
+
+
+.diigotb-body #diigotb-text-area{
+ position:fixed!important;
+ z-index:11000010!important;
+}
+
+.diigotb-body .diigotb-text-input{
+ font: 18px/22px Helvetica,Arial,sans-serif!important;
+ border:0px solid #5f92ff!important;
+ z-index:11000011!important;
+}
+
+.diigotb-body #diigotb-editpanel{
+ background:transparent url(chrome://diigotb/skin/ann-bar-bg-right.png) no-repeat scroll right center!important;
+ height:35px!important;
+ position: fixed!important;
+ z-index:11000022!important;
+ margin:0!important;
+}
+
+
+.diigotb-body .diigotb-btn div{
+ cursor:pointer!important;
+ width:18px!important;
+ height:18px!important;
+ margin:2px!important;
+}
+.diigotb-body .diigotb-btn{
+ width:23px!important;
+ height:23px!important;
+}
+
+
+.diigotb-body #diigotb-editpanel .diigotb-bg{
+ background:transparent url(chrome://diigotb/skin/ann-bar-bg-left.png) repeat-x scroll left center!important;
+ height:35px!important;
+ padding-left:6px!important;
+ line-height:35px!important;
+ margin:0!important;
+}
+
+
+.diigotb-body div.diigotb-tip{
+ -moz-border-radius:4px 4px 4px 4px;
+ background-color:#f1f2f7;
+ border:1px solid #767676;
+ color:black;
+ display:none;
+ -moz-box-shadow:5px 5px 5px -5px #767676;
+ font:12px Arial,Helvetica,sans-serif;
+ margin:0 !important;
+ padding:3px 6px !important;
+ position:absolute;
+ z-index:2147483647;
+}
+
+.diigotb-body #diigotb-editpanel div.diigotb-btn{
+ padding:0px!important;
+ display:inline-table!important;
+ margin-bottom:0 !important;
+ margin-left:0 !important;
+ margin-right:0 !important;
+ margin-top:5px;
+}
+
+
+.diigotb-body #diigotb-editpanel div.diigotb-sep img{
+ pading:0!important;
+ margin:0!important;
+}
+
+.diigotb-body #diigotb-editpanel div.diigotb-sep{
+ pading:4px 0!important;
+ display:inline-table!important;
+ margin:0!important;
+ line-height:0 !important;
+}
+
+.diigotb-body #diigotb-editpanel div.diigotb-btn.enabled:hover{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-current.png') no-repeat!important;
+}
+
+.diigotb-body #diigotb-editpanel #diigotb-undo.enabled div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-undo.png') no-repeat center center!important;
+}
+
+.diigotb-body #diigotb-editpanel div.diigotb-btn.actived{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-current.png') no-repeat!important;
+}
+
+.diigotb-image-border{
+ border:1px solid #666 !important;
+}
+
+#diigotb-imagepanel{
+ height:22px!important;
+ position: absolute!important;
+ z-index:11000022!important;
+ margin:0!important;
+}
+
+#diigotb-imagepanel .diigotb-btn{
+ cursor:pointer!important;
+ width:20px!important;
+ height:20px!important;
+ margin:2px!important;
+ float:left !important;
+ background:transparent url(chrome://diigotb/skin/save-image-action-icons.png) no-repeat scroll!important;
+}
+
+
+#diigotb-imagepanel #diigotb-quick-save{
+ background-position:0 0!important;
+}
+
+#diigotb-imagepanel.processing #diigotb-quick-save{
+ background-position:0 -20px!important;
+ cursor:default!important;
+}
+
+
+#diigotb-imagepanel.needpremium #diigotb-quick-save{
+ background-position:0 -20px!important;
+ cursor:default!important;
+}
+
+#diigotb-imagepanel.hassaved #diigotb-quick-save{
+ background-position: -60px 0!important;
+ cursor: pointer !important;
+}
+
+.diigotb-imagetip{
+ background:transparent url(chrome://diigotb/skin/notice-bar-bg-right.png) no-repeat scroll right center !important;
+ height:21px !important;
+ margin:0 !important;
+ position:absolute !important;
+ z-index:11000022 !important;
+ width:106px;
+}
+
+.diigotb-imagebg{
+ background:transparent url(chrome://diigotb/skin/notice-bar-bg-left.png) repeat-x scroll left center !important;
+ height:21px !important;
+ margin:0 !important;
+ padding-left:6px !important;
+ width:90px;
+}
+
+.diigotb-imagetip-text{
+ padding-left:20px!important;
+ font:11px/13px Helvetica,Arial,sans-serif!important;
+ color:white!important;
+ line-height:20px!important;
+ float:left;
+}
+
+.diigotb-imagetip.processing .diigotb-imagetip-text{
+ background:transparent url(chrome://diigotb/skin/processing-fb.gif) no-repeat scroll left center !important;
+}
+
+.diigotb-imagetip.hassaved .diigotb-imagetip-text{
+ background:transparent url(chrome://diigotb/skin/icon-done.png) no-repeat scroll left center !important;
+}
+
+.diigotb-border{
+ position: absolute!important;
+ z-index:11000000!important;
+ margin:0!important;
+ background-color: #4b8cdc!important;
+}
+.diigotb-left{
+ width:1px!important;
+}
+.diigotb-right{
+ width:1px!important;
+}
+.diigotb-top{
+ height:1px!important;
+}
+.diigotb-bottom{
+ height:1px!important;
+}
+
+.diigotb-body #diigotb-rect div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-rectangle.png') no-repeat center center!important;
+}
+.diigotb-body #diigotb-round div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-ellipse.png') no-repeat center center!important;
+}
+.diigotb-body #diigotb-text div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-font.png') no-repeat center center!important;
+}
+
+.diigotb-body #diigotb-arrow div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-arrow.png') no-repeat center center!important;
+}
+
+.diigotb-body .diigotb-sep{
+ background: transparent url('chrome://diigotb/skin/ann-bar-bg-separator.png') no-repeat center center!important;
+}
+
+.diigotb-body #diigotb-undo div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-undo-disabled.png') no-repeat center center!important;
+}
+
+.diigotb-body #diigotb-capture-save div{
+ background: transparent url('chrome://diigotb/skin/ann-bar-opt-quickly-save.png') no-repeat center center!important;
+}
+
+
+
+.diigotb-body #diigotb-upload-resizer div {
+ position: absolute!important;
+ width: 9px!important;
+ height: 9px!important;
+ /*background-color: white;*/
+ z-index:11000002!important;
+ margin:0px!important;
+ background:transparent url(chrome://diigotb/skin/spot.png) no-repeat scroll left center!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.gleft {
+ left: -9px!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.gtop {
+ top: -9px!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.gright {
+ right: -9px!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.gbottom {
+ bottom: -9px!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.ghor {
+ margin-left: auto!important;
+ margin-right: auto!important;
+ left: 0px!important;
+ right: 0px!important;
+}
+
+.diigotb-body #diigotb-upload-resizer div.gver {
+ margin-top: auto!important;
+ margin-bottom: auto!important;
+ top: 0px!important;
+ bottom: 0px!important;
+}
+
+.diigotb-body{
+ padding-top: 31px!important;
+}
+
+.diigotb-body #diigotb-topbar{
+ background: url(chrome://diigotb/skin/topbar-bg.png) left top repeat-x!important;
+ border-bottom: 1px solid #999!important;
+ color: #555!important;
+ font: 12px/18px Helvetica,Arial,sans-serif!important;
+ height: 30px!important;
+ line-height: 30px!important;
+ position: fixed!important;
+ left: 0!important;
+ top: 0!important;
+ text-align:center!important;
+ z-index:1999999!important;
+}
+
+.diigotb-body #diigotb-msg img{
+ margin:0 5px 0 0!important;
+ vertical-align: middle!important;
+}
+
+.diigotb-body #diigotb-msg{
+ color:#333!important;
+}
+
+.diigotb-body #diigotb-msg a{
+ color: #0044cc!important;
+ text-decoration: none!important;
+}
+
+.diigotb-body #diigotb-msg a:hover{
+ text-decoration: underline!important;
+}
+
+.diigotb-body #diigotb-escLink{
+ display: block!important;
+ float: right!important;
+ margin: 5px 5px 0 0!important;
+ text-decoration: none!important;
+ width: 50px!important;
+ cursor:pointer!important;
+}
+
+.diigotb-body #diigotb-escLink:hover{
+ text-decoration: underline!important;
+}
+
+.diigotb-body #diigotb-escLink span{
+ background: url(chrome://diigotb/skin/esc-right.png) right top no-repeat!important;
+ display: block!important;
+ padding-right: 9px!important;
+}
+
+.diigotb-body #diigotb-escLink span strong{
+ background: url(chrome://diigotb/skin/esc-left.png) left top no-repeat!important;
+ display: block!important;
+ color: #fff!important;
+ font-weight: 700!important;
+ line-height: 20px!important;
+ text-indent:7px!important;
+}
+
+
+
+/*highlight label*/
+.diigoHighlight .diigoHighlightLabel sup {
+ font:normal normal normal 8px/8px "lucida grande",tahoma,verdana,arial,sans-serif;
+ text-decoration:none;
+ background-color:inherit;
+ cursor:default;
+}
+
+body.diigoHiPen.yellow{
+ cursor:url(chrome://diigotb/skin/highlighter-orange.cur), text !important
+}
+
+body.diigoHiPen.blue{
+ cursor:url(chrome://diigotb/skin/highlighter-blue.cur), text !important
+}
+
+body.diigoHiPen.green{
+ cursor:url(chrome://diigotb/skin/highlighter-green.cur), text !important
+}
+
+body.diigoHiPen.pink{
+ cursor:url(chrome://diigotb/skin/highlighter-pink.cur), text !important
+}
+em.diigoHighlight.type_0.commented {
+ padding-left:30px;
+}
+
+/*float note*/
+div.diigoHighlight.type_2 {
+ position:absolute;
+ width:29px;
+ height:36px;
+ text-align:center;
+ background:transparent url('chrome://diigotb/skin/float_icon.png') no-repeat 50% 50%;
+ z-index:9996;
+}
+div.diigoHighlight.type_2.mouseOvered {
+ position:absolute;
+ width:37px;
+ height:31px;
+ text-align:center;
+ background:transparent url('chrome://diigotb/skin/float_icon.png') no-repeat;
+ z-index:9996;
+}
+div.diigoHighlight.type_2 span {
+ color:#000;
+ font:bold 13px Arial, Helvetica, sans-serif;
+ cursor: default;
+ line-height: 37px;
+ text-shadow: #fff 0 1px 0;
+}
+/*
+* html div.diigoHighlight.type_2{
+ filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale, src="http://www.diigo.com/javascripts/webtoolbar/images/float_icon.png");
+ overflow:hidden;
+ background:none;
+}
+*/
+
+
+div.diigoIcon.commented.TextIcon.diigoEdit{
+ background-repeat:no-repeat !important;
+ background-position:right !important;
+}
+
+
+div.diigoIcon.commented.ImageIcon.diigoEdit{
+ background-repeat:no-repeat !important;
+ background-position:right !important;
+}
+
+
+/*mouse over effect*/
+/*
+.diigoHighlight.id_190e5778b533dc0fa1b1660653a4f6f5 {outline: 2px dotted green !important;}
+*/
+div.diigoIcon{
+ cursor:pointer !important;
+ margin: 0pt;
+ padding: 0px 0px 0px 0px;
+ position: absolute;
+ display:none;
+ width: 24px !important;
+ z-index:999999;
+ height: 23px !important;
+ background: transparent url('chrome://diigotb/skin/edit-highlight.png') no-repeat left;
+}
+
+div.diigoIcon span{
+ color:#000000;
+ display:block;
+ font-family:Helvetica,Arial,sans-serif;
+ font-size:13px;
+ font-weight:700;
+ line-height:18px;
+ text-align:center;
+ text-shadow:0 1px 1px #FFFFFF;
+}
+
+div.diigoIcon.commented.ImageIcon{
+ display:block !important;
+ background-color: transparent !important;
+}
+
+div.diigoIcon:hover{
+ background-background: transparent !important;
+ background-repeat:no-repeat !important;
+ background-position:right !important;
+}
+
+div.diigoIcon.commented.TextIcon{
+ display:block !important;
+ left:0;
+ bottom:0;
+}
+
+div.diigoIcon.commented.public{
+ background: #FFFFFF url('chrome://diigotb/skin/public-annotation.png') no-repeat left;
+}
+
+div.diigoIcon.commented.private{
+ background: #FFFFFF url('chrome://diigotb/skin/private-annotation.png') no-repeat left;
+}
+
+div.diigoIcon.commented.group{
+ background: #FFFFFF url('chrome://diigotb/skin/group-annotation.png') no-repeat left;
+}
+
+/*Clip video*/
+div.diigoClipVideo{
+ float:left;
+ height:16px;
+ padding:0 16px 0 6px;
+ background:#f5f5f5 url(chrome://diigotb/skin/toolbar-clip-bg.gif) no-repeat right 0;
+ border:1px solid #ccc;
+ border-bottom-width:0;
+ font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
+ z-index:999;
+ position:absolute;
+}
+
+div.diigoClipVideo.clipped {
+ background-position: right -32px; left: 717px; top: 135px;
+}
+
+ div.diigoClipVideo span{
+ font-weight:bold;
+ font-size:10px;
+ line-height:16px;
+ text-decoration:underline;
+ color:#03f;
+ cursor:pointer;
+ margin-right:6px
+ }
+ div.diigoClipVideo span:hover,div.diigoClipVideo span:active{
+ color:#00f
+ }
+ /*.diigolet input{
+ font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
+ font-size:9px;
+ }*/
+
+/*-----------notice msg--------------*/
+.diigotb-notice-img {
+ float:left!important;
+ height:16px!important;
+ width:16px!important;
+ margin-top:6px!important;
+ margin-right:3px!important;
+}
+.success .diigotb-notice-img{
+ background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll 0 0 transparent!important;
+}
+.failed .diigotb-notice-img{
+ background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -16px 0 transparent!important;
+}
+.info .diigotb-notice-img{
+ background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -32px 0 transparent!important;
+}
+.process .diigotb-notice-img{
+ background:url("chrome://diigotb/skin/processing.gif") no-repeat scroll left 0 transparent!important;
+}
+
+.diigotb-notice-msg-rt {
+ background:url("chrome://diigotb/skin/notice-bar-2-bg-left.png") no-repeat scroll left bottom transparent!important;
+ line-height:28px!important;
+ padding-left:10px!important;
+ height:30px!important;
+}
+.failed .diigotb-notice-msg-rt {
+ background:url("chrome://diigotb/skin/notice-bar-2-bg-left.png") no-repeat scroll left top transparent!important;
+}
+
+.diigotb-notice-close{
+ float:right!important;
+ height:16px!important;
+ width:16px!important;
+ margin-left:20px!important;
+ margin-top:6px!important;
+ cursor:pointer;
+ background:url("chrome://diigotb/skin/notice-icons.png") no-repeat scroll -48px 0 transparent!important;
+}
+
+.diigotb-notice-close:hover{
+ background-position: -63px 0!important;
+}
+
+.diigotb-notice-msg {
+ background:url("chrome://diigotb/skin/notice-bar-2-bg-right.png") no-repeat scroll right bottom transparent!important;
+ float:right!important;
+ height:30px!important;
+ padding:0 11px 0 0!important;
+ border: none!important;
+ margin:0!important;
+ position:fixed!important;
+ font:12px/14px Helvetica,Arial,sans-serif!important;
+ z-index:100000!important;
+}
+.diigotb-notice-msg a {
+ color:#0044cc!important;
+ text-decoration:underline!important;
+}
+
+.failed.diigotb-notice-msg {
+ background:url("chrome://diigotb/skin/notice-bar-2-bg-right.png") no-repeat scroll right top transparent!important;
+}
+
+}
+
+
+@media print{
+em.diigoHighlight.a, em.diigoHighlight.b, em.diigoHighlight.c {
+ border-bottom:0.5pt dashed Black;
+}
+
+
+/*image highlight*/
+/*no inline comments*/
+img.diigoHighlight {
+ border:0.5pt dashed Black
+}
+
+/*float note*/
+div.diigoHighlight.type_2 {
+ display:none
+}
+div.diigoHighlight.type_2 span {
+ display:none
+}
+}</style><style id="diigo-activeHighlight" type="text/css">dummyRuleForDigg{}</style></head><body
+ class="not-front not-logged-in node-type-rf-diffusion one-sidebar
+sidebar-right emissions page-node-2347301
+section-emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg
+ popups-processed tableHeader-processed"><div id="_atssh"
+style="visibility: hidden; height: 1px; width: 1px; position: absolute;
+z-index: 100000;"><iframe src="emission_fichiers/sh20.htm"
+style="height: 1px; width: 1px; position: absolute; z-index: 100000;
+border: 0pt none; left: 0pt; top: 0pt;" id="_atssh433"></iframe></div>
+ <div id="header-commun" class="header-footer content-header-footer"><div
+ id="header-content"><ul><li class="first-header"><a
+href="http://radiofrance.fr/" name="top-page-ancre">radiofrance.fr</a></li><li><a
+ href="http://www.franceinter.com/">france inter</a></li><li><a
+href="http://www.france-info.com/">france info</a></li><li><a
+href="http://www.francebleu.com/">france bleu</a></li><li><a
+href="http://www.franceculture.com/">france culture</a></li><li><a
+href="http://www.francemusique.com/">france musique</a></li><li><a
+href="http://fip-radio.com/">fip</a></li><li><a
+href="http://www.lemouv.com/">le mouv'</a></li><li class="last-header"><a
+ href="http://concerts.radiofrance.fr/">les orchestres</a></li></ul><div
+ class="clearer"> </div></div></div><div id="page">
+ <div id="page-inner">
+<!-- début du header -->
+ <div id="header">
+ <!-- début du menu d'accès rapide -->
+ <div id="acces-rapide"><a name="top"></a>
+ <a href="#acces-navigation-primaire"
+title="descriptif du lien">acces rapide a la navigation principale</a><br>
+ <a href="#acces-navigation-secondaire"
+title="descriptif du lien">acces rapide a la navigation secondaire</a><br>
+ <a href="#acces-contenu" title="descriptif du lien">acces
+ rapide au contenu</a><br>
+ <a href="#acces-right" title="descriptif du lien">acces
+ rapide au contenu de droite</a><br>
+ <a href="#acces-footer" title="descriptif du lien">acces
+ rapide au footer</a><br>
+ </div>
+ <a href="http://www.franceculture.com/" class="retour-home"><img
+ src="emission_fichiers/logo.png" alt="Accueil" height="106" width="106"></a>
+ <div id="block-simplenews-65" class="block block-simplenews">
+ <div class="block-inner">
+
+ <div class="block-content">
+ <p>Recevez la lettre d'information</p>
+
+ <form
+action="/emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg"
+ accept-charset="UTF-8" method="post" id="simplenews-block-form-65">
+<div><div class="form-item" id="edit-mail-1-wrapper">
+ <label for="edit-mail-1">E-mail : <span class="form-required"
+title="Ce champ est obligatoire.">*</span></label>
+ <input maxlength="128" name="mail" id="edit-mail-1" size="20"
+value="identifiant@mail.com" class="form-text required idleField"
+type="text">
+</div>
+<div class="form-radios"><div class="form-item"
+id="edit-action-subscribe-wrapper">
+ <label class="option" for="edit-action-subscribe"><input
+id="edit-action-subscribe" name="action" value="subscribe"
+checked="checked" class="form-radio" type="radio"> S'abonner</label>
+</div>
+<div class="form-item" id="edit-action-unsubscribe-wrapper">
+ <label class="option" for="edit-action-unsubscribe"><input
+id="edit-action-unsubscribe" name="action" value="unsubscribe"
+class="form-radio" type="radio"> Se désabonner</label>
+</div>
+</div><input name="submit" value="Enregistrer" id="edit-submit-1"
+class="form-submit submit" src="emission_fichiers/inscription.png"
+type="image">
+<input name="form_build_id" id="form-d495e634489f3be0bd7ebbe9bf42e037"
+value="form-d495e634489f3be0bd7ebbe9bf42e037" type="hidden">
+<input name="form_id" id="edit-simplenews-block-form-65"
+value="simplenews_block_form_65" type="hidden">
+
+</div></form>
+
+
+
+ </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+ <div class="search"><form
+action="/emission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg"
+ accept-charset="UTF-8" method="post" id="antidot-search-block-form-1">
+<div><div class="form-item" id="search_top_page-wrapper">
+ <label for="search_top_page">Cherchez sur France Culture : </label>
+ <input maxlength="128" name="antidot_search_block_form"
+id="search_top_page" size="15" title="Entrez les termes que vous voulez
+rechercher." autocomplete="off" class="form-text idleField" type="text">
+</div>
+<input name="op" id="edit-submit" value="Recherche" class="submit
+rollover" src="emission_fichiers/search-submit.png" alt="Rechercher"
+height="26" type="image" width="26"><input name="form_build_id"
+id="form-0fb0ec9e93007e0870ba7f8b130bd7f7"
+value="form-0fb0ec9e93007e0870ba7f8b130bd7f7" type="hidden">
+<input name="form_id" id="edit-antidot-search-block-form-1"
+value="antidot_search_block_form" type="hidden">
+
+</div></form>
+</div>
+ <!--block de navigation secondaire -->
+ <a name="acces-navigation-secondaire"></a><a href="#top"
+class="back-to-top">retour en haut de page</a>
+ <ul class="" id="menu-top"><li class="leaf first menu-top"><a
+ href="http://www.franceculture.com/quelisentils" title="" accesskey="b">Que
+ lisent-ils ?</a></li>
+<li class="leaf menu-top"><a
+href="http://www.franceculture.com/votre-agenda" title="" accesskey="b">Votre
+ agenda Culture</a></li>
+<li class="leaf menu-top"><a
+href="http://www.franceculture.com/culture-academie" title=""
+accesskey="b">Culture Académie</a></li>
+<li class="leaf menu-top login"><a
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ title="Connexion [Popup]" alt="Connexion" class="popups-form-reload
+popups-processed" accesskey="b">Connexion</a></li>
+<li class="leaf last menu-top register"><a
+href="http://www.franceculture.com/user/register-profile" title="pas
+encore membre ? [Popup]" alt="pas encore membre ?"
+class="popups-form-reload popups-processed" accesskey="b">pas encore
+membre ?</a></li>
+</ul> <!-- block de navigation principale -->
+ <a name="acces-navigation-primaire"></a><a href="#top"
+class="back-to-top">retour en haut de page</a>
+ <ul class="" id="menu-principal"><li class="leaf first
+menu-principal"><a
+href="http://www.franceculture.com/rubrique/information" title=""
+accesskey="b">Information</a></li>
+<li class="leaf menu-principal"><a
+href="http://www.franceculture.com/rubrique/litt%C3%A9rature" title=""
+accesskey="b">Littérature</a></li>
+<li class="leaf menu-principal"><a
+href="http://www.franceculture.com/rubrique/id%C3%A9es" title=""
+accesskey="b">Idées</a></li>
+<li class="leaf menu-principal"><a
+href="http://www.franceculture.com/rubrique/arts-spectacles" title=""
+accesskey="b">Arts et spectacles</a></li>
+<li class="leaf menu-principal"><a
+href="http://www.franceculture.com/rubrique/histoire" title=""
+accesskey="b">Histoire</a></li>
+<li class="leaf menu-principal"><a
+href="http://www.franceculture.com/rubrique/sciences" title=""
+accesskey="b">Sciences</a></li>
+<li class="leaf first menu-action"><a
+href="http://www.franceculture.com/podcasts" title="" accesskey="b">Podcasts</a></li>
+<li class="leaf menu-action"><a
+href="http://www.franceculture.com/emissions/titre" title=""
+accesskey="b">Emissions</a></li>
+<li class="leaf last menu-action"><a
+href="http://www.franceculture.com/grille-des-programmes/" title=""
+accesskey="b">Programmes</a></li>
+</ul>
+ <div id="x02">
+ <script language="JavaScript">
+ <!--
+ OAS_AD("x02");
+ //-->
+ </script>
+ </div> </div><!-- /header -->
+
+ <!-- début du contenu -->
+ <div id="main"><a name="acces-contenu"></a><a href="#top"
+class="back-to-top">retour en haut de page</a>
+
+ <div id="content">
+
+ <div id="content-inner">
+ <div id="content-top">
+ <div id="block-fcbloc-emission-header"
+class="block block-fcbloc">
+ <div class="block-inner">
+
+ <div class="block-content">
+
+ <div class="bandeau">
+ <h1 class="theme1-130">Les Retours du dimanche
+ <a href="http://www.franceculture.com/emission/1232581/rss"
+class="feed-icon"><img src="emission_fichiers/picto-rss.gif"
+alt="Syndiquer le contenu" title="Les Retours du dimanche " height="16"
+width="16"></a>
+ <span class="emission-producteurs">par <a
+href="http://www.franceculture.com/personne-caroline-brou%C3%A9.html">Caroline
+ Broué</a>, <a
+href="http://www.franceculture.com/personne-herve-gardette.html">Hervé
+Gardette</a></span>
+ <a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche.html"
+ class="site" title="Les Retours du dimanche ">Le site de l'émission</a>
+ </h1>
+ <div class="image">
+ <img src="emission_fichiers/retour_dimanche.png" alt="Les Retours du
+dimanche " title="" height="100" width="640">
+ <a href="http://www.franceculture.com/podcast/1232581" title="Les
+Retours du dimanche "><img
+src="emission_fichiers/culture_les_retours_du_dimanche.jpg"
+alt="Emission Les Retours du dimanche " title="" class="illu-small"
+height="75" width="75"></a>
+ </div>
+ <p>le dimanche de 18h10 Ă 19h </p>
+ </div>
+ </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+
+ </div>
+
+ <div id="node-2347301" class="node node-rf_diffusion">
+
+
+ <div class="titre-plus">
+ <div class="listen">
+ <a class="rf-player-open rf-player-open-processed"
+href="http://www.franceculture.com/player?p=reecoute-2347301#reecoute-2347301">
+ <img alt="Ecoutez l'émission"
+src="emission_fichiers/listen.png" height="78" width="78">
+ </a>
+ <span>50 minutes</span>
+ </div>
+ <h2 class="title">
+ Le salaire de la politique ; les vuvuzelas ; l'actualité
+politique belge <a class="num-com" href="#comments">
+ <span>0</span>
+ </a>
+ </h2>
+ <p>
+ <span class="date">20.06.2010 - 18:10</span>
+ </p>
+ <div class="clear"></div>
+ </div>
+
+
+ <span class="print-link"></span><div class="field
+field-type-multimedia-editorial-element field-field-contenu">
+ <div class="field-items">
+ <div class="field-item odd">
+ <div class="dnd-drop-wrapper">
+
+
+ <div class="image atom-Image">
+ <img class="dnd-dropped" src="emission_fichiers/Garrigou.jpg"
+alt="">
+ <div class="opaque"><p>le sociologue Alain Garrigou <span>©Radio
+France</span></p></div>
+ </div>
+
+
+</div><p>Au sommaire des <strong>Retours du dimanche </strong>:</p><p> </p><p>La
+
+
+ revue
+d'actualités : rappel des petits et grands évènements de la semaine. : <a
+ title=" ça s'est passé cette semaine"
+href="http://www.franceculture.com/2010-06-19-20-juin-2010-ca-s-039-est-passe-cette-semaine.html">il
+ faut reconnaître un mérite à Raymond Domenech et à ses joueurs...</a></p><p> </p><p>L'entretien
+
+
+
+ : "<a href="#t=700">Le salaire de la politique</a>", <span><span
+class="262252614-17062010">après que la question de la rémunération des
+politiques a été posée par le
+premier ministre cette semaine. Invité : </span></span>l'historien
+et professeur en science politique <strong>Alain Garrigou</strong>,
+auteur de <em>Mourir pour des Idées, la vie posthume d'Alphone Baudin</em>,
+ paru aux éditions Les Belles Lettres en avril 2010.</p><p> </p><p> </p>
+
+ <!-- START Integration testing ###################################### -->
+ <!-- IRI PLAYER EXPERIMENTATION -->
+
+ <script type="text/javascript" src="../src/js/LdtPlayer.js"></script>
+
+ <div id="LdtPlayer"></div>
+
+ <script type="text/javascript">
+ var config = {
+ metadata:{
+ format:'cinelab',
+ src:'http://exp.iri.centrepompidou.fr/franceculture/franceculture/ldt/cljson/id/ef4dcc2e-8d3b-11df-8a24-00145ea4a2be',
+ load:'jsonp'},
+ gui:{
+ width:650,
+ height:1,
+ mode:'radio',
+ container:'LdtPlayer',
+ debug:false,
+ css:'../src/css/LdtPlayerFc.css'},
+ player:{
+ type:'jwplayer',
+ src:'../res/swf/player.swf'}
+ };
+ __IriSP.init(config);
+ </script>
+
+
+<!-- END ###################################### ####################################-->
+
+ <br/>
+
+ <p> <a href="#t=1773">La
+ revue de
+presse </a>: les <strong>vuvuzelas comme phénomène identitaire</strong>, ces
+ trompettes qui occupent le fond sonore de tous les matchs de la coupe
+du monde de football qui se déroule en ce moment en Afrique du Sud.<br>
+<br> <a href="#t=1846"> La bulle sonore :</a><strong> Patrick Roegiers</strong><strong> </strong>pour revenir
+ sur<strong> l'actualité politique en Belgique. </strong>Notre invité
+est romancier, auteur de <em>La Belgique, Le roman d'un pays</em>, paru
+chez Découvertes Gallimard en 2005, et <em>Le mal du pays, autoportrait
+de la Belgique</em>, publié au Seuil en 2003. Il a récemment publié <em>La
+ Nuit du Monde</em>, au Seuil en janvier 2010.</p><p> </p><p>
+ <a href="#t=2647">La
+chronique d'Anthony Bellanger de </a> <strong>Courrier
+
+International.</strong></p>
+<p><br>Et comme chaque semaine : le sujet choisi par l'invité, notre
+choix pour
+la semaine Ă venir...</p> </div>
+ </div>
+</div>
+ <div class="clear"></div>
+
+ <p class="invites">Invités :<br>
+ <a
+href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
+Garrigou</a>, professeur agrégé d'histoire et docteur en science
+politique à l'université de Paris-X Nanterre<br><a
+href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
+ Roegiers</a> </p>
+ <p class="theme">Thèmes :
+ <a href="http://www.franceculture.com/rubrique/information"
+title="">Information</a>| <a
+href="http://www.franceculture.com/theme/d%C3%A9bat" title="">Débat</a>|
+ <a href="http://www.franceculture.com/theme/gouvernement" title="">Gouvernement</a>|
+ <a
+href="http://www.franceculture.com/theme/sciences-dures-et-sciences-humaines/histoire"
+ title="">Histoire</a> </p>
+ <div class="rel-doc">
+ <h2 class="titre-barre"><span>Documents</span></h2>
+ <ul><li><p>
+ <a
+href="http://www.franceculture.com/oeuvre-mourir-pour-des-idees-la-vie-posthume-d-alphone-baudin-de-alain-garrigou.html">
+ Mourir pour des idées, la vie posthume d'Alphone Baudin </a>
+ <a href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
+ Garrigou</a> <span>
+ Belles lettres, 2010 </span>
+ </p>
+<a
+href="http://www.franceculture.com/oeuvre-mourir-pour-des-idees-la-vie-posthume-d-alphone-baudin-de-alain-garrigou.html">
+ <img src="emission_fichiers/baudin.jpg" alt="" title=""
+class="imagecache imagecache-oeuvre_image_liste" height="143" width="95"></a>
+</li><li><p>
+ <a
+href="http://www.franceculture.com/oeuvre-les-elites-contre-la-republique-histoire-et-mutations-de-sciences-po-et-de-l-ena-de-alain-gar">
+ Les élites contre la République : histoire et mutations de Sciences
+Po et de l'ENA </a>
+ <a href="http://www.franceculture.com/personne-alain-garrigou.html">Alain
+ Garrigou</a> <span>
+ Editions La découverte, </span>
+ </p>
+<a
+href="http://www.franceculture.com/oeuvre-les-elites-contre-la-republique-histoire-et-mutations-de-sciences-po-et-de-l-ena-de-alain-gar">
+ <img
+src="emission_fichiers/les_lites_contre_la_rpublique_histoire_et_mutations_de_scien.jpg"
+ alt="" title="" class="imagecache imagecache-oeuvre_image_liste"
+height="157" width="95"></a>
+</li><li><p>
+ <a
+href="http://www.franceculture.com/oeuvre-le-mal-du-pays-autobiographie-de-la-belgique-de-patrick-roegiers.html">
+ Le mal du pays : autobiographie de la Belgique </a>
+ <a href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
+ Roegiers</a> <span>
+ Seuil, 2003 </span>
+ </p>
+<a
+href="http://www.franceculture.com/oeuvre-le-mal-du-pays-autobiographie-de-la-belgique-de-patrick-roegiers.html">
+ <img
+src="emission_fichiers/le_mal_du_pays_autobiographie_de_la_belgique20100424.jpg"
+ alt="" title="" class="imagecache imagecache-oeuvre_image_liste"
+height="161" width="95"></a>
+</li><li style="display: none;" class="more-liste liste-clear"></li><li
+style="display: none;" class="more-liste"><p>
+ <a
+href="http://www.franceculture.com/oeuvre-la-nuit-du-monde-de-patrick-roegiers.html">
+ La nuit du monde </a>
+ <a href="http://www.franceculture.com/personne-patrick-roegiers.html">Patrick
+ Roegiers</a> <span>
+ Seuil, 2010 </span>
+ </p>
+<a
+href="http://www.franceculture.com/oeuvre-la-nuit-du-monde-de-patrick-roegiers.html">
+ <img src="emission_fichiers/la_nuit_du_monde20100423.jpg" alt=""
+title="" class="imagecache imagecache-oeuvre_image_liste" height="143"
+width="95"></a>
+</li><li style="display: none;" class="more-liste"><p>
+ <a
+href="http://www.franceculture.com/oeuvre-l-evangile-selon-jesus-christ-de-jose-saramago.html">
+ L'évangile selon Jésus-Christ </a>
+ <a
+href="http://www.franceculture.com/personne-jos%C3%A9-saramago.html">José
+ Saramago</a> <span>
+ Ed. du Seuil - coll. Points, 2000 </span>
+ </p>
+<a
+href="http://www.franceculture.com/oeuvre-l-evangile-selon-jesus-christ-de-jose-saramago.html">
+ <img src="emission_fichiers/97820204039860-2000020811.jpg" alt=""
+title="" class="imagecache imagecache-oeuvre_image_liste" height="158"
+width="95"></a>
+</li></ul><div class="clear"></div><a style="background:
+url("/sites/all/themes/franceculture/images/urg-down.png")
+no-repeat scroll 100% 4px transparent;" class="more-doc">voir les 5
+documents</a> </div>
+ <div class="clear"></div>
+ </div> <!-- /node -->
+ <div id="comments" class="com">
+ <h2 class="titre-barre"><span>0 commentaire</span></h2>
+ <div class="box">
+ <h2 class="title titre-barre"><span>Votre commentaire</span></h2>
+ <form action="/comment/reply/2347301" accept-charset="UTF-8"
+method="post" id="comment-form">
+<div><div class="form-item" id="edit-name-wrapper">
+ <label for="edit-name">votre nom : </label>
+ <input maxlength="60" name="name" id="edit-name" size="30"
+value="Anonyme" class="form-text idleField" type="text">
+</div>
+<div class="form-item" id="edit-mail-wrapper">
+ <label for="edit-mail">votre adresse électronique : </label>
+ <input maxlength="64" name="mail" id="edit-mail" size="30"
+class="form-text idleField" type="text">
+</div>
+<div class="form-item" id="edit-comment-wrapper">
+ <label for="edit-comment">votre commentaire : <span
+class="form-required" title="Ce champ est obligatoire.">*</span></label>
+ <div class="resizable-textarea"><span><textarea cols="60" rows="15"
+name="comment" id="edit-comment" class="form-textarea resizable required
+ clearonfocus textarea-processed">Tapez ici vos commentaires</textarea><div
+ style="margin-right: -33px;" class="grippie"></div></span></div>
+</div>
+<div class="wysiwyg wysiwyg-format-5 wysiwyg-editor-none
+wysiwyg-field-edit-comment wysiwyg-status-1 wysiwyg-toggle-1
+wysiwyg-resizable-1"> </div><input name="form_build_id"
+id="form-3d46a280b7c4d6960ed80ba3c5ae0418"
+value="form-3d46a280b7c4d6960ed80ba3c5ae0418" type="hidden">
+<input name="form_id" id="edit-comment-form" value="comment_form"
+type="hidden">
+<input name="op" id="edit-submit" value="Envoyer" class="form-submit"
+type="submit"><div id="saving"><p class="saving">Enregistrement des
+données…</p></div>
+<input name="op" id="edit-preview" value="Aperçu" class="form-submit"
+type="submit">
+
+</div></form>
+</div> <!-- /box -->
+ </div>
+ <!-- /comment wrapper -->
+<div id="block-print-0" class="block block-print">
+ <div class="block-inner">
+
+ <div class="block-content">
+ <span class="print_html"><a
+href="http://www.franceculture.com/print/463861" title="Imprimer le
+contenu" class="print-page" onclick="window.open(this.href); return
+false" rel="nofollow">imprimer</a></span> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+<div id="share" class="block block-addthis share-script">
+
+ <div class="addthis_toolbox addthis_default_style">
+ <a class="addthis_button_email share-mail at300b" title="partager par
+ courier"><span class="at300bs at15t_email"></span>envoyer par courriel</a>
+
+ <span class="more-services">
+ <a title="Send to Facebook" target="_blank"
+href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=facebook&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
+ class="addthis_button_facebook share-services at300b"><span
+class="at300bs at15t_facebook"></span>facebook</a>
+ <a title="Tweet This" target="_blank"
+href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=twitter&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
+ class="addthis_button_twitter share-services at300b"><span
+class="at300bs at15t_twitter"></span>twitter</a>
+ <a title="Send to Netvibes" target="_blank"
+href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=netvibes&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
+ class="addthis_button_netvibes share-services at300b"><span
+class="at300bs at15t_netvibes"></span>netvibes</a>
+ <a title="Send to Delicious" target="_blank"
+href="http://www.addthis.com/bookmark.php?pub=&v=250&source=tbx-250&tt=0&s=delicious&url=http%3A%2F%2Fwww.franceculture.com%2Femission-les-retours-du-dimanche-le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belg&title=Le%20salaire%20de%20la%20politique%20%3B%20les%20vuvuzelas%20%3B%20l%27actualit%C3%A9%20politique%20belge%20-%20Information%20-%20France%20Culture&content=&sms_ss=1&lng=fr"
+ class="addthis_button_delicious share-services at300b"><span
+class="at300bs at15t_delicious"></span>delicious</a>
+ </span>
+ <a style="background:
+url("/sites/all/themes/franceculture/images/share-more.png")
+no-repeat scroll 100% 4px transparent;" href="#" title="plus d'actions
+de partage" class="share-more">partager</a>
+ <div class="atclear"></div></div>
+ <script type="text/javascript" src="emission_fichiers/addthis_widget.js"></script>
+ </div>
+
+
+ <div class="clear"></div>
+ </div> <!-- /content-inner -->
+
+
+ </div> <!-- /content -->
+
+ <!-- début de sidebar-right -->
+ <div id="sidebar-right"><a name="acces-right"></a><a
+href="#top" class="back-to-top">retour en haut de page</a>
+ <div id="block-fc_bloc_direct-direct" class="block
+block-fc_bloc_direct block-ecoute">
+ <div class="block-inner">
+ <h2 class="titre-barre"><span>Ecoutez France Culture</span></h2>
+ <div class="content"><div class="context">
+ <a href="http://www.franceculture.com/player" title="écouter le direct"
+ class="rf-player-open img-float rf-player-open-processed">
+ <img src="emission_fichiers/direct.png" alt="écouter le direct"
+height="72" width="72">
+ </a>
+ <h3>
+ <span class="timer"><a href="http://www.franceculture.com/player"
+class="rf-player-open rf-player-open-processed">En direct</a></span>
+ <a class="rf-player-open rf-player-open-processed"
+href="http://www.franceculture.com/player" title="écouter le direct">Sur
+ France Culture</a>
+ <a class="rf-player-open rf-player-open-processed"
+href="http://www.franceculture.com/player" title="écouter le direct"></a>
+ </h3>
+ <p></p>
+ <div class="clear"></div>
+</div>
+<p>
+ <span class="timer"></span>
+
+</p>
+<p class="auteur">
+
+</p>
+</div>
+ </div>
+</div><div id="block-fcbloc-emission-equipe" class="block block-fcbloc">
+ <div class="block-inner">
+ <h2 class="title"><span>L'équipe</span></h2>
+
+ <div class="block-content">
+ <div class="item-list"><ul><li class="first">
+ <h3>Production</h3>
+ <p><a
+href="http://www.franceculture.com/personne-caroline-brou%C3%A9.html">Caroline
+ Broué</a>, <a
+href="http://www.franceculture.com/personne-herve-gardette.html">Hervé
+Gardette</a></p>
+ </li>
+<li>
+ <h3>Réalisation</h3>
+ <p>Jean-Christophe Francis</p>
+ </li>
+<li>
+ <h3>Collaboratrice(s) Spécialisée(s)</h3>
+ <p>Soline Ledésert</p>
+ </li>
+<li class="last">
+ <h3>Chronique(s)</h3>
+ <p><a
+href="http://www.franceculture.com/personne-anthony-bellanger.html">Anthony
+ Bellanger</a></p>
+ </li>
+</ul></div> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+<div id="block-fcbloc-publicite" class="block block-fcbloc">
+ <div class="block-inner">
+
+ <div class="block-content">
+ <p class="pub-notice">publicité</p><div class="pub-inner"><script language="JavaScript">
+<!--
+OAS_AD("Middle");
+//-->
+</script> </div> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+<div id="block-fcbloc-sur-le-meme-theme" class="block block-fcbloc">
+ <div class="block-inner">
+ <h2 class="title"><span>Sur le même thème</span></h2>
+
+ <div class="block-content">
+ <div class="view view-commun-fo-blocs-full-node
+view-id-commun_fo_blocs_full_node view-display-id-page_1 view-dom-id-12">
+
+
+
+ <div class="view-content">
+ <ul>
+ <li class="first odd">
+
+
+
+ <a
+href="http://www.franceculture.com/culture-ac-seminaire-d%E2%80%99antoine-compagnon-ecrire-la-vie-26.html">Écrire
+ la vie (2/6)</a>
+
+
+ <span class="date">
+
+
+ <div class="clear"></div>
+00:00
+
+ </span>
+
+ </li>
+ <li class="even">
+
+
+
+ <a
+href="http://www.franceculture.com/emission-dossier-du-jour-conference-des-donateurs-a-kaboul-2010-07-20.html">Conférence
+ des donateurs Ă Kaboul</a>
+
+
+ <p>
+
+
+ <a
+href="http://www.franceculture.com/emission-dossier-du-jour.html">
+Dossier du jour </a>
+ </p>
+
+
+ <span class="date">
+
+
+ <div class="clear"></div>
+À écouter le 19.07.2010
+
+ </span>
+
+
+ <span>
+
+
+ <span class="timer"><span class="date-display-single">4</span>
+min.</span>
+ </span>
+
+ </li>
+ <li class="last odd">
+
+
+
+ <a
+href="http://www.franceculture.com/emission-place-de-la-toile-lift-marseille-2010-07-24.html">Lift
+ Marseille</a>
+
+
+ <p>
+
+
+ <a
+href="http://www.franceculture.com/emission-place-de-la-toile.html">Place
+ de la toile</a>
+ </p>
+
+
+ <span class="date">
+
+
+ <div class="clear"></div>
+À écouter le 16.07.2010
+
+ </span>
+
+
+ <span>
+
+
+ <span class="timer"><span class="date-display-single">59</span>
+min.</span>
+ </span>
+
+ </li>
+ </ul>
+ </div>
+
+
+
+
+
+
+</div> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+<div id="block-views-diffusion_fo_blocs-block_1" class="block
+block-views">
+ <div class="block-inner">
+ <h2 class="title"><span>Dernières diffusions</span></h2>
+
+ <div class="block-content">
+ <div class="view view-diffusion-fo-blocs view-id-diffusion_fo_blocs
+view-display-id-block_1 view-dom-id-13">
+
+
+
+ <div class="view-content">
+ <div class="item-list">
+ <ul>
+ <li class="views-row views-row-1 views-row-odd
+views-row-first">
+ <div class="views-field-title-1">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-les-retours-du-dimanche-best-of-12-2010-07-18.html">LES
+ RETOURS DU DIMANCHE - Best of 1/2</a></span>
+ </div>
+
+ <div class="views-field-field-contenu-value">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-les-retours-du-dimanche-best-of-12-2010-07-18.html"
+ title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
+alt="Écouter l'émission" title="Écouter l'émission" class="pictos
+rollover" height="15" width="15"></a><a title="[Popup]"
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ class="popups-form-reload popups-processed"><img
+src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
+ title="Ajouter Ă ma liste de lecture" class="pictos rollover"
+height="15" width="15"></a><a
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
+ src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
+mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
+rollover" height="15" width="15"></a></span>
+ </div>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value">
+ <span class="field-content"><span
+class="date-display-single">18.07.2010</span></span>
+ </span>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value-1">
+ <span class="field-content"><span class="timer"><span
+class="date-display-single">49</span> min.</span></span>
+ </span>
+</li>
+ <li class="views-row views-row-2 views-row-even">
+ <div class="views-field-title-1">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-medias-et-democratie-quel-est-le-role-du-journaliste-le-declin-du-m">Médias
+ et démocratie: quel est le rôle du journaliste ? ; le déclin du
+ministère des affaires étrangères ; les Roms</a></span>
+ </div>
+
+ <div class="views-field-field-contenu-value">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-medias-et-democratie-quel-est-le-role-du-journaliste-le-declin-du-m"
+ title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
+alt="Écouter l'émission" title="Écouter l'émission" class="pictos
+rollover" height="15" width="15"></a><a title="[Popup]"
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ class="popups-form-reload popups-processed"><img
+src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
+ title="Ajouter Ă ma liste de lecture" class="pictos rollover"
+height="15" width="15"></a><a
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
+ src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
+mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
+rollover" height="15" width="15"></a></span>
+ </div>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value">
+ <span class="field-content"><span
+class="date-display-single">11.07.2010</span></span>
+ </span>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value-1">
+ <span class="field-content"><span class="timer"><span
+class="date-display-single">50</span> min.</span></span>
+ </span>
+</li>
+ <li class="views-row views-row-3 views-row-odd views-row-last">
+
+ <div class="views-field-title-1">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-qu-est-ce-qu-une-decouverte-scientifique-l-avenir-d-eric-woerth-au-">Qu'est-ce
+ qu'une découverte scientifique ? ; l'avenir d'Eric Woerth au
+gouvernement ; hommage Ă Laurent Terzieff ; Percy Kemp</a></span>
+ </div>
+
+ <div class="views-field-field-contenu-value">
+ <span class="field-content"><a
+href="http://www.franceculture.com/emission-les-retours-du-dimanche-qu-est-ce-qu-une-decouverte-scientifique-l-avenir-d-eric-woerth-au-"
+ title="Audio"><img src="emission_fichiers/picto-ecoute-rouge.png"
+alt="Écouter l'émission" title="Écouter l'émission" class="pictos
+rollover" height="15" width="15"></a><a title="[Popup]"
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ class="popups-form-reload popups-processed"><img
+src="emission_fichiers/more-red.png" alt="Ajouter Ă ma liste de lecture"
+ title="Ajouter Ă ma liste de lecture" class="pictos rollover"
+height="15" width="15"></a><a
+href="http://www.franceculture.com/user/connect?destination=node%2F2347301"
+ title="Mobile [Popup]" class="popups-form-reload popups-processed"><img
+ src="emission_fichiers/picto-mobile.png" alt="Recevoir l'émission sur
+mon mobile" title="Recevoir l'émission sur mon mobile" class="pictos
+rollover" height="15" width="15"></a></span>
+ </div>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value">
+ <span class="field-content"><span
+class="date-display-single">04.07.2010</span></span>
+ </span>
+
+ <span class="views-field-field-diffusion-date-debut-fin-value-1">
+ <span class="field-content"><span class="timer"><span
+class="date-display-single">50</span> min.</span></span>
+ </span>
+</li>
+ </ul>
+</div> </div>
+
+
+
+
+
+
+</div> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+
+ </div> <!-- /sidebar-right -->
+
+ <div class="clear"></div>
+ </div> <!-- /main -->
+
+ <!-- début du footer -->
+ <div id="footer-top"><a name="acces-footer"></a><a href="#top"
+class="back-to-top">retour en haut de page</a>
+
+ <br class="clear">
+<div id="pub-bottom-right">
+ <div id="block-fcbloc-footer-adsense" class="block
+block-fcbloc">
+ <div class="block-inner">
+
+ <div class="block-content">
+
+ <script language="JavaScript">
+ <!--
+ OAS_AD("BottomRight");
+ //-->
+ </script> </div>
+
+ <div class="closure"></div>
+ </div>
+</div> <!-- /block -->
+ </div>
+ </div> <!-- /footer -->
+
+ </div> <!-- /page-inner -->
+</div> <!-- /page -->
+ <div id="footer-commun" class="header-footer footer-franceculture"><div
+ class="content-header-footer"><div id="footer-chaine"><div
+id="colonne-liens-footer" class="colonne-footer colonne-footer-first"><a
+ href="http://www.franceculture.com/"><img
+src="emission_fichiers/franceculture.png" alt="logo de franceculture"></a><p><a
+ href="http://www.franceculture.com/sitemap">plan du site</a></p><p><a
+href="http://www.franceculture.com/a_propos">Ă propos</a></p><p><a
+href="http://www.franceculture.com/contact">contact</a></p></div><!--fin de div colonne-liens-footer--><div
+ id="colonne-ecouter-footer" class="colonne-footer"><h4>écouter</h4><ul><li
+ class="color-chaine "><a href="http://www.franceculture.com/player"
+class="rf-player-open rf-player-open-processed">direct</a></li><li><a
+href="http://www.franceculture.com/programmes">grille</a></li><li><a
+href="http://www.franceculture.com/frequences">fréquences</a></li><li><a
+ href="http://www.franceculture.com/podcasts">podcasts</a></li><li><a
+href="http://www.radiofrance.fr/boite-a-outils/widget/">applis</a></li><li><a
+ href="http://www.radiofrance.fr/boite-a-outils/faq/">aide à l'écoute</a></li></ul></div><!--fin de div colonne-thematique-footer--><div
+ id="colonne-thematique-footer" class="colonne-footer"><h4>thématiques</h4><ul><li><a
+ href="http://www.franceculture.com/rubrique/information">information</a>
+ - <span>économie, justice, politique française, relations
+internationales</span></li><li><a
+href="http://www.franceculture.com/rubrique/litterature">littérature</a>
+ - <span>édition, poésie, prix littéraires, roman, théâtre</span></li><li><a
+ href="http://www.franceculture.com/rubrique/idees">idées</a> - <span>débats,
+ philosophie, sociologie</span></li><li><a
+href="http://www.franceculture.com/rubrique/arts-spectacles">arts &
+spectacles</a> - <span>architecture, cinéma, danse, musique, spectacle,
+télévision</span></li><li><a
+href="http://www.franceculture.com/rubrique/histoire">histoire</a> - <span>histoire
+ de l'art, histoire de France, histoire des idées, histoire des sciences</span></li><li><a
+ href="http://www.franceculture.com/rubrique/sciences">sciences</a> - <span>astronomie,
+ biologie, mathématiques, physique</span></li><li><a
+href="http://www.franceculture.com/quelisentils">que lisent-ils</a> - <a
+ href="http://www.franceculture.com/votre-agenda">votre agenda culturel</a>
+ - <a href="http://www.franceculture.com/culture-academie">culture
+académie</a> - <a href="http://www.franceculture.com/blogs">les blogs</a></li></ul></div><!--fin de div colonne-partager-footer--><div
+ id="colonne-partager-footer" class="colonne-footer colonne-footer-last"><div
+ id="liens-partage-footer"><h4>nous rejoindre</h4><ul><li
+id="facebook-footer"><a
+href="http://www.facebook.com/pages/FRANCE-CULTURE/83625483348?ref=ts"
+class="gris">facebook</a></li><li id="twitter-footer"><a
+href="http://www.twitter.com/france_culture" class="gris">twitter</a></li><li
+ id="dailymotion-footer"><a
+href="http://www.dailymotion.com/franceculture" class="gris">dailymotion</a></li><li
+ class="clearer"> </li></ul></div><!--fin de bloc 1--><div><h4>s'abonner</h4><span><a
+ href="http://www.franceculture.com/podcasts" class="gris">podcasts</a></span>
+ - <span><a href="http://www.franceculture.com/la-lettre"
+class="color-chaine">newsletter</a></span></div></div><!--fin de div colonne-partager-footer--><div
+ class="clearer"> </div></div><div id="sous-footer"><div
+id="footer-rf"><ul><li class="first"><a
+href="http://www.radiofrance.fr/">radiofrance.fr</a></li><li><a
+href="http://www.radiofrance.fr/les-blogs/blog-du-mediateur/">médiateur</a></li><li><a
+ href="http://www.radiofrance.fr/liens-bas-de-page/mentionslegales/">mentions
+ légales</a></li><li class="last"><a
+href="http://www.radiofrance.fr/boite-a-outils/frequences/">fréquences</a></li><li
+ class="last-page"><span class="haut-de-page"><a href="#top-page-ancre"
+id="top-page" class="gris">haut de page</a></span></li></ul><p>Radio
+France décline toute responsabilité quant au contenu des sites proposés
+en liens</p></div><!--fin de div footer-rf--></div></div></div> <script type="text/javascript">
+<!--//--><![CDATA[//><!--
+$.post(Drupal.settings.basePath + 'jstats.php', {"path":"node\/2347301","nid":"2347301"});
+//--><!]]>
+</script>
+<!-- eStat -->
+<script language="JavaScript">
+<!--
+var _PJS=0;
+//-->
+</script>
+<script language="JavaScript" src="emission_fichiers/265074200838.js"></script>
+<script language="JavaScript">
+<!--
+if(_PJS)
+{
+ eStat_id.cmclient("franceculture");
+ eStat_id.niveau(1,"information");
+ eStat_id.niveau(2,"les-retours-du-dimanche");
+ eStat_id.niveau(3,"le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20");
+ eStat_id.niveau(4,"histoire-gouvernement-debat");
+ eStat_tag.post("ml");
+}
+//-->
+</script>
+<noscript>
+<img src="http://stat3.cybermonitor.com/franceculture_v?c=information&p=les-retours-du-dimanche&l3=le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20&l4=histoire-gouvernement-debatst=0&sjs=0" border="0" width="1" height="1" />
+</noscript>
+<!-- /eStat -->
+<!-- xiti -->
+<script type="text/javascript">
+<!--
+xtnv = document; //parent.document or top.document or document
+xtsd = "http://logp";
+xtsite = "24121";
+xtn2 = "3"; // level 2 site
+xtpage ="Emissions::les-retours-du-dimanche::le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20"; //page name
+xtdi = ""; //implication degree
+//-->
+</script>
+
+<script type="text/javascript" src="emission_fichiers/xtcore.js"></script>
+
+<noscript>
+<img width="1" height="1" alt="" src="http://logp.xiti.com/hit.xiti?s=24121&s2=3&p=Emissions::les-retours-du-dimanche::le-salaire-de-la-politique-les-vuvuzelas-l-actualite-politique-belge-2010-06-20&di=&" >
+</noscript>
+<!-- /xiti -->
+</body><div style="display: none; width: 24px;" id="diigotb-imagepanel"><div
+ class="diigotb-btn enabled" title="Save this image to Diigo"
+id="diigotb-quick-save"></div></div><div style="display: none;"
+class="diigotb-border diigotb-left"></div><div style="display: none;"
+class="diigotb-border diigotb-top"></div><div style="display: none;"
+class="diigotb-border diigotb-right"></div><div style="display: none;"
+class="diigotb-border diigotb-bottom"></div></html>
\ No newline at end of file
--- a/client/player/test/test.json Fri Aug 06 17:19:37 2010 +0200
+++ b/client/player/test/test.json Tue Sep 14 13:15:28 2010 +0200
@@ -1,224 +1,224 @@
-jsonp1280740430151({
+test({
"tags": [
- {
+ {
"meta": {
- "dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:contributor": "IRI ",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "suffrage universel",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "suffrage universel"
+ "id": "edaabd04-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "Patrick Rogiers",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "Patrick Rogiers"
+ "id": "edab1fec-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.324441",
+ "dc:created": "2010-09-06T15:53:44.575615",
"dc:title": "Kirgistan",
- "dc:modified": "2010-08-02T09:15:21.324441",
+ "dc:modified": "2010-09-06T15:53:44.575615",
"dc:creator": "IRI"
},
- "id": "Kirgistan"
+ "id": "eda50fb2-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.328609",
+ "dc:created": "2010-09-06T15:53:44.600158",
"dc:title": "Alphonse Baudin",
- "dc:modified": "2010-08-02T09:15:21.328609",
+ "dc:modified": "2010-09-06T15:53:44.600158",
"dc:creator": "IRI"
},
- "id": "Alphonse Baudin"
+ "id": "eda8ba7c-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "mandats rétribués",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "mandats rétribués"
+ "id": "edaab0b6-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "Belgique",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "Belgique"
+ "id": "edab1808-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.330825",
+ "dc:created": "2010-09-06T15:53:44.609400",
"dc:title": "18juin",
- "dc:modified": "2010-08-02T09:15:21.330825",
+ "dc:modified": "2010-09-06T15:53:44.609400",
"dc:creator": "IRI"
},
- "id": "18juin"
+ "id": "edaa23f8-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "Wallons",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "Wallons"
+ "id": "edab2730-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.339566",
+ "dc:created": "2010-09-06T15:53:44.626707",
"dc:title": "theatre.doc",
- "dc:modified": "2010-08-02T09:15:21.339566",
+ "dc:modified": "2010-09-06T15:53:44.626707",
"dc:creator": "IRI"
},
- "id": "theatre.doc"
+ "id": "edabd6b2-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.330825",
+ "dc:created": "2010-09-06T15:53:44.609400",
"dc:title": "marée noire",
- "dc:modified": "2010-08-02T09:15:21.330825",
+ "dc:modified": "2010-09-06T15:53:44.609400",
"dc:creator": "IRI"
},
- "id": "marée noire"
+ "id": "edaa3aaa-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "Flamands",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "Flamands"
+ "id": "edab1c36-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "Auguste Baudin",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "Auguste Baudin"
+ "id": "edaaa8dc-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.324441",
+ "dc:created": "2010-09-06T15:53:44.575615",
"dc:title": "retraite",
- "dc:modified": "2010-08-02T09:15:21.324441",
+ "dc:modified": "2010-09-06T15:53:44.575615",
"dc:creator": "IRI"
},
- "id": "retraite"
+ "id": "eda7047a-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "financement politique",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "financement politique"
+ "id": "edaaad00-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.330825",
+ "dc:created": "2010-09-06T15:53:44.609400",
"dc:title": "Bloody Sunday",
- "dc:modified": "2010-08-02T09:15:21.330825",
+ "dc:modified": "2010-09-06T15:53:44.609400",
"dc:creator": "IRI"
},
- "id": "Bloody Sunday"
+ "id": "edaa329e-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "éléction",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "éléction"
+ "id": "edab2b68-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "suffrage directs",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "suffrage directs"
+ "id": "edaab962-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.335354",
+ "dc:created": "2010-09-06T15:53:44.621828",
"dc:title": "vuvuzela",
- "dc:modified": "2010-08-02T09:15:21.335354",
+ "dc:modified": "2010-09-06T15:53:44.621828",
"dc:creator": "IRI"
},
- "id": "vuvuzela"
+ "id": "edab238e-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.330825",
+ "dc:created": "2010-09-06T15:53:44.609400",
"dc:title": "Domenech",
- "dc:modified": "2010-08-02T09:15:21.330825",
+ "dc:modified": "2010-09-06T15:53:44.609400",
"dc:creator": "IRI"
},
- "id": "Domenech"
+ "id": "edaa36ea-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.337478",
+ "dc:created": "2010-09-06T15:53:44.624524",
"dc:title": "sociologie du sport",
- "dc:modified": "2010-08-02T09:15:21.337478",
+ "dc:modified": "2010-09-06T15:53:44.624524",
"dc:creator": "IRI"
},
- "id": "sociologie du sport"
+ "id": "edab8162-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.324441",
+ "dc:created": "2010-09-06T15:53:44.575615",
"dc:title": "Mondiale",
- "dc:modified": "2010-08-02T09:15:21.324441",
+ "dc:modified": "2010-09-06T15:53:44.575615",
"dc:creator": "IRI"
},
- "id": "Mondiale"
+ "id": "eda60c8c-b9ce-11df-9e63-00145ea4a2be"
},
{
"meta": {
"dc:contributor": "IRI",
- "dc:created": "2010-08-02T09:15:21.333096",
+ "dc:created": "2010-09-06T15:53:44.618963",
"dc:title": "professionalisation de la politique",
- "dc:modified": "2010-08-02T09:15:21.333096",
+ "dc:modified": "2010-09-06T15:53:44.618963",
"dc:creator": "IRI"
},
- "id": "professionalisation de la politique"
+ "id": "edaab5c0-b9ce-11df-9e63-00145ea4a2be"
}
],
"views": null,
@@ -240,12 +240,12 @@
],
"meta": {
"dc:contributor": "undefined",
- "dc:created": "2010-08-02T09:15:21.320962",
+ "dc:created": "2010-09-06T15:53:44.572185",
"dc:creator": "perso",
"id-ref": "franceculture_retourdudimanche20100620",
"dc:title": "Découpages personnels",
"editable": "false",
- "dc:modified": "2010-08-02T09:15:21.320962",
+ "dc:modified": "2010-09-06T15:53:44.572185",
"dc:description": ""
},
"id": "ens_perso"
@@ -285,7 +285,7 @@
"dc:description": "",
"dc:title": "RetourDimanche20juin_decoupageChronique",
"id": "ef4dcc2e-8d3b-11df-8a24-00145ea4a2be",
- "dc:modified": "2010-07-28T18:59:34.815208"
+ "dc:modified": "2010-08-25T11:39:25.507013"
},
"annotations": [
{
@@ -293,13 +293,13 @@
"end": 88414,
"tags": [
{
- "id-ref": "Kirgistan"
+ "id-ref": "eda50fb2-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Mondiale"
+ "id-ref": "eda60c8c-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "retraite"
+ "id-ref": "eda7047a-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -317,8 +317,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_32C565F4-15F4-E7CB-EBC5-6FB51DAC635C"
@@ -342,8 +342,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_8F385150-64B3-7539-AB94-6FB51DAC40B4"
@@ -353,7 +353,7 @@
"end": 316123,
"tags": [
{
- "id-ref": "Alphonse Baudin"
+ "id-ref": "eda8ba7c-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -371,8 +371,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_948A7C82-DD23-8CAC-27D4-6FB51DAC7D41"
@@ -382,19 +382,19 @@
"end": 694781,
"tags": [
{
- "id-ref": "18juin"
+ "id-ref": "edaa23f8-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Bloody Sunday"
+ "id-ref": "edaa329e-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Domenech"
+ "id-ref": "edaa36ea-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Kirgistan"
+ "id-ref": "edaa36ea-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "marée noire"
+ "id-ref": "edaa3aaa-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -412,8 +412,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_54DB840E-01AC-D042-37E2-B2BA1E18B47C"
@@ -423,22 +423,22 @@
"end": 1772062,
"tags": [
{
- "id-ref": "Auguste Baudin"
+ "id-ref": "edaaa8dc-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "financement politique"
+ "id-ref": "edaaad00-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "mandats rétribués"
+ "id-ref": "edaab0b6-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "professionalisation de la politique"
+ "id-ref": "edaab5c0-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "suffrage directs"
+ "id-ref": "edaab962-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "suffrage universel"
+ "id-ref": "edaabd04-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -456,8 +456,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_BDB0677D-DBF9-D198-896B-B2BDB9012D54"
@@ -467,22 +467,22 @@
"end": 2515173,
"tags": [
{
- "id-ref": "Belgique"
+ "id-ref": "edab1808-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Flamands"
+ "id-ref": "edab1c36-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Patrick Rogiers"
+ "id-ref": "edab1fec-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "vuvuzela"
+ "id-ref": "edab238e-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "Wallons"
+ "id-ref": "edab2730-b9ce-11df-9e63-00145ea4a2be"
},
{
- "id-ref": "éléction"
+ "id-ref": "edab2b68-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -500,8 +500,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_3FC1D037-34A3-FEF7-541C-B2C31ED973A8"
@@ -511,7 +511,7 @@
"end": 2646767,
"tags": [
{
- "id-ref": "sociologie du sport"
+ "id-ref": "edab8162-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -529,8 +529,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_82613B88-9578-DC2C-D7D0-B2C5BE0B7BDA"
@@ -540,7 +540,7 @@
"end": 3012503,
"tags": [
{
- "id-ref": "theatre.doc"
+ "id-ref": "edabd6b2-b9ce-11df-9e63-00145ea4a2be"
}
],
"media": "franceculture_retourdudimanche20100620",
@@ -558,8 +558,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
- "dc:modified": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
+ "dc:modified": "2010-09-06T15:53:44.572226",
"dc:creator": "perso"
},
"id": "s_24324ACF-E8D0-46FE-E977-B2C7D1A1FBAA"
@@ -583,8 +583,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_C5118055-7575-43BD-05BA-B2B91B977B61"
@@ -608,8 +608,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_224FA6AF-AC6B-5412-C882-B2B91B97A0BC"
@@ -633,8 +633,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_99950FC3-A79B-9A08-5E90-B2B91B97C844"
@@ -658,8 +658,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_7DE30BA7-4E61-F41D-9EB8-B2B91B97C4C1"
@@ -683,8 +683,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_C588B92E-EB4F-B383-4D50-B2B91B97B4C2"
@@ -708,8 +708,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_87A5F46B-9588-4C02-24B6-B2B91B97037A"
@@ -733,8 +733,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_1CF29EC2-1109-25FF-F8D7-B2B91B97944A"
@@ -758,8 +758,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_B3A6C0FE-10B0-91D2-BC98-B2B91B97EC15"
@@ -783,8 +783,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_FE44EC82-002E-3A78-B712-B2B91B975C76"
@@ -808,8 +808,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_943F5904-D438-F263-C8B4-B2B91B97608C"
@@ -833,8 +833,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_FBB30EA9-8699-E909-62BA-B2B91B9792C6"
@@ -858,8 +858,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_8F2D73FD-4C22-DE0A-E22A-B2B91B97CA92"
@@ -883,8 +883,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_716B6123-2040-71A2-3B8F-B2B91B978EF1"
@@ -908,8 +908,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_1D64F959-8A86-FD3E-3FD1-B2B91B972648"
@@ -933,8 +933,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_D7398F00-E4F5-9692-88D0-B2B91B976204"
@@ -958,8 +958,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_21BCA9F6-A71C-C601-1247-B2B91B97A664"
@@ -983,8 +983,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_45E25D8E-416B-8158-23DD-B2B91B9745CE"
@@ -1008,8 +1008,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_88FBDAB0-64C7-74B9-7C5A-B2B91B977EC3"
@@ -1033,8 +1033,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_6506C8B0-AAB0-3678-31FD-B2B91B978702"
@@ -1058,8 +1058,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_CB104420-63C8-F957-78CF-B2B91B97D0B0"
@@ -1083,8 +1083,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_1947C9C6-B47F-1544-AD5E-B2B91B97A552"
@@ -1108,8 +1108,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_874A4942-9AA9-CA9A-F595-B2B91B97210A"
@@ -1133,8 +1133,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
- "dc:modified": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
+ "dc:modified": "2010-09-06T15:53:44.626882",
"dc:creator": "perso"
},
"id": "s_1F7790E7-BC3F-6C87-9B4F-B2B91B9769B6"
@@ -1158,8 +1158,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_9CA4F1C6-6FA0-7070-EBCA-B293F1474ECC"
@@ -1183,8 +1183,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_F1A706C3-8CFD-8479-FE1A-B293F147FB10"
@@ -1208,8 +1208,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_D87336F4-AF1E-1192-AD6F-B293F14750F6"
@@ -1233,8 +1233,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_EA074915-79A3-E8C3-A7BD-B293F1472B4A"
@@ -1258,8 +1258,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_20B4A5D9-D87C-329A-8D6E-B293F147D954"
@@ -1283,8 +1283,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_F0A40BE7-0DE5-F4AE-00E7-B293F147C76E"
@@ -1308,8 +1308,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_801AE38E-9E88-347D-365A-B293F147FA32"
@@ -1333,8 +1333,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_F5F3F6C7-2152-6FCA-3838-B293F147F4A6"
@@ -1358,8 +1358,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_F01AD8C9-6F7F-0ED8-FCB8-B293F147EAE0"
@@ -1383,8 +1383,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_306A6A5E-BB28-DBB3-1B2C-B293F147B879"
@@ -1408,8 +1408,8 @@
"meta": {
"dc:contributor": "perso",
"id-ref": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
- "dc:modified": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
+ "dc:modified": "2010-09-06T15:53:44.675786",
"dc:creator": "perso"
},
"id": "s_40445FD2-80E5-F9C9-57B8-B293F1472D60"
@@ -1421,36 +1421,36 @@
"dc:creator": "perso",
"dc:title": "Chapitrage Notes",
"id": "c_1F07824B-F512-78A9-49DB-6FB51DAB9560",
- "dc:created": "2010-08-02T09:15:21.321004",
+ "dc:created": "2010-09-06T15:53:44.572226",
"dc:description": "",
- "dc:modified": "2010-08-02T09:15:21.321004"
+ "dc:modified": "2010-09-06T15:53:44.572226"
},
{
"dc:contributor": "perso",
"dc:creator": "perso",
"dc:title": "Mes notes",
"id": "c_F6BB72C6-686E-1E8A-D775-B2B91B97C795",
- "dc:created": "2010-08-02T09:15:21.339622",
+ "dc:created": "2010-09-06T15:53:44.626882",
"dc:description": "",
- "dc:modified": "2010-08-02T09:15:21.339622"
+ "dc:modified": "2010-09-06T15:53:44.626882"
},
{
"dc:contributor": "perso",
"dc:creator": "perso",
"dc:title": "Mes notes",
"id": "c_393E05F0-80CC-9D29-A42B-B293F1478831",
- "dc:created": "2010-08-02T09:15:21.388167",
+ "dc:created": "2010-09-06T15:53:44.675786",
"dc:description": "",
- "dc:modified": "2010-08-02T09:15:21.388167"
+ "dc:modified": "2010-09-06T15:53:44.675786"
},
{
"dc:contributor": "perso",
"dc:creator": "perso",
"dc:title": "Chapitrage",
"id": "c_DE60F95E-73B8-922D-3AC7-6FB197A1BF16",
- "dc:created": "2010-08-02T09:15:21.412002",
+ "dc:created": "2010-09-06T15:53:44.699595",
"dc:description": "",
- "dc:modified": "2010-08-02T09:15:21.412002"
+ "dc:modified": "2010-09-06T15:53:44.699595"
}
]
})
\ No newline at end of file
--- a/sbin/build/client.xml Fri Aug 06 17:19:37 2010 +0200
+++ b/sbin/build/client.xml Tue Sep 14 13:15:28 2010 +0200
@@ -7,12 +7,16 @@
</taskdef>
<target name="compile">
<jscomp compilationLevel="simple" warning="verbose"
- debug="false" output="output/file.js">
- <externs dir="${basedir}/../res">
+ debug="false" output="../../client/player/src/js/LdtPlayer.min.js">
+ <externs dir="${basedir}/../res/">
<file name="jquery-1.3.2.externs.js"/>
+ <file name="tooltip.js"/>
+ <file name="swfobject.js"/>
+ <!-- -->
+
</externs>
<sources dir="${basedir}/../../client/player/src/js">
- <file name="LdtPlayer.js"/>
+ <file name="LdtPlayerW5.js"/>
</sources>
</jscomp>
</target>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sbin/build/compil.bat Tue Sep 14 13:15:28 2010 +0200
@@ -0,0 +1,1 @@
+ant -f client.xml
\ No newline at end of file