# HG changeset patch # User Raphael Velt # Date 1329225463 -3600 # Node ID f7fd2458fc5ca4749bef4dcaecb2b9ce59605d78 # Parent b90c2bd832dd434562ccf032c63c1efe09e8266f Added museo 14.02.12 and several corrections diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/config.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/2011-2012-museo-contribution/config.php Tue Feb 14 14:17:43 2012 +0100 @@ -0,0 +1,54 @@ + '#museoweb', + 'date' => '14.02.2012', + 'heure' => '17h00-20h00', + 'place' => 'Centre Pompidou (Paris)', + 'duration' => '', + + 'title' => "Muséologie, muséographie et nouvelles formes d’adresse au public", + + 'abstract' => "« Comment la dynamique de contribution peut-elle converger avec l’indexation et la numérisation mise en place par les Musées ? »
14 / 12 / 2012 de 17h00 à 20h00 @ Centre Pompidou (Paris)", + + 'description'=> "

Comment la dynamique de contribution peut-elle converger avec l’indexation et la numérisation mise en place par les Musées ? (le 14/12/2012)

+

Quelle autorité ? Quel rapport au temps et notamment pour la recherche ? Les communautés intermédiaires ? Quelles stratégies et pour quel public ? Comment mettre en place les outils de la convergence ? Question de l’autorité en interne ou externe : les médiateurs, les conservateurs ? La question objectivité/subjectivité.

+ +

Coups de projecteur :

+", + + 'link' => 'http://www.iri.centrepompidou.fr/evenement/museologie-museographie-et-nouvelles-formes-dadresse-au-public/?lang=fr_fr', + 'islive' => true, + 'keywords' => 'muséographie, muséologie, contribution, indexation, numérisation, communautés, recherche, médiation', + 'rep' => basename('__DIR__'), + 'partenaires'=> " Ministère de la Culture et communication +| +IRI ", + + 'client_visual' => "images/big_visuel_museo_2011_fr.png", // 501 × 376 pixels + + 'head_logo' => 'images/head_logo.gif', // 171 × 63 pixels + + 'slide_background' => "images/slide4_museo_fr.png", // 606 × 282 pixels + + 'archive_img' => "images/museo-2011.jpg", // 270 × 150 pixels + + 'archive_title' => "Muséologie 2011 - Comment la dynamique de contribution peut-elle converger avec l’indexation et la numérisation mise en place par les Musées ?", + 'archive_description' => "par IRI au Centre Pompidou
le mardi 14 février 2012 | 17:00 - 20:00", + + // After the event + 'metadata' => "http://www.iri.centrepompidou.fr/dev/ldt/ldtplatform/ldt/cljson/id/321ae0b0-ff2c-11e0-95c2-00145ea49a02", + 'duration' => 10876600, + 'player' => "res/metadataplayer/src/js/LdtPlayer.js", + 'div_height' => 740, + 'player_width' => 650, + 'player_height' => 500, +); \ No newline at end of file diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/big_visuel_museo_2011_fr.png Binary file web/2011-2012-museo-contribution/images/big_visuel_museo_2011_fr.png has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/head_logo.gif Binary file web/2011-2012-museo-contribution/images/head_logo.gif has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/museo-2011.jpg Binary file web/2011-2012-museo-contribution/images/museo-2011.jpg has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/polemic_fly_home.png Binary file web/2011-2012-museo-contribution/images/polemic_fly_home.png has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/slide4_museo_fr.png Binary file web/2011-2012-museo-contribution/images/slide4_museo_fr.png has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/images/tweetExplainBgd.gif Binary file web/2011-2012-museo-contribution/images/tweetExplainBgd.gif has changed diff -r b90c2bd832dd -r f7fd2458fc5c web/2011-2012-museo-contribution/index.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/2011-2012-museo-contribution/index.php Tue Feb 14 14:17:43 2012 +0100 @@ -0,0 +1,6 @@ + \ No newline at end of file diff -r b90c2bd832dd -r f7fd2458fc5c web/client_new.php --- a/web/client_new.php Mon Feb 13 12:47:01 2012 +0100 +++ b/web/client_new.php Tue Feb 14 14:17:43 2012 +0100 @@ -58,9 +58,32 @@ document.location.href="/client.php?CONNECT=true"; }); + function updateCounter() { + var _v = $("#status").val(); + if (_v.length > 140) { + _v = _v.substr(0,140); + $("#status").val(_v); + } + $('#tweetCounter').html(140-_v.length); + if(140-_v.length < 0) { + $('#tweetCounter').addClass("tweetCounterNegative"); + } + else { + $('#tweetCounter').removeClass("tweetCounterNegative"); + } + $(".tweetButton").each(function(_i, _e) { + if (_v.search($(_e).find('span.twbSyntax').text().replace(/(\W)/g, '\\$1')) > -1) { + $(_e).addClass('selected'); + } else { + $(_e).removeClass('selected'); + } + }); + } + // BUTTONS $(".tweetButton").click(function() { - add_grammar($(this).text()); + add_grammar($(this).find('span.twbSyntax').text()); + updateCounter(); }) // SEND TWEETS @@ -83,17 +106,9 @@ }); }); + - $("#status").bind("change keyup paste blur focus",function() { - newval = 140-$("#status").val().length; - $('#tweetCounter').val(newval); - if(newval < 0) { - $('#tweetCounter').addClass("tweetCounterNegative"); - } - else { - $('#tweetCounter').removeClass("tweetCounterNegative"); - } - }); + $("#status").bind("change keyup paste blur focus",updateCounter); $("#Program").fancybox({ @@ -123,9 +138,6 @@ }); // @@ -288,12 +300,15 @@
"); } else { - echo(""); + echo(""); } ?>