web/embed_form.php
author Raphael Velt <raph.velt@gmail.com>
Mon, 21 May 2012 18:18:08 +0200
changeset 620 953c68b4da79
parent 536 5dd170a735e9
child 1560 d441b50586ba
permissions -rw-r--r--
Added Edito 24.05 + embed code now relaying mediafragment
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     1
<?php
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     2
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     3
/**
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     4
 * include some common code (like we did in the 90s)
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     5
 * People still do this? ;)
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     6
 */
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
     7
$rep = $_REQUEST['rep'];
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
     8
include_once dirname(__FILE__).'/'.$rep.'/config.php';
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
     9
include_once 'common.php';
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    10
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    11
?>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    12
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    13
<html lang="<?php echo($actual); ?>">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    14
  <head>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    15
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    16
    <title>embed Configuration</title>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    17
	
233
10d6fd6ce9ab - put all in a registry
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 229
diff changeset
    18
	<link rel="stylesheet" href="<?php echo(registry_url('custom', 'css')); ?>" type="text/css" media="screen, projection">
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    19
	
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    20
	<!-- FONT -->
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
    21
	<link href='<?php echo(registry_url('PT-Sans_Narrow','font'))?>' rel='stylesheet' type='text/css'>
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
    22
	<link href='<?php echo(registry_url('PT-Sans','font'))?>' rel='stylesheet' type='text/css'>
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
    23
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    24
	<style type="text/css"> 
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    25
		body{
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    26
			padding:0px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    27
			margin:0px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    28
			background-image:none;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    29
			width:300px;
229
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
    30
			padding:5px;
74c9ddc3640b a lot of changes in the web file organization.
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents: 214
diff changeset
    31
		}
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    32
		textarea {
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    33
			margin-left:3px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    34
			height: 150px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    35
			width: 330px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    36
			padding:5px;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    37
			background-image:none;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    38
			border:solid 1px #ccc;
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 536
diff changeset
    39
			font-size: 12px;
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    40
		}
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    41
	</style>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    42
	<script type="text/javascript">
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    43
	
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    44
	  var _gaq = _gaq || [];
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    45
	  _gaq.push(['_setAccount', 'UA-23581291-1']);
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    46
	  _gaq.push(['_trackPageview']);
276
f7669b499d41 _setAllowAnchor
Samuel Huron <samuel.huron@centrepompidou.fr>
parents: 233
diff changeset
    47
	  _gaq.push(['_setAllowAnchor', true]); 
f7669b499d41 _setAllowAnchor
Samuel Huron <samuel.huron@centrepompidou.fr>
parents: 233
diff changeset
    48
	
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    49
	
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    50
	  (function() {
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    51
	    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    52
	    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    53
	    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    54
	  })();
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    55
	
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    56
	</script>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    57
  </head>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    58
  
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    59
  <h1 class="tweetWriterTitle" style="width:300px;" > <?php print $translate->_("EmbedTitle"); ?></h1>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    60
  
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    61
  <p style="font-size:12px;width:300px;"><?php print $translate->_("EmbedText"); ?> </p>
620
953c68b4da79 Added Edito 24.05 + embed code now relaying mediafragment
Raphael Velt <raph.velt@gmail.com>
parents: 536
diff changeset
    62
  <textarea cols="10" rows="10"><div id="metadataplayer_embed"></div><script type="text/javascript" src="<?php echo(URL_ROOT.$rep); ?>/embedscript.php<?php echo(array_key_exists("metadata",$_GET)?"?metadata=".$_GET["metadata"]:""); ?>"></script></textarea>
197
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    63
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    64
  </body>
77e3207456b7 rename MashUp to mashup step 2
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    65
</html>
PKTJ$ iconolab-89dc19ad8073/design/.keepmeUT0YPKTJ.qԾKQ+ ]iconolab-89dc19ad8073/design/components.odtUT0YPKTJ#&&> }Liconolab-89dc19ad8073/design/heatmap/Resources/SampleStyle.cssUT0YPKTJ4_4/ Miconolab-89dc19ad8073/design/heatmap/index.htmlUT0YPKTJ&rT` 9 Siconolab-89dc19ad8073/design/heatmap/pages/admin_page.pngUT0YPKTJ݌9 >iconolab-89dc19ad8073/design/heatmap/pages/admin_tags.pngUT0YPKTJ>`@ iconolab-89dc19ad8073/design/heatmap/pages/annotation_create.pngUT0YPKTJQg L? iconolab-89dc19ad8073/design/heatmap/pages/annotation_saved.pngUT0YPKTJQRs@ Ƶ iconolab-89dc19ad8073/design/heatmap/pages/choisir_une_image.pngUT0YPKTJ-\=9 K iconolab-89dc19ad8073/design/heatmap/pages/components.pngUT0YPKTJx(R 5 iconolab-89dc19ad8073/design/heatmap/pages/folder.pngUT0YPKTJҳ9^ O 6 (kiconolab-89dc19ad8073/design/heatmap/pages/heatmap.pngUT0YPKTJ4eϿ3 4kiconolab-89dc19ad8073/design/heatmap/pages/home.pngUT0YPKTJ`c' p ? jIiconolab-89dc19ad8073/design/heatmap/pages/image_principale.pngUT0YPKTJ'78 }q'iconolab-89dc19ad8073/design/heatmap/pages/image_tab.pngUT0YPKTJ]J.J6 s(iconolab-89dc19ad8073/design/heatmap/pages/landing.pngUT0YPKTJC(4 *(iconolab-89dc19ad8073/design/heatmap/pages/login.pngUT0YPKTJWb: (iconolab-89dc19ad8073/design/heatmap/pages/open_folder.pngUT0YPKTJY@ rX.&I8 *7*iconolab-89dc19ad8073/design/heatmap/pages/user_page.pngUT0YPKTJmtd ~9 e+iconolab-89dc19ad8073/design/heatmap/pages/user_pages.pngUT0YPKTJ#&&D y+iconolab-89dc19ad8073/design/iconolab/demo/Resources/SampleStyle.cssUT0YPKTJ*b~85 +iconolab-89dc19ad8073/design/iconolab/demo/index.htmlUT0YPKTJG% n < `+iconolab-89dc19ad8073/design/iconolab/demo/pages/addatag.pngUT0YPKTJgC W7iconolab-89dc19ad8073/design/iconolab/demo/pages/addtagwithlist.pngUT0YPKTJIYI? 8>iconolab-89dc19ad8073/design/iconolab/demo/pages/admin_page.pngUT0YPKTJk\v>/? @iconolab-89dc19ad8073/design/iconolab/demo/pages/admin_tags.pngUT0YPKTJ^5QC>fF RAiconolab-89dc19ad8073/design/iconolab/demo/pages/choisir_une_image.pngUT0YPKTJFIF? Biconolab-89dc19ad8073/design/iconolab/demo/pages/components.pngUT0YPKTJ (riconolab-89dc19ad8073/design/iconolab/demo/pages/image_tab.pngUT0YPKTJ 7%VA< z>siconolab-89dc19ad8073/design/iconolab/demo/pages/landing.pngUT0YPKTJ( qMҾF@ $dsiconolab-89dc19ad8073/design/iconolab/demo/pages/links_pages.pngUT0YPKTJC(: m#ticonolab-89dc19ad8073/design/iconolab/demo/pages/login.pngUT0YPKTJw&fx B :ticonolab-89dc19ad8073/design/iconolab/demo/pages/qualification.pngUT0YPKTJ[(I ;ticonolab-89dc19ad8073/design/iconolab/demo/pages/save_detail_fragment.pngUT0YPKTJYjdʚ}? 5 wiconolab-89dc19ad8073/design/iconolab/demo/pages/suggestion.pngUT0YPKTJk~VG uwiconolab-89dc19ad8073/design/iconolab/demo/pages/suggestions_images.pngUT0YPKTJ wBE xiconolab-89dc19ad8073/design/iconolab/demo/pages/suggestions_tags.pngUT0YPKTJyi F vyiconolab-89dc19ad8073/design/iconolab/demo/pages/user_notification.pngUT0YPKTJŪQH yiconolab-89dc19ad8073/design/iconolab/demo/pages/user_notofication_2.pngUT0YPKTJqƞ&A> Jziconolab-89dc19ad8073/design/iconolab/demo/pages/user_page.pngUT0YPKTJ{Zs? q{iconolab-89dc19ad8073/design/iconolab/demo/pages/user_pages.pngUT0YPKTJ= )D {iconolab-89dc19ad8073/design/iconolab/demo/pages/user_suggestion.pngUT0YPKTJ09g)M0 ~iconolab-89dc19ad8073/design/iconolab/dossier.epUT0YPKTJFwPM 6 k~iconolab-89dc19ad8073/design/iconolab/ex_merge_form.epUT0YPK55tO/