web/lib/Zend/Loader/SplAutoloader.php
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Wed, 22 Jan 2014 10:31:05 +0100
changeset 1053 59db337826e6
parent 808 6b6c2214f778
child 1230 68c69c656a2c
permissions -rw-r--r--
add eco attention#3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
808
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     1
<?php
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     2
/**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     3
 * Zend Framework
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     4
 *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     5
 * LICENSE
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     6
 *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     7
 * This source file is subject to the new BSD license that is bundled
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     8
 * with this package in the file LICENSE.txt.
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
     9
 * It is also available through the world-wide-web at this URL:
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    10
 * http://framework.zend.com/license/new-bsd
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    11
 * If you did not receive a copy of the license and are unable to
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    12
 * obtain it through the world-wide-web, please send an email
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    13
 * to license@zend.com so we can send you a copy immediately.
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    14
 *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    15
 * @category   Zend
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    16
 * @package    Zend_Loader
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    17
 * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    18
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    19
 */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    20
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    21
if (interface_exists('Zend_Loader_SplAutoloader')) return;
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    22
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    23
/**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    24
 * Defines an interface for classes that may register with the spl_autoload 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    25
 * registry
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    26
 *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    27
 * @package    Zend_Loader
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    28
 * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    29
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    30
 */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    31
interface Zend_Loader_SplAutoloader
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    32
{
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    33
    /**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    34
     * Constructor
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    35
     *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    36
     * Allow configuration of the autoloader via the constructor.
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    37
     * 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    38
     * @param  null|array|Traversable $options 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    39
     * @return void
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    40
     */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    41
    public function __construct($options = null);
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    42
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    43
    /**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    44
     * Configure the autoloader
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    45
     *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    46
     * In most cases, $options should be either an associative array or 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    47
     * Traversable object.
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    48
     * 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    49
     * @param  array|Traversable $options 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    50
     * @return SplAutoloader
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    51
     */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    52
    public function setOptions($options);
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    53
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    54
    /**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    55
     * Autoload a class
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    56
     *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    57
     * @param   $class
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    58
     * @return  mixed
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    59
     *          False [if unable to load $class]
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    60
     *          get_class($class) [if $class is successfully loaded]
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    61
     */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    62
    public function autoload($class);
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    63
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    64
    /**
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    65
     * Register the autoloader with spl_autoload registry
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    66
     *
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    67
     * Typically, the body of this will simply be:
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    68
     * <code>
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    69
     * spl_autoload_register(array($this, 'autoload'));
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    70
     * </code>
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    71
     * 
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    72
     * @return void
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    73
     */
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    74
    public function register();
6b6c2214f778 update Zend and twitter oauth end point
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
diff changeset
    75
}
PKSKFV}* tweet_live-f25b6dad1a64/web/.htaccess.tmplUT-TPKSKF[mB .tweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/config.phpUT-TPKSKFx̐[ tweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyL tweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/images/head_logo.gifUT-TPKSKF\tFM 3tweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/images/museo-2011.jpgUT-TPKSKFЕ;3>dBeR tweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/images/slide4_museo_fr.pngUT-TPKSKFWj~A hvtweet_live-f25b6dad1a64/web/2011-2012-museo-audiovisuel/index.phpUT-TPKSKFP' C Jwtweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/config.phpUT-TPKSKFx̐\ h}tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyM  tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/head_logo.gifUT-TPKSKF\tFN  tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/museo-2011.jpgUT-TPKSKFl>dBeT tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/polemic_fly_home.pngUT-TPKSKFЕ;3>dBeS tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/slide4_museo_fr.pngUT-TPKSKFX6GI D S Rtweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/images/tweetExplainBgd.gifUT-TPKSKFWj~B \\tweet_live-f25b6dad1a64/web/2011-2012-museo-contribution/index.phpUT-TPKSKFe$W< ?]tweet_live-f25b6dad1a64/web/2011-2012-museo-desir/config.phpUT-TPKSKFeA=S xctweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/big_visuel_catastrophe.jpgUT-TPKSKFx̐U CZtweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyF tweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/head_logo.gifUT-TPKSKF\tFG Vtweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/museo-2011.jpgUT-TPKSKFl>dBeM etweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/polemic_fly_home.pngUT-TPKSKFЕ;3>dBeL tweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/slide4_museo_fr.pngUT-TPKSKFX6GI D L A/tweet_live-f25b6dad1a64/web/2011-2012-museo-desir/images/tweetExplainBgd.gifUT-TPKSKFWj~; 9tweet_live-f25b6dad1a64/web/2011-2012-museo-desir/index.phpUT-TPKSKFbc A 9tweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/config.phpUT-TPKSKFx̐Z ?tweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyK tweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/images/head_logo.gifUT-TPKSKF\tFL tweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/images/museo-2011.jpgUT-TPKSKFЕ;3>dBeQ Ktweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/images/slide4_museo_fr.pngUT-TPKSKFWj~@ Ktweet_live-f25b6dad1a64/web/2011-2012-museo-ingenierie/index.phpUT-TPKSKF7a A ,tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/config.phpUT-TPKSKFx̐Z tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyK (G#tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/images/head_logo.gifUT-TPKSKF\tFL L#tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/images/museo-2011.jpgUT-TPKSKFЕ;3>dBeQ #tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/images/slide4_museo_fr.pngUT-TPKSKFWj~@ &&tweet_live-f25b6dad1a64/web/2011-2012-museo-interfaces/index.phpUT-TPKSKFw@ 클'&tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/config.phpUT-TPKSKFeA=W .&tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/big_visuel_catastrophe.jpgUT-TPKSKFx̐Y %'tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyJ M*tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/head_logo.gifUT-TPKSKF\tFK Ļ*tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/museo-2011.jpgUT-TPKSKFl>dBeQ 01+tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/polemic_fly_home.pngUT-TPKSKFЕ;3>dBeV -tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/slide4_catastrophe_fr.pngUT-TPKSKFX6GI D P /tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/images/tweetExplainBgd.gifUT-TPKSKFWj~? 큑0tweet_live-f25b6dad1a64/web/2011-2012-museo-ouverture/index.phpUT-TPKSKF^ F q0tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/config.phpUT-TPKSKFeA=] 0tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/big_visuel_catastrophe.jpgUT-TPKSKFx̐_ 1tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/big_visuel_museo_2011_fr.pngUT-TPKSKFfyP {4tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/head_logo.gifUT-TPKSKF\tFQ 4tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/museo-2011.jpgUT-TPKSKFl>dBeW j5tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/polemic_fly_home.pngUT-TPKSKFЕ;3>dBeV 6s7tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/slide4_museo_fr.pngUT-TPKSKFX6GI D V 9tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/images/tweetExplainBgd.gifUT-TPKSKFWj~E 9tweet_live-f25b6dad1a64/web/2011-2012-museo-structured-data/index.phpUT-TPKSKF.Mv* 9tweet_live-f25b6dad1a64/web/CPV/config.phpUT-TPKSKF-|8Е=8 k9tweet_live-f25b6dad1a64/web/CPV/images/big_visuel_mb.pngUT-TPKSKF4c4 }?tweet_live-f25b6dad1a64/web/CPV/images/head_logo.gifUT-TPKSKFjJʵ3 ځ?tweet_live-f25b6dad1a64/web/CPV/images/tail_cpv.pngUT-TPKSKF7p : 8Atweet_live-f25b6dad1a64/web/CPV/images/tweetExplainBgd.gifUT-TPKSKFWj~) DAtweet_live-f25b6dad1a64/web/CPV/index.phpUT-TPKSKFF. DAtweet_live-f25b6dad1a64/web/CPV/traduction.phpUT-TPKSKFVkI ? yJAtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/config.phpUT-TPKSKFCѧtiR ZOAtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/images/big_visuel_rsln_mb.jpgUT-TPKSKFatB p I >Ctweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/images/head_logo.gifUT-TPKSKF IKF LCtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/images/slide4.jpgUT-TPKSKFJM#rsS qeDtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/images/tail_jane-mcgonigal.jpgUT-TPKSKFX6GI D O Dtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/images/tweetExplainBgd.gifUT-TPKSKFWj~> Dtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/index.phpUT-TPKSKFcC Dtweet_live-f25b6dad1a64/web/JaneMcGonigal-gameDesign/traduction.phpUT-TPKSKFC% WDtweet_live-f25b6dad1a64/web/about.phpUT-TPKSKF!3/ Dtweet_live-f25b6dad1a64/web/archives-iframe.phpUT-TPKSKF/A( Dtweet_live-f25b6dad1a64/web/archives.phpUT-TPKSKF2 \1 Dtweet_live-f25b6dad1a64/web/archives_metadata.phpUT-TPKSKF+d I Etweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/config.phpUT-TPKSKFz/98:U Etweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/images/archive_img.jpgUT-TPKSKF |QYϱW [@Etweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/images/client_visual.jpgUT-TPKSKFfyS Etweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/images/head_logo.gifUT-TPKSKFU Z $Etweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/images/slide_background.jpgUT-TPKSKFWj~H {Ftweet_live-f25b6dad1a64/web/attention-1314-01-notion-attention/index.phpUT-TPKSKF5g V |Ftweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/config.phpUT-TPKSKFz/98:b .Ftweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/images/archive_img.jpgUT-TPKSKF |QYϱd Ftweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/images/client_visual.jpgUT-TPKSKFfy` kGtweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/images/head_logo.gifUT-TPKSKFU g zqGtweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/images/slide_background.jpgUT-TPKSKFWj~U 8Gtweet_live-f25b6dad1a64/web/attention-1314-02-syndrome-saturation-cognitive/index.phpUT-TPKSKF5[\S .Gtweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/config.phpUT-TPKSKFz/98:_ Htweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/images/archive_img.jpgUT-TPKSKF |QYϱa :Htweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/images/client_visual.jpgUT-TPKSKFfy] XHtweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/images/head_logo.gifUT-TPKSKFU d Htweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/images/slide_background.jpgUT-TPKSKFWj~R uItweet_live-f25b6dad1a64/web/attention-1314-03-nouvelle-valeur-economique/index.phpUT-TPKSKFτZNrV vItweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/config.phpUT-TPKSKFz/98:b }Itweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/images/archive_img.jpgUT-TPKSKF |QYϱd CItweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/images/client_visual.jpgUT-TPKSKFfy` fJtweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/images/head_logo.gifUT-TPKSKFU g &lJtweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/images/slide_background.jpgUT-TPKSKFWj~U Jtweet_live-f25b6dad1a64/web/attention-1314-04-pathologies-attention-memoire/index.phpUT-TPKSKFT ] Jtweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/config.phpUT-TPKSKFz/98:i Jtweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/images/archive_img.jpgUT-TPKSKF |QYϱk 3Ktweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/images/client_visual.jpgUT-TPKSKFfyg LKtweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/images/head_logo.gifUT-TPKSKFU n Ktweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/images/slide_background.jpgUT-TPKSKFWj~\ oLtweet_live-f25b6dad1a64/web/attention-1314-05-marche-attention-avenement-publicite/index.phpUT-TPKSKF@ [ pLtweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/config.phpUT-TPKSKFz/98:g tvLtweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/images/archive_img.jpgUT-TPKSKF |QYϱi Ltweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/images/client_visual.jpgUT-TPKSKFfye =_Mtweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/images/head_logo.gifUT-TPKSKFU l dMtweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/images/slide_background.jpgUT-TPKSKF:(i{Z Mtweet_live-f25b6dad1a64/web/attention-1314-06-dynamique-ecrans-images-virtuelles/index.phpUT-TPKSKFRh&N Mtweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/config.phpUT-TPKSKF7&XZ Mtweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/images/archive_img.jpgUT-TPKSKFyz\ Ntweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/images/client_visual.jpgUT-TPKSKFfyX *;Ptweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/images/head_logo.gifUT-TPKSKFEz_ @Ptweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/images/slide_background.jpgUT-TPKSKF Fh|M M2Rtweet_live-f25b6dad1a64/web/attention-1415-01-attention-automatisee/index.phpUT-TPKSKF42 7 93Rtweet_live-f25b6dad1a64/web/body-image-media/config.phpUT-TPKSKF1ڽ[2R_ZE *8Rtweet_live-f25b6dad1a64/web/body-image-media/images/client_visual.jpgUT-TPKSKFpEA ؊Rtweet_live-f25b6dad1a64/web/body-image-media/images/head_logo.gifUT-TPKSKFRn +-C КRtweet_live-f25b6dad1a64/web/body-image-media/images/identifiant.jpgUT-TPKSKF2ٙq0 :H Rtweet_live-f25b6dad1a64/web/body-image-media/images/slide_background.jpgUT-TPKSKFIxj|6 Rtweet_live-f25b6dad1a64/web/body-image-media/index.phpUT-TPKSKF 8 Rtweet_live-f25b6dad1a64/web/bpi-biens-communs/config.phpUT-TPKSKFvubCdD Rtweet_live-f25b6dad1a64/web/bpi-biens-communs/images/archive_img.jpgUT-TPKSKF[PRiSF =cStweet_live-f25b6dad1a64/web/bpi-biens-communs/images/client_visual.jpgUT-TPKSKFXyB Ttweet_live-f25b6dad1a64/web/bpi-biens-communs/images/logo_head.pngUT-TPKSKF I Ttweet_live-f25b6dad1a64/web/bpi-biens-communs/images/slide_background.jpgUT-TPKSKFWj~7 cUtweet_live-f25b6dad1a64/web/bpi-biens-communs/index.phpUT-TPKSKFW|=B ;Utweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/config.phpUT-TPKSKFRAUchdJ GUtweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/images/archive.jpgUT-TPKSKF9E[eM Vtweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/images/bgd_player.jpgUT-TPKSKF6 S""$M {Wtweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/images/fond_slide.jpgUT-TPKSKFXyL RXtweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/images/logo_head.pngUT-TPKSKFWj~A Xtweet_live-f25b6dad1a64/web/bpi-des-livres-aux-machines/index.phpUT-TPKSKFF7> Xtweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/config.phpUT-TPKSKFZLgHF Xtweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/images/archive.jpgUT-TPKSKFbdI Ytweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/images/bgd_player.jpgUT-TPKSKFj4A>I QZtweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/images/fond_slide.jpgUT-TPKSKFXyH $\tweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/images/logo_head.pngUT-TPKSKFWj~= 3\tweet_live-f25b6dad1a64/web/bpi-extension-de-la-pub/index.phpUT-TPKSKF 5 4\tweet_live-f25b6dad1a64/web/bpi-floptechno/config.phpUT-TPKSKFtKΐ6A8A :\tweet_live-f25b6dad1a64/web/bpi-floptechno/images/archive_img.jpgUT-TPKSKFc̶mC q\tweet_live-f25b6dad1a64/web/bpi-floptechno/images/client_visual.jpgUT-TPKSKFXy? 3)]tweet_live-f25b6dad1a64/web/bpi-floptechno/images/logo_head.pngUT-TPKSKFF͍_BbF {8]tweet_live-f25b6dad1a64/web/bpi-floptechno/images/slide_background.jpgUT-TPKSKFWj~4 ]tweet_live-f25b6dad1a64/web/bpi-floptechno/index.phpUT-TPKSKFk;< ݘ]tweet_live-f25b6dad1a64/web/bpi-travailler-demain/config.phpUT-TPKSKFޏZ&jD $]tweet_live-f25b6dad1a64/web/bpi-travailler-demain/images/archive.jpgUT-TPKSKFi ;G ^tweet_live-f25b6dad1a64/web/bpi-travailler-demain/images/bgd_player.jpgUT-TPKSKFznzX!G _tweet_live-f25b6dad1a64/web/bpi-travailler-demain/images/fond_slide.jpgUT-TPKSKFXyF ,`tweet_live-f25b6dad1a64/web/bpi-travailler-demain/images/logo_head.pngUT-TPKSKFWj~; {#`tweet_live-f25b6dad1a64/web/bpi-travailler-demain/index.phpUT-TPKSKF{fA : W$`tweet_live-f25b6dad1a64/web/bpi-ville-connectee/config.phpUT-TPKSKFT|Z60B S*`tweet_live-f25b6dad1a64/web/bpi-ville-connectee/images/archive.jpgUT-TPKSKF$3ųE *atweet_live-f25b6dad1a64/web/bpi-ville-connectee/images/bgd_player.jpgUT-TPKSKF rjE ctweet_live-f25b6dad1a64/web/bpi-ville-connectee/images/fond_slide.jpgUT-TPKSKFXyD Rgtweet_live-f25b6dad1a64/web/bpi-ville-connectee/images/logo_head.pngUT-TPKSKFWj~9 cagtweet_live-f25b6dad1a64/web/bpi-ville-connectee/index.phpUT-TPKSKFr0 =bgtweet_live-f25b6dad1a64/web/bpidoudou/config.phpUT-TPKSKFxrƉ< igtweet_live-f25b6dad1a64/web/bpidoudou/images/archive_img.jpgUT-TPKSKFNԌ|{> gtweet_live-f25b6dad1a64/web/bpidoudou/images/client_visual.jpgUT-TPKSKFXy: oitweet_live-f25b6dad1a64/web/bpidoudou/images/logo_head.pngUT-TPKSKFgA ~itweet_live-f25b6dad1a64/web/bpidoudou/images/slide_background.jpgUT-TPKSKFWj~/ </ Zttweet_live-f25b6dad1a64/web/cineconf/config.phpUT-TPKSKFK,%%0 ttweet_live-f25b6dad1a64/web/cineconf/favuser.phpUT-TPKSKF . ttweet_live-f25b6dad1a64/web/cineconf/index.phpUT-TPKSKFZpeq . ttweet_live-f25b6dad1a64/web/cineconf/paris.phpUT-TPKSKF7%. httweet_live-f25b6dad1a64/web/cineconf/script.jsUT-TPKSKF<E`. utweet_live-f25b6dad1a64/web/cineconf/style.cssUT-TPKSKFJ/ utweet_live-f25b6dad1a64/web/cineconf/widget.phpUT-TPKSKF9d;% utweet_live-f25b6dad1a64/web/clear.phpUT-TPKSKF6g\6 0 wutweet_live-f25b6dad1a64/web/clic-2012/config.phpUT-TPKSKF<9esf= $utweet_live-f25b6dad1a64/web/clic-2012/images/clic_archive.jpgUT-TPKSKF 9HIA utweet_live-f25b6dad1a64/web/clic-2012/images/clic_live_screen.jpgUT-TPKSKFVNh< Rvtweet_live-f25b6dad1a64/web/clic-2012/images/clic_slider.jpgUT-TPKSKF⷗ԐNO? wtweet_live-f25b6dad1a64/web/clic-2012/images/head_logo_clic.pngUT-TPKSKFWj~/ 6xtweet_live-f25b6dad1a64/web/clic-2012/index.phpUT-TPKSKFykt`& 큁7xtweet_live-f25b6dad1a64/web/client.phpUT-TPKSKF}nw*R& Mxtweet_live-f25b6dad1a64/web/common.phpUT-TPKSKFxXD+ extweet_live-f25b6dad1a64/web/config.php.tmplUT-TPKSKF \)C =gxtweet_live-f25b6dad1a64/web/curiouser-digital-humanities/config.phpUT-TPKSKFafo#p$U Jnxtweet_live-f25b6dad1a64/web/curiouser-digital-humanities/images/Archive_Curiouser.jpgUT-TPKSKF915R wxtweet_live-f25b6dad1a64/web/curiouser-digital-humanities/images/Logo_Curiouser.gifUT-TPKSKF7FF- Y R 1xtweet_live-f25b6dad1a64/web/curiouser-digital-humanities/images/Logo_Curiouser.pngUT-TPKSKF;X xtweet_live-f25b6dad1a64/web/curiouser-digital-humanities/images/bgd-player_Curiouser.jpgUT-TPKSKFiP]itxX ytweet_live-f25b6dad1a64/web/curiouser-digital-humanities/images/fond_slide_Curiouser.jpgUT-TPKSKFWj~B #ztweet_live-f25b6dad1a64/web/curiouser-digital-humanities/index.phpUT-TPKSKFv!]> $ztweet_live-f25b6dad1a64/web/edito-1213-01-contextes/config.phpUT-TPKSKFzk%UJWJ ^-ztweet_live-f25b6dad1a64/web/edito-1213-01-contextes/images/archive_img.jpgUT-TPKSKFVUf0L vztweet_live-f25b6dad1a64/web/edito-1213-01-contextes/images/client_visual.jpgUT-TPKSKF0I )\{tweet_live-f25b6dad1a64/web/edito-1213-01-contextes/images/logo-edito.pngUT-TPKSKF^^O u{tweet_live-f25b6dad1a64/web/edito-1213-01-contextes/images/slide_background.jpgUT-TPKSKFWj~= O|tweet_live-f25b6dad1a64/web/edito-1213-01-contextes/index.phpUT-TPKSKFb@G O|tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/config.phpUT-TPKSKFzk%UJWS 3W|tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/images/archive_img.jpgUT-TPKSKFVUf0U T|tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/images/client_visual.jpgUT-TPKSKF0R }tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/images/logo-edito.pngUT-TPKSKF^^X }tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/images/slide_background.jpgUT-TPKSKFWj~F y~tweet_live-f25b6dad1a64/web/edito-1213-02-collectifs-auteurs/index.phpUT-TPKSKFsڐQ@ y~tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/config.phpUT-TPKSKFzk%UJWL ~tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/images/archive_img.jpgUT-TPKSKFVUf0N ~tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/images/client_visual.jpgUT-TPKSKF0K tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/images/logo-edito.pngUT-TPKSKF^^Q )tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/images/slide_background.jpgUT-TPKSKFWj~? ~tweet_live-f25b6dad1a64/web/edito-1213-04-lire-ecrire/index.phpUT-TPKSKFr}?< F ^tweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/config.phpUT-TPKSKFzk%UJWR tweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/images/archive_img.jpgUT-TPKSKFVUf0T 7tweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/images/client_visual.jpgUT-TPKSKF0Q ׁtweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/images/logo-edito.pngUT-TPKSKF^^W tweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/images/slide_background.jpgUT-TPKSKFWj~E ʂtweet_live-f25b6dad1a64/web/edito-1213-05-supports-ecriture/index.phpUT-TPKSKF>H ˂tweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/config.phpUT-TPKSKFzk%UJWT <ӂtweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/images/archive_img.jpgUT-TPKSKFVUf0V ^)tweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/images/client_visual.jpgUT-TPKSKF0S tweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/images/logo-edito.pngUT-TPKSKF^^Y tweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/images/slide_background.jpgUT-TPKSKFWj~G tweet_live-f25b6dad1a64/web/edito-1213-06-modeles-economiques/index.phpUT-TPKSKF  J tweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/config.phpUT-TPKSKFzk%UJWV tweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/images/archive_img.jpgUT-TPKSKFVUf0X Rtweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/images/client_visual.jpgUT-TPKSKF0U z+tweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/images/logo-edito.pngUT-TPKSKF^^[ Etweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/images/slide_background.jpgUT-TPKSKFWj~I tweet_live-f25b6dad1a64/web/edito-1213-07-lecteur-auteur-droits/index.phpUT-TPKSKFѣaCJ itweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/config.phpUT-TPKSKFq u c{cV -(tweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/images/archive_img.jpgUT-TPKSKFPҁMTX ċtweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/images/client_visual.jpgUT-TPKSKF0U وtweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/images/logo-edito.pngUT-TPKSKF~v+,bio[ ztweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/images/slide_background.jpgUT-TPKSKFWj~I Vtweet_live-f25b6dad1a64/web/edito-1314-01-quest-ce-quun-support/index.phpUT-TPKSKF你A X Wtweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/config.phpUT-TPKSKFq u c{cd ^tweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/images/archive_img.jpgUT-TPKSKFPҁMTf tweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/images/client_visual.jpgUT-TPKSKF0c tweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/images/logo-edito.pngUT-TPKSKF~v+,bioi )tweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/images/slide_background.jpgUT-TPKSKFWj~W tweet_live-f25b6dad1a64/web/edito-1314-02-lannotation-le-savoir-dans-la-marge/index.phpUT-TPKSKF(|? tweet_live-f25b6dad1a64/web/edito-1314-03-traduction/config.phpUT-TPKSKFq u c{cK tweet_live-f25b6dad1a64/web/edito-1314-03-traduction/images/archive_img.jpgUT-TPKSKFPҁMTM tweet_live-f25b6dad1a64/web/edito-1314-03-traduction/images/client_visual.jpgUT-TPKSKF0J Ftweet_live-f25b6dad1a64/web/edito-1314-03-traduction/images/logo-edito.pngUT-TPKSKF~v+,bioP "`tweet_live-f25b6dad1a64/web/edito-1314-03-traduction/images/slide_background.jpgUT-TPKSKFWj~> Ðtweet_live-f25b6dad1a64/web/edito-1314-03-traduction/index.phpUT-TPKSKFڏ'J gĐtweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/config.phpUT-TPKSKFq u c{cV ̐tweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/images/archive_img.jpgUT-TPKSKFPҁMTX }0tweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/images/client_visual.jpgUT-TPKSKF0U ~tweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/images/logo-edito.pngUT-TPKSKF~v+,bio[ 3tweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/images/slide_background.jpgUT-TPKSKFWj~I tweet_live-f25b6dad1a64/web/edito-1314-04-environnement-support/index.phpUT-TPKSKF鄾D ? tweet_live-f25b6dad1a64/web/edito-1314-05-algorithme/config.phpUT-TPKSKFq u c{cK tweet_live-f25b6dad1a64/web/edito-1314-05-algorithme/images/archive_img.jpgUT-TPKSKFPҁMTM B1tweet_live-f25b6dad1a64/web/edito-1314-05-algorithme/index.phpUT-TPKSKFK#NT !2tweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/config.phpUT-TPKSKFuT` 8tweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/images/archive_img.jpgUT-TPKSKF'Pb Ɨtweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/images/client_visual.jpgUT-TPKSKF0_ Ztweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/images/logo-edito.pngUT-TPKSKF8#bne stweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/images/slide_background.jpgUT-TPKSKFWj~S }֚tweet_live-f25b6dad1a64/web/edito-1415-01-hybridation-pratiques-recherche/index.phpUT-TPKSKF Ŵ W qךtweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/config.phpUT-TPKSKFuTc ޚtweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/images/archive_img.jpgUT-TPKSKF'Pe ltweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/images/client_visual.jpgUT-TPKSKF0b *tweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/images/logo-edito.pngUT-TPKSKF8#bnh tweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/images/slide_background.jpgUT-TPKSKFWj~V |tweet_live-f25b6dad1a64/web/edito-1415-02-ressources-documentation-recherche/index.phpUT-TPKSKF;5N }tweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/config.phpUT-TPKSKFuTZ 脞tweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/images/archive_img.jpgUT-TPKSKF'P\ tweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/images/client_visual.jpgUT-TPKSKF0Y Mtweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/images/logo-edito.pngUT-TPKSKF8#bn_ tweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/images/slide_background.jpgUT-TPKSKFWj~M "tweet_live-f25b6dad1a64/web/edito-1415-03-politique-archive-formats/index.phpUT-TPKSKFL$ \ #tweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/config.phpUT-TPKSKFuTh )tweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/images/archive_img.jpgUT-TPKSKF'Pj tweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/images/client_visual.jpgUT-TPKSKF0g yKtweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/images/logo-edito.pngUT-TPKSKF8#bnm 1etweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/images/slide_background.jpgUT-TPKSKFWj~[ ǥtweet_live-f25b6dad1a64/web/edito-1415-04-elargissement-communautes-scientifiques/index.phpUT-TPKSKFelR ȥtweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/config.phpUT-TPKSKFuT^ Хtweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/images/archive_img.jpgUT-TPKSKF'P` ^tweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/images/client_visual.jpgUT-TPKSKF0] Itweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/images/logo-edito.pngUT-TPKSKF8#bnc tweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/images/slide_background.jpgUT-TPKSKFWj~Q ntweet_live-f25b6dad1a64/web/edito-1415-05-faire-oeuvre-epoque-numerique/index.phpUT-TPKSKFx*C otweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/config.phpUT-TPKSKFuTO utweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/images/archive_img.jpgUT-TPKSKF'PQ tweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/images/client_visual.jpgUT-TPKSKF0N <tweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/images/logo-edito.pngUT-TPKSKF8#bnT ۰tweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/images/slide_background.jpgUT-TPKSKFWj~B |tweet_live-f25b6dad1a64/web/edito-1415-06-atelier-etudes/index.phpUT-TPKSKFd) < _tweet_live-f25b6dad1a64/web/edito-arts-numeriques/config.phpUT-TPKSKF |&(U tweet_live-f25b6dad1a64/web/edito-arts-numeriques/images/archive-editorialisation.jpgUT-TPKSKF4:@vM Atweet_live-f25b6dad1a64/web/edito-arts-numeriques/images/big_visuel_edito.jpgUT-TPKSKFfyF ӭtweet_live-f25b6dad1a64/web/edito-arts-numeriques/images/head_logo.gifUT-TPK--j٭