# HG changeset patch
# User totetm <>
# Date 1265297884 -3600
# Node ID bd33267300aa4f16469c7046df4ca988908a6950
# Parent beb938b4fb76bbdea28e5375c1281f44307d4d54
- FranceCulture Project
- Ldt and Iri Parse Method
- Bug MenuableUserControl
diff -r beb938b4fb76 -r bd33267300aa .hgignore
--- a/.hgignore Wed Jan 27 10:55:59 2010 +0100
+++ b/.hgignore Thu Feb 04 16:38:04 2010 +0100
@@ -6,7 +6,8 @@
glob:Backup/*
glob:_UpgradeReport_Files/*
glob:UpgradeLog.XML
-glob:Content/*
glob:ClientBin/*
glob:bin/*
glob:*.mp4
+glob:*.mp3
+glob:*.flv
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs
--- a/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.BaseMVVM/Commands/Commands.cs Thu Feb 04 16:38:04 2010 +0100
@@ -107,6 +107,13 @@
Pause = new Command("Pause");
LeftTrim = new Command("LeftTrim");
RightTrim = new Command("RightTrim");
+ NewAnnotationFinished = new Command("NewAnnotationFinished");
+ }
+
+ public static Command NewAnnotationFinished
+ {
+ get;
+ private set;
}
public static Command OkClick
{
@@ -297,9 +304,22 @@
PublishClick = new Command("PublishClick");
SaveClick = new Command("SaveClick");
+ EditFinishedOk = new Command("EditFinishedOk");
+ IndexFinishedOk = new Command("IndexFinishedOk");
+
}
-
+ public static Command EditFinishedOk
+ {
+ get;
+ private set;
+ }
+ public static Command IndexFinishedOk
+ {
+ get;
+ private set;
+ }
+
public static Command PublishClick
{
get;
@@ -412,10 +432,17 @@
GoToTime = new Command("GoToTime");
ActivePart = new Command("ActivePart");
EscapeKeyPressed = new Command("EscapeKeyPressed");
+ HttpSenderResponse = new Command("HttpSenderResponse");
// VideoPositionTimer.Tick += new EventHandler(Each_Tick);
}
+
+ public static Command HttpSenderResponse
+ {
+ get;
+ private set;
+ }
public static Command EscapeKeyPressed
{
get;
@@ -519,6 +546,26 @@
{
}
}
+
+ public static class BookTimeLine
+ {
+
+ static BookTimeLine()
+ {
+ SaveAnnotations = new Command("SaveAnnotations");
+
+ }
+ public static Command SaveAnnotations
+ {
+ get;
+ private set;
+ }
+
+ public static void Initialize()
+ {
+ }
+ }
+
///
/// Ensure static fields are initialized
///
@@ -536,6 +583,7 @@
VideoViewer.Initialize();
ProductionView.Initialize();
Commands.WebCamControl.Initialize();
+ BookTimeLine.Initialize();
}
}
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/Iri.Modernisation.Controls.csproj
--- a/client/src/Iri.Modernisation.Controls/Iri.Modernisation.Controls.csproj Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/Iri.Modernisation.Controls.csproj Thu Feb 04 16:38:04 2010 +0100
@@ -161,6 +161,7 @@
ContextualBinderLayer.xaml
+
ButtonHeaderControl.xaml
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs
--- a/client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -8,6 +8,7 @@
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Iri.Modernisation.Data.Models;
+using Iri.Modernisation.BaseMVVM.Commands;
namespace Iri.Modernisation.Controls.View
{
public partial class AnnotationMaker : UserControl
@@ -16,9 +17,14 @@
{
InitializeComponent();
-
+ Commands.HttpSenderResponse.Executed += new EventHandler(HttpSenderResponse_Executed);
}
+
+ void HttpSenderResponse_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e)
+ {
+ this.Dispatcher.BeginInvoke(() => MessageBox.Show((String)e.Parameter));
+ }
}
}
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/BookTimeLine/BookTimeLine.xaml
--- a/client/src/Iri.Modernisation.Controls/View/BookTimeLine/BookTimeLine.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/BookTimeLine/BookTimeLine.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -2,14 +2,17 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
+ xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
xmlns:Converter="clr-namespace:Iri.Modernisation.Controls.Converter"
xmlns:SLExtensions_Data="clr-namespace:SLExtensions.Data;assembly=SLExtensions"
x:Class="Iri.Modernisation.Controls.View.BookTimeLine" Height="272" Width="640" Background="Transparent">
+
@@ -18,14 +21,16 @@
-
+
+
+
-
+
-
+
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/ConsultationView/ConsultationView.xaml
--- a/client/src/Iri.Modernisation.Controls/View/ConsultationView/ConsultationView.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/ConsultationView/ConsultationView.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -221,7 +221,7 @@
-
+
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/ExtendedSlider.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/Iri.Modernisation.Controls/View/ExtendedSlider.cs Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,69 @@
+using System;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+using System.Windows.Controls.Primitives;
+namespace Iri.Modernisation.Controls.View
+{
+ public class ExtendedSlider : Slider
+ {
+
+ public ExtendedSlider()
+ : base()
+ {
+ DefaultStyleKey = typeof(Slider);
+ }
+
+ ///
+ /// Fired when the thumb has been clicked, and dragging is initiated
+ ///
+ public event EventHandler ThumbDragStarted;
+
+ ///
+ /// Fired when the thumb has been released
+ ///
+ public event EventHandler ThumbDragCompleted;
+
+
+ public override void OnApplyTemplate()
+ {
+ base.OnApplyTemplate();
+
+ //Set up drag event handlers
+ Thumb thumb = this.GetTemplateChild("HorizontalThumb") as Thumb;
+ if (thumb != null)
+ {
+ thumb.DragStarted += new DragStartedEventHandler(thumb_DragStarted);
+ thumb.DragCompleted += new DragCompletedEventHandler(thumb_DragCompleted);
+ }
+ }
+
+ void thumb_DragCompleted(object sender, DragCompletedEventArgs e)
+ {
+ OnThumbDragCompleted(this, new EventArgs());
+ }
+
+ void thumb_DragStarted(object sender, DragStartedEventArgs e)
+ {
+ OnThumbDragStarted(this, new EventArgs());
+ }
+
+ protected virtual void OnThumbDragStarted(object sender, EventArgs e)
+ {
+ if (ThumbDragStarted != null)
+ ThumbDragStarted(sender, e);
+ }
+
+ protected virtual void OnThumbDragCompleted(object sender, EventArgs e)
+ {
+ if (ThumbDragCompleted != null)
+ ThumbDragCompleted(sender, e);
+ }
+ }
+}
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProduction.xaml
--- a/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProduction.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProduction.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -31,7 +31,7 @@
-
+
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml
--- a/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -27,7 +27,7 @@
-
+
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml.cs
--- a/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -41,25 +41,54 @@
InitializeComponent();
EditionController.Text = Iri.Modernisation.Lang.LangResource.EditingLabel;
IndexController.Text = Iri.Modernisation.Lang.LangResource.IndexingLabel;
+ EnrichmentController.Text = Iri.Modernisation.Lang.LangResource.EnrichmentLabel;
// Commands.ActivePart.Executed += new EventHandler(ActivePart_Executed);
EditionController.HeaderProductionPartFinished += new EventHandler(EditionController_HeaderProductionPartFinished);
IndexController.HeaderProductionPartFinished += new EventHandler(IndexController_HeaderProductionPartFinished);
+
+ EditionController.Clicked += new EventHandler(EditionController_Clicked);
+ IndexController.Clicked += new EventHandler(IndexController_Clicked);
+ Commands.HeaderProduction.IndexFinishedOk.Executed += new EventHandler(IndexFinishedOk_Executed);
+ Commands.HeaderProduction.EditFinishedOk.Executed += new EventHandler(EditFinishedOk_Executed);
+ }
+
+ void IndexFinishedOk_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e)
+ {
+ if (DataContext == e.Source)
+ IndexController.Finish();
+ }
+
+ void EditFinishedOk_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e)
+ {
+ if(DataContext == e.Source)
+ EditionController.Finish();
+ }
+
+ void IndexController_Clicked(object sender, EventArgs e)
+ {
+ ((HeaderProductionChapterVM)DataContext).IndexClick();
+ }
+
+
+
+ void EditionController_Clicked(object sender, EventArgs e)
+ {
+ ((HeaderProductionChapterVM)DataContext).EditClick();
}
void IndexController_HeaderProductionPartFinished(object sender, HeaderProductionPartControlerEventArgs e)
{
((HeaderProductionChapterVM)DataContext).Indexing = true;
+ VisualStateManager.GoToState(EnrichmentController, "Finished", true);
}
void EditionController_HeaderProductionPartFinished(object sender, HeaderProductionPartControlerEventArgs e)
{
((HeaderProductionChapterVM)DataContext).Editing = true;
+
}
-
- void ActivePart_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e)
- {
-
- //IndexController.IsActive = true;
- }
+
+
+
}
}
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionPartControler.xaml.cs
--- a/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionPartControler.xaml.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionPartControler.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -130,15 +130,21 @@
if(_activated)
{
- VisualStateManager.GoToState(this,"Finished",true);
- if (HeaderProductionPartFinished!=null)
- {
- HeaderProductionPartFinished(this, new HeaderProductionPartControlerEventArgs(sender));
- }
- _finished=true;
-
+ Clicked(this, new EventArgs());
+
+
}
}
+ public void Finish()
+ {
+ VisualStateManager.GoToState(this,"Finished",true);
+ if (HeaderProductionPartFinished!=null)
+ {
+ HeaderProductionPartFinished(this, new HeaderProductionPartControlerEventArgs(this));
+ }
+ _finished = true;
+ }
+ public event EventHandler Clicked;
public void Select()
{
if (_activated && !_finished)
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/MenuableUserControl.cs
--- a/client/src/Iri.Modernisation.Controls/View/MenuableUserControl.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/MenuableUserControl.cs Thu Feb 04 16:38:04 2010 +0100
@@ -12,7 +12,7 @@
using Iri.Modernisation.Controls.ViewModel;
namespace Iri.Modernisation.Controls.View
{
- public abstract partial class MenuableUserControl : UserControl
+ public class MenuableUserControl : UserControl
{
public MenuableUserControl()
{
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/PolemicElement.xaml
--- a/client/src/Iri.Modernisation.Controls/View/PolemicElement.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/PolemicElement.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -1,4 +1,6 @@
-
-
+
-
+
+
+
+
-
+
+
-
+
diff -r beb938b4fb76 -r bd33267300aa client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/ProductionTimeLine.xaml
--- a/client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/ProductionTimeLine.xaml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/ProductionTimeLine.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -4,7 +4,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
-
+ xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
x:Class="Iri.Modernisation.Controls.View.ProductionTimeLine"
d:DesignWidth="640" Height="176">
@@ -21,7 +21,7 @@
-
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/Copie de FranceInterENMI28.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/Copie de FranceInterENMI28.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/Copie de FranceInterENMI29.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/Copie de FranceInterENMI29.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,787 @@
+
+
+
+
+
+
+
+
+
+ Intervenants
+
+
+
+ Journal
+
+
+
+
+
+ Publicité
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Musique
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Musique
+
+
+
+
+
+ Stéphane Paoli et Sandra Freeman
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Journal
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Alain Baraton
+
+
+
+
+
+ Musique
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Alain Baraton + questions auditrices
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Isabelle Autissier
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Publicité
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Journal
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Création
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Revue de presse d'Ivan Levaï
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Alain Cadix
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Alain Cadix
+
+
+
+
+
+
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Alain Cadix
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Alain Cadix
+
+
+
+
+
+ Stéphane Paoli et Sandra Freeman
+
+
+
+
+
+ Humour
+
+
+
+
+
+ Cloture et remerciements
+
+
+
+
+
+
+
+
+
+ Intervenants
+
+
+
+ Journal - Grippe A
+
+
+
+
+
+ Journal - UMP
+
+
+
+
+
+ Journal - Divers
+
+
+
+
+
+ Journal - Grève au Centre Pompidou
+
+
+
+
+
+ Journal - Sport
+
+
+
+
+
+ Journal - Fin et Pub
+
+
+
+
+
+ Intro 7-9 par Stéphane Paoli
+
+
+
+
+
+ Présentation des intervenants par Sandra Freeman
+
+
+
+
+
+ Musique
+
+
+
+
+
+ Archéologue
+
+
+
+
+
+ Archéologue Jean-Paul Demoule
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Question Stéphane Paoli
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Question Sandra Frieman
+
+
+
+
+
+ Archéologue Jean-Paul Demoule
+
+
+
+
+
+ Question Stéphane Paoli
+
+
+
+
+
+ Archéologue Jean-Paul Demoule
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Transition Stéphane Paoli
+
+
+
+
+
+ Pub
+
+
+
+
+
+ Circulation
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Journal de 7h30
+
+
+
+
+
+ Publicité
+
+
+
+
+
+ Sandra Frieman
+
+
+
+
+
+ Alain Baraton
+
+
+
+
+
+ Transition Stéphane Paoli
+
+
+
+
+
+ Jean-Paul Demoule
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Musique
+
+
+
+
+
+ Sandra Frieman + question auditrice
+
+
+
+
+
+ Alain Baraton
+
+
+
+
+
+ Question auditeur
+
+
+
+
+
+ Alain Baraton
+
+
+
+
+
+ Point route
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Journal de 8h
+
+
+
+
+
+ Transition Sandra Freeman
+
+
+
+
+
+ Reportage années 60
+
+
+
+
+
+ Transition Stéphane Paoli et Sandra Frieman
+
+
+
+
+
+ Nicolas Nova
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Nicolas Nova
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Revue de presse d'Ivan Levaï
+
+
+
+
+
+ Transition Sandra Freeman
+
+
+
+
+
+ Présentation de l'invité par Laurence Luret
+
+
+
+
+
+ Interview de Luc Boltanski
+
+
+
+
+
+ Question de Stéphane Paoli
+
+
+
+
+
+ Luc Boltanski
+
+
+
+
+
+ Question Stéphane Paoli
+
+
+
+
+
+ Jean-Paul Demoule Archéologue
+
+
+
+
+
+ Question Stéphane Paoli
+
+
+
+
+
+ Bernard Stiegler
+
+
+
+
+
+ Sandra Frieman
+
+
+
+
+
+ Annonce
+
+
+
+
+
+ Cloture et remerciements
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI28.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI28.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI29.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/FranceInterENMI29.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/iri_matinalefi28nov2009/iri_matinalefi28nov2009.iri
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/iri_matinalefi28nov2009/iri_matinalefi28nov2009.iri Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,845 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mon découpage - NS - keyword
+
+
+
+ Journal - les Titres
+
+
+
+ Berlusconi
+ campagne de régionale
+ grippe A
+ rugby
+ vaccin
+
+
+
+ Journal - UMP
+
+
+
+ Alain Juppé
+ campagne
+ divergence
+ Nicolas Sarkozy
+ sondage
+ taxe professionnelle
+ UMP
+
+
+
+ Journal - Divers
+
+
+
+ attentat
+ Berlusconi
+ david Mills
+ dépense publique
+ Mali
+ menace
+ Russie
+ réforme de la justice
+ terrorisme
+
+
+
+ Journal - Grève au Centre Pompidou
+
+
+
+ Centre Pompidou
+ CGT
+ exposition
+ grève
+ plan social
+ Soulages
+
+
+
+ Journal - Sport
+
+
+
+ 15 de France
+ Biarritz
+ Castres
+ Rugby
+ Stade de France
+ Top 14
+
+
+
+ Journal - Fin et Pub
+
+
+
+ annonceur
+ Grippe A
+
+
+
+ Intro 7-9 par Stéphane Paoli
+
+
+
+ ENMI
+ ENSCI
+ Entretiens du Nouveaux Monde Industriel
+ IRI
+ living things
+ objets communicants
+ Objets inanimés
+ organes artificiels
+
+
+
+ Présentation des intervenants par Sandra Freeman
+
+
+
+ Bernard Stiegler
+ dématerialisation
+ IRI
+ Jean-Paul Demoul
+ Nicolas Nova
+ sens de l'innovation
+ sociologue
+ évolution de la société
+
+
+
+ Musique
+
+
+
+ Michel Jonas
+
+
+
+ Archéologue
+
+
+
+ archéologie
+ objet communiquant
+ passage
+ système des objets
+
+
+
+ Archéologue Jean-Paul Demoule
+ Changement radical par cette fragilité, comparé au témoignage écrit matérialisé dans la pierre ou l'argile.
+ Des bandes magnétique ou du scilicium, il ne restera à rien.
+
+
+ argile
+ fragilité
+ Jean-Paul Demoule
+ témoignage écrit
+
+
+
+ Bernard Stiegler
+
+
+
+ immatériel
+ matérialisation de l'information
+ objet communiquant
+ virtualisation
+ éphémère
+
+
+
+ Question Stéphane Paoli
+ Passage du temps du vivant au temps du technologique : exagération ?
+ Est ce que le technologique interroge le vivant ?
+
+
+ technologique
+ vivant
+
+
+
+ Bernard Stiegler
+
+
+
+ contrôle comportementale
+ identifiant
+ objet communiquant
+ tracabilité
+ trace
+
+
+
+ Question Sandra Frieman
+ Trace qui resteront dans le temps
+
+
+ tracabilité
+ trace
+
+
+
+ Archéologue Jean-Paul Demoule
+
+
+
+ incompatibilité
+ tracabilité de l'ADN
+
+
+
+ Question Stéphane Paoli
+ Homme du glacier autrichien : homme moderne mais libre
+ Est-on entré dans une ère où l'être vivant devient un objet tracable?
+
+
+ objet identifié
+ tracabilité
+ vivant
+
+
+
+ Archéologue Jean-Paul Demoule
+
+
+
+ néolithique
+ société
+ société du contrôle
+ trace
+
+
+
+ Bernard Stiegler
+
+
+
+ aliénation
+ alternative économique
+ contrôle
+ ENMI
+ innovation ascendante
+ libération
+ pharmacon
+ poison
+ remède
+
+
+
+ Transition Stéphane Paoli
+
+
+
+
+
+ Pub
+
+
+
+ Annonce
+ Guinée
+ Indépendance
+ Rendez-vous avec X
+
+
+
+ Circulation
+
+
+
+ Trafic
+
+
+
+ Météo
+
+
+
+ Météo
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ fraternité
+ nuit solidaire
+ sans-abris
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ grippe a
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ finance du vatican
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ bug
+ carte grise
+ immatriculation
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ rugby
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ objet communiquant
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ nuit solidaire
+ sans-abris
+ solidarité
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ grippe A
+ Nicolas Sarkozy
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ Nicolas Sarkozy
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ grippe A
+ mutation
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ grippe A
+ mutation
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ Al-qaida
+ Mali
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ attentat
+ Rail
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ finance du Vatican
+ secret bancaire
+ Vatican
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ corruption
+ Léon Bertrand
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ bug informatique
+ immatriculation
+
+
+
+ Journal Bernadette Chamonaz
+
+
+
+ France
+ Nouvelle-Zélande
+ Rugby
+
+
+
+ Publicité
+
+
+
+
+
+ Sandra Frieman
+
+
+
+ interconnection
+
+
+
+ Alain Baraton
+
+
+
+ bois
+ charrue
+ fer
+ jardinage
+ outillage
+ tracteur
+
+
+
+ Transition Stéphane Paoli
+
+
+
+ évolution de l'outil
+
+
+
+ Jean-Paul Demoule
+
+
+
+ age de fer
+ agriculture
+ démographie
+ jardinage
+ progrès
+
+
+
+ Stéphane Paoli
+
+
+
+ agriculture
+ culture
+ objet communiquant
+
+
+
+ Bernard Stiegler
+
+
+
+ archive du sol
+ capteur
+ circulation
+ commerce
+ extériorisation
+ flux
+ hominisation
+ Italo Calvino
+ Mana
+ Marcel Maus
+ mutation du 21e
+ objet transitionnel
+ rapport au monde
+ relation physique
+ relation politique
+ relation psycologique
+ smart grids
+ société magique
+ échange
+
+
+
+ Stéphane Paoli
+
+
+
+ Chaman
+ homme
+ posture ontologique
+ technologie
+
+
+
+
+
+
+
+ Mickey 3d
+
+
+
+ Sandra Frieman + question auditrice
+
+
+
+
+
+ Alain Baraton
+
+
+
+ orchidée papillon
+ Phalaenocsis
+
+
+
+ Question auditeur
+
+
+
+
+
+ Alain Baraton
+
+
+
+ kiwi
+
+
+
+ Point route
+
+
+
+ circulation
+
+
+
+ Météo
+
+
+
+ météo
+
+
+
+ Journal de 8h
+
+
+
+
+
+ Transition Sandra Freeman
+
+
+
+
+
+ Reportage années 60
+
+
+
+ an 2000
+ bonheur
+ facilité
+ progrès
+
+
+
+ Transition Stéphane Paoli et Sandra Frieman
+
+
+
+ age de fer
+ age de pierre
+ ENMI
+ hyper-objet
+ innovation
+ mutation
+ médias géolocalisés
+ Nicolas Nova
+ système des objets
+
+
+
+ Nicolas Nova
+
+
+
+ artiste
+ hacker
+ nouvelle technologie
+ pratique
+ recherche
+ usage
+ utilité
+
+
+
+ Stéphane Paoli
+
+
+
+ auto-innovation
+ Bernard Stiegler
+ fabrication
+ innovation
+ Jean-Paul Demoule
+ principe darwinien
+
+
+
+ Nicolas Nova
+
+
+
+ auto-reproduction
+ créateur
+ inscription
+ objet technique
+ évolution
+
+
+
+ Bernard Stiegler
+
+
+
+ artisan
+ conception
+ consommation
+ court-circuit
+ division du travail
+ dématérialisation
+ farm-lab
+ hackers
+ logiciel libre
+ makers
+ matérialisation
+ néo-objet
+ objet réticulé
+ production
+ production industrielle
+ prolétarisation
+ rationnalisation
+ tracabilité
+
+
+
+ Météo
+
+
+
+ météo
+
+
+
+ Revue de presse de Yvan Lauveil
+
+
+
+ grippe A
+ mutant
+ revue de presse
+
+
+
+ Transition Sandra Freeman
+
+
+
+
+
+ Présentation de l'invité par Laurence Luret
+
+
+
+ changer le monde
+ Luc Boltansky
+ sociologie critique
+ sociologue
+
+
+
+ Interview de Luc Boltanski
+
+
+
+ accessibilité
+ asymétrie
+ autonomie
+ capacité d'action
+ contrôle
+ formulation
+ insatisfation
+ interprétation des règles
+ Nietzche
+ niveau de critique
+ pragmatisme
+ prolétariat
+ revendication
+ réalisme
+ réalité organisée
+ rêve
+ sociologie
+ échelle sociale
+ égalisation des libertés d'action
+ émancipation
+
+
+
+ Question de Stéphane Paoli
+
+
+
+ fin du progrès
+ suicide écologique
+
+
+
+ Luc Boltanski
+
+
+
+ capitalisme
+ management
+ raison systémique
+ réagir à la contrainte des autres
+
+
+
+ Question Stéphane Paoli
+
+
+
+
+
+ Jean-Paul Demoule Archéologue
+
+
+
+ effondrement des société
+ Maya
+ servitude volontaire
+
+
+
+ Question Stéphane Paoli
+
+
+
+ communication des objets
+ transcendance
+
+
+
+ Bernard Stiegler
+
+
+
+ alternative
+ ENMI
+ mouvements
+ réindividuation
+ réinterprétation
+ temps carbone
+ temps lumière
+ transcendance
+
+
+
+ Sandra Frieman
+
+
+
+
+
+ Annonce
+
+
+
+
+
+ Cloture et remerciements
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/iri_matinalefi29nov2009/iri_matinalefi29nov2009.iri
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/iri_matinalefi29nov2009/iri_matinalefi29nov2009.iri Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,554 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Matinale FI 29 - NS - keywords
+
+
+
+ Journal
+
+
+
+
+
+ Publicité
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+ conditionne la survie
+ franchissement d'un cap
+ objet communicant
+ outil
+ réseau global
+ révolution
+
+
+
+ Sandra Freeman
+
+
+
+ Alain Cadix
+ Cap Digital
+ Daniel Kaplan
+ enjeu démocratique
+ ENSCI
+ FING
+ Henri Verdier
+
+
+
+ Musique
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Henri Verdier
+
+
+
+ civilisation charbon-acier
+ civilisation informatique-nanotechnologie
+ civilisation pétrole-éléctricité
+
+
+
+
+
+
+
+ mutation
+
+
+
+
+
+
+
+ accéleration de l'histoire
+
+
+
+ Henri Verdier
+
+
+
+ auto-organisation
+ courbe d'innovation
+ information viral
+ internet social
+ singularité
+
+
+
+ Stéphane Paoli
+
+
+
+ temps technologique
+ évolution du vivant
+ évolution par la technologie
+
+
+
+ Henri Verdier
+
+
+
+ chaussure communicant
+ noosphère
+ nouveau service
+ relation
+ sélection humaine
+ trace
+
+
+
+ Stéphane Paoli
+
+
+
+ trace
+
+
+
+ Henri Verdier
+
+
+
+ géolocalisation
+ indexation
+ taggage
+
+
+
+ Musique
+
+
+
+
+
+ Stéphane Paoli et Sandra Freeman
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Alain Baraton
+
+
+
+ arbre RFID
+ automatique
+ conflit
+ jardinier
+ outils
+ shaman
+ sonde
+
+
+
+ Musique
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Alain Baraton + questions auditrices
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Isabelle Autissier
+
+
+
+ communication
+ navigation
+ système d'information
+
+
+
+ Stéphane Paoli
+
+
+
+
+
+ Publicité
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Journal
+
+
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Création
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+ Daniel Kaplan
+ internet des objets
+ objet communicant
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Daniel Kaplan
+
+
+
+ action
+ cartographie
+ chaos
+ contrôle
+ contrôle des populations
+ désordre
+ extension du choix
+ identification
+ initiative individuelle
+ intelligence
+ objets ouverts
+ paradoxe
+ perception
+
+
+
+ Stéphane Paoli
+
+
+
+ accéleration de l'histoire
+ distance de décision
+ distance de réflexion
+ système chaotique
+ système ouvert
+
+
+
+ Daniel Kaplan
+
+
+
+ dimension politique
+ intelligence
+ matière
+ objet
+ sentiment
+
+
+
+ Sandra Freeman
+
+
+
+ démocratisation des technologies
+
+
+
+ Daniel Kaplan
+
+
+
+ démocratisation des capacités d'expression
+ intelligence des objets
+ pays en développement
+ pratique locale
+
+
+
+ Stéphane Paoli
+
+
+
+ soupe primitive
+
+
+
+
+
+
+
+
+
+ Météo
+
+
+
+
+
+ Revue de presse d'Ivan Levaï
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+ Alain Cadix
+ ENMI
+ ENSCI
+ multiconnection
+ échange d'information permanent
+
+
+
+ Alain Cadix
+
+
+
+ efficacité
+ pharmacon
+ poison
+ remède
+ risque
+
+
+
+ Stéphane Paoli
+
+
+
+ Claude Levis-Strauss
+ système chaotique
+
+
+
+ Alain Cadix
+
+
+
+ disparition des cadres
+ désajustement
+ déstructurant
+ fracture numérique
+ homogénéité sociale
+ psychose
+ valeur ajoutée d'une autre nature
+ veille
+ vigilance
+
+
+
+
+
+
+
+ fracture numérique
+ opposition homme-machine
+
+
+
+ Henri Verdier
+
+
+
+ géopolitique de l'internet
+ territoire
+
+
+
+ Sandra Freeman
+
+
+
+
+
+ Henri Verdier
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+ démocratie
+
+
+
+ Daniel Kaplan
+
+
+
+ données publiques
+ démocratie technique
+ rapport de force
+ régulation
+ scénario du désordre
+
+
+
+ Stéphane Paoli
+
+
+
+ maitrise des décisions
+ politique de la cité
+
+
+
+ Alain Cadix
+
+
+
+ commission européenne
+ débrayage des puces
+ maîtrise
+
+
+
+ Sandra Freeman
+
+
+
+ facebook
+ intentionnalité
+ prise de pouvoir
+ ville intelligente
+
+
+
+ Daniel Kaplan
+
+
+
+
+
+ Stéphane Paoli
+
+
+
+ réseau social
+
+
+
+ Alain Cadix
+
+
+
+ détournement
+ espoir
+ iran
+ résistance
+ sms
+ twitter
+
+
+
+ Stéphane Paoli et Sandra Freeman
+
+
+
+ posture ontologique
+
+
+
+ Humour
+
+
+
+
+
+ Cloture et remerciements
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/test.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Content/test.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+ Emission France Culture
+
+
+
+ a
+ a
+
+
+
+ a
+
+
+
+ b
+ b
+
+
+
+ b
+
+
+
+ c
+ c
+
+
+
+ c
+
+
+
+ d
+ d
+
+
+
+ d
+
+
+
+
+
+ Oui mais ?
+
+
+
+ Z05
+ Peut on vraiment prétendre répondre à une telle question sans étudier au préalable le sens de chaque mot ?
+
+
+
+
+
+
+
+
+ Annot Julius
+
+
+
+ Notre mémoire
+ Si les objets nous constituent et s'ils sont à ce point tracables, alors c'est nous-même qui seront tracables à travers nos faits et gestes. La notion de mémoire devrait considérablement changer.
+
+
+
+
+
+
+
+
+
+
+ Référence
+ Sur la tracabilité, voir http://www.tracenews.info/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCulture.Web.csproj
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCulture.Web.csproj Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,99 @@
+
+
+
+ Debug
+ AnyCPU
+
+
+ 2.0
+ {3707103A-08CA-4CA0-B3AF-F27143642744}
+ {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}
+ Library
+ Properties
+ FranceCulture.Web
+ FranceCulture.Web
+ v4.0
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}|..\FranceCulture\FranceCulture.csproj|ClientBin|False
+
+
+ true
+ full
+ false
+ bin\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Web.config
+
+
+ Web.config
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+ True
+ 6048
+ /
+
+
+ False
+ False
+
+
+ False
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCultureTestPage.aspx
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCultureTestPage.aspx Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,77 @@
+<%@ Page Language="C#" AutoEventWireup="true" %>
+
+
+
+
+ FranceCulture
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCultureTestPage.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/FranceCultureTestPage.html Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,75 @@
+
+
+
+
+ FranceCulture
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/ProductionContent/ProductionVideo.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/ProductionContent/ProductionVideo.xml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/ProjectConfig.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/ProjectConfig.xml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Properties/AssemblyInfo.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Properties/AssemblyInfo.cs Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("FranceCulture.Web")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Centre Georges Pompidou")]
+[assembly: AssemblyProduct("FranceCulture.Web")]
+[assembly: AssemblyCopyright("Copyright © Centre Georges Pompidou 2010")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("35a04254-4711-4382-b847-938683dd09c3")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Revision and Build Numbers
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Silverlight.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Silverlight.js Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,2 @@
+//v2.0.30511.0
+if(!window.Silverlight)window.Silverlight={};Silverlight._silverlightCount=0;Silverlight.__onSilverlightInstalledCalled=false;Silverlight.fwlinkRoot="http://go2.microsoft.com/fwlink/?LinkID=";Silverlight.__installationEventFired=false;Silverlight.onGetSilverlight=null;Silverlight.onSilverlightInstalled=function(){window.location.reload(false)};Silverlight.isInstalled=function(b){if(b==undefined)b=null;var a=false,m=null;try{var i=null,j=false;if(window.ActiveXObject)try{i=new ActiveXObject("AgControl.AgControl");if(b===null)a=true;else if(i.IsVersionSupported(b))a=true;i=null}catch(l){j=true}else j=true;if(j){var k=navigator.plugins["Silverlight Plug-In"];if(k)if(b===null)a=true;else{var h=k.description;if(h==="1.0.30226.2")h="2.0.30226.2";var c=h.split(".");while(c.length>3)c.pop();while(c.length<4)c.push(0);var e=b.split(".");while(e.length>4)e.pop();var d,g,f=0;do{d=parseInt(e[f]);g=parseInt(c[f]);f++}while(f");delete a.id;delete a.width;delete a.height;for(var c in a)if(a[c])b.push('');b.push("");return b.join("")};Silverlight.createObjectEx=function(b){var a=b,c=Silverlight.createObject(a.source,a.parentElement,a.id,a.properties,a.events,a.initParams,a.context);if(a.parentElement==null)return c};Silverlight.buildPromptHTML=function(b){var a="",d=Silverlight.fwlinkRoot,c=b.version;if(b.alt)a=b.alt;else{if(!c)c="";a="
";a=a.replace("{1}",c);a=a.replace("{2}",d+"108181")}return a};Silverlight.getSilverlight=function(e){if(Silverlight.onGetSilverlight)Silverlight.onGetSilverlight();var b="",a=String(e).split(".");if(a.length>1){var c=parseInt(a[0]);if(isNaN(c)||c<2)b="1.0";else b=a[0]+"."+a[1]}var d="";if(b.match(/^\d+\056\d+$/))d="&v="+b;Silverlight.followFWLink("149156"+d)};Silverlight.followFWLink=function(a){top.location=Silverlight.fwlinkRoot+String(a)};Silverlight.HtmlAttributeEncode=function(c){var a,b="";if(c==null)return null;for(var d=0;d96&&a<123||a>64&&a<91||a>43&&a<58&&a!=47||a==95)b=b+String.fromCharCode(a);else b=b+""+a+";"}return b};Silverlight.default_error_handler=function(e,b){var d,c=b.ErrorType;d=b.ErrorCode;var a="\nSilverlight error message \n";a+="ErrorCode: "+d+"\n";a+="ErrorType: "+c+" \n";a+="Message: "+b.ErrorMessage+" \n";if(c=="ParserError"){a+="XamlFile: "+b.xamlFile+" \n";a+="Line: "+b.lineNumber+" \n";a+="Position: "+b.charPosition+" \n"}else if(c=="RuntimeError"){if(b.lineNumber!=0){a+="Line: "+b.lineNumber+" \n";a+="Position: "+b.charPosition+" \n"}a+="MethodName: "+b.methodName+" \n"}alert(a)};Silverlight.__cleanup=function(){for(var a=Silverlight._silverlightCount-1;a>=0;a--)window["__slEvent"+a]=null;Silverlight._silverlightCount=0;if(window.removeEventListener)window.removeEventListener("unload",Silverlight.__cleanup,false);else window.detachEvent("onunload",Silverlight.__cleanup)};Silverlight.__getHandlerName=function(b){var a="";if(typeof b=="string")a=b;else if(typeof b=="function"){if(Silverlight._silverlightCount==0)if(window.addEventListener)window.addEventListener("onunload",Silverlight.__cleanup,false);else window.attachEvent("onunload",Silverlight.__cleanup);var c=Silverlight._silverlightCount++;a="__slEvent"+c;window[a]=b}else a=null;return a};Silverlight.onRequiredVersionAvailable=function(){};Silverlight.onRestartRequired=function(){};Silverlight.onUpgradeRequired=function(){};Silverlight.onInstallRequired=function(){};Silverlight.IsVersionAvailableOnError=function(d,a){var b=false;try{if(a.ErrorCode==8001&&!Silverlight.__installationEventFired){Silverlight.onUpgradeRequired();Silverlight.__installationEventFired=true}else if(a.ErrorCode==8002&&!Silverlight.__installationEventFired){Silverlight.onRestartRequired();Silverlight.__installationEventFired=true}else if(a.ErrorCode==5014||a.ErrorCode==2106){if(Silverlight.__verifySilverlight2UpgradeSuccess(a.getHost()))b=true}else b=true}catch(c){}return b};Silverlight.IsVersionAvailableOnLoad=function(b){var a=false;try{if(Silverlight.__verifySilverlight2UpgradeSuccess(b.getHost()))a=true}catch(c){}return a};Silverlight.__verifySilverlight2UpgradeSuccess=function(d){var c=false,b="2.0.31005",a=null;try{if(d.IsVersionSupported(b+".99")){a=Silverlight.onRequiredVersionAvailable;c=true}else if(d.IsVersionSupported(b+".0"))a=Silverlight.onRestartRequired;else a=Silverlight.onUpgradeRequired;if(a&&!Silverlight.__installationEventFired){a();Silverlight.__installationEventFired=true}}catch(e){}return c}
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.Debug.config
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.Debug.config Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.Release.config
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.Release.config Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.config
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.Web/Web.config Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture.sln
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture.sln Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,26 @@
+
+Microsoft Visual Studio Solution File, Format Version 11.00
+# Visual Studio 2010
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FranceCulture", "FranceCulture\FranceCulture.csproj", "{C47D0A70-D0FF-46FF-A5C9-71166605B279}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FranceCulture.Web", "FranceCulture.Web\FranceCulture.Web.csproj", "{3707103A-08CA-4CA0-B3AF-F27143642744}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}.Release|Any CPU.Build.0 = Release|Any CPU
+ {3707103A-08CA-4CA0-B3AF-F27143642744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3707103A-08CA-4CA0-B3AF-F27143642744}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3707103A-08CA-4CA0-B3AF-F27143642744}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3707103A-08CA-4CA0-B3AF-F27143642744}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/App.xaml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/App.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/App.xaml.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/App.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,76 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+using Iri.Modernisation.Data.Models;
+namespace FranceCulture
+{
+ public partial class App : Application
+ {
+
+ public App()
+ {
+ this.Startup += this.Application_Startup;
+ this.Exit += this.Application_Exit;
+ this.UnhandledException += this.Application_UnhandledException;
+
+
+ }
+
+ private void Application_Startup(object sender, StartupEventArgs e)
+ {
+ SettingsProject.SettingsLoaded += new EventHandler(SettingsProject_SettingsLoaded);
+ SettingsProject.Load(e.InitParams["ConfigProjectFile"]);
+
+
+ }
+
+ void SettingsProject_SettingsLoaded(object sender, EventArgs e)
+ {
+ InitializeComponent();
+ object o = FactoryVideoLivre.AnnotationDescriptions;
+ this.RootVisual = new MainPage();
+ }
+
+ private void Application_Exit(object sender, EventArgs e)
+ {
+
+ }
+ private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
+ {
+ // If the app is running outside of the debugger then report the exception using
+ // the browser's exception mechanism. On IE this will display it a yellow alert
+ // icon in the status bar and Firefox will display a script error.
+ if (!System.Diagnostics.Debugger.IsAttached)
+ {
+
+ // NOTE: This will allow the application to continue running after an exception has been thrown
+ // but not handled.
+ // For production applications this error handling should be replaced with something that will
+ // report the error to the website and stop the application.
+ e.Handled = true;
+ Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); });
+ }
+ }
+ private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e)
+ {
+ try
+ {
+ string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace;
+ errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n");
+
+ System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight 2 Application " + errorMsg + "\");");
+ }
+ catch (Exception)
+ {
+ }
+ }
+ }
+}
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/FranceCulture.csproj
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/FranceCulture.csproj Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,126 @@
+
+
+
+ Debug
+ AnyCPU
+ 8.0.50727
+ 2.0
+ {C47D0A70-D0FF-46FF-A5C9-71166605B279}
+ {A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}
+ Library
+ Properties
+ FranceCulture
+ FranceCulture
+ Silverlight
+ v4.0
+ $(TargetFrameworkVersion)
+ true
+ fr-FR;en-US
+ true
+ true
+ FranceCulture.xap
+ Properties\AppManifest.xml
+ FranceCulture.App
+ TestPage.html
+ true
+ true
+ false
+ Properties\OutOfBrowserSettings.xml
+ false
+ true
+
+
+
+
+
+ v3.5
+
+
+ true
+ full
+ false
+ Bin\Debug
+ DEBUG;TRACE;SILVERLIGHT
+ true
+ true
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ Bin\Release
+ TRACE;SILVERLIGHT
+ true
+ true
+ prompt
+ 4
+
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\Berico.Windows.Controls.dll
+
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\Iri.Modernisation.BaseMVVM.dll
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\Iri.Modernisation.Controls.dll
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\Iri.Modernisation.Data.dll
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\Iri.Modernisation.Styles.dll
+
+
+
+ ..\..\..\..\src\Iri.Modernisation\Bin\Debug\SLExtensions.dll
+
+
+
+
+
+
+
+
+
+
+ App.xaml
+
+
+ MainPage.xaml
+
+
+
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/MainPage.xaml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/MainPage.xaml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/MainPage.xaml.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/MainPage.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+using System.Windows.Browser;
+using Iri.Modernisation.Controls.ViewModel;
+using Iri.Modernisation.BaseMVVM.Commands;
+using Iri.Modernisation.Data.LDTClass;
+using Iri.Modernisation.Data.Models;
+namespace FranceCulture
+{
+ public partial class MainPage : UserControl
+ {
+ public MainPage()
+ {
+
+ Commands.Initialize();
+
+
+ InitializeComponent();
+ MainElement.DataContext = new MainVM();
+ }
+ }
+}
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/Properties/AppManifest.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/Properties/AppManifest.xml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,6 @@
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/FranceCulture/FranceCulture/FranceCulture/Properties/AssemblyInfo.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/FranceCulture/FranceCulture/FranceCulture/Properties/AssemblyInfo.cs Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("FranceCulture")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Centre Georges Pompidou")]
+[assembly: AssemblyProduct("FranceCulture")]
+[assembly: AssemblyCopyright("Copyright © Centre Georges Pompidou 2010")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("45118344-2db4-4cd0-8650-0bd02dca410a")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Revision and Build Numbers
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/Content/AvailableVideoBooks.xml
--- a/client/test/WebTest/WebTest/WebTest.Web/Content/AvailableVideoBooks.xml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/test/WebTest/WebTest/WebTest.Web/Content/AvailableVideoBooks.xml Thu Feb 04 16:38:04 2010 +0100
@@ -7,7 +7,7 @@
title = Titre du VideoLivre
-->
-
+
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-I-bernard_stiegler-jauffret.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-I-bernard_stiegler-jauffret.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,548 @@
+
+
+
+
+
+
+
+
+ THD-Culture
+
+
+
+
+ Chapitres
+
+
+
+ 0 / Intermède autour de la notion de technique
+
+
+
+
+
+ 1 / De la nécessité de la philia
+
+
+
+
+
+ 2 / Relations sociales et réseaux sociaux
+
+
+
+
+
+ 3 / Grammatisation, socialisation et contrôle social
+
+
+
+
+
+ 4 / Pharmacologie des réseaux sociaux
+
+
+
+
+
+ 5 / Pour en finir avec les fossés générationnels
+
+
+
+
+
+ 6 / Les appareils critiques collaboratifs: un projet de l'IRI pour une refondation du social à l'ère numérique
+ pour une nouvelle forme de socialisation
+pour un nouveau visage
+
+
+
+
+
+
+ Séquences
+
+
+
+ 0 / Intermède autour de la notion de technique
+
+
+
+ Gille Bertrand
+ Heidegger
+ technique
+
+
+
+ 1.1 / Aristote, la philia et les réseaux sociaux
+
+
+
+ ami
+ amitié
+ amour
+ Aristote
+ philia
+ réseaux sociaux
+ technologie relationnelle
+
+
+
+ 2.1 / Facebook ou l'amitié déclarée
+
+
+
+ amitié
+ extime
+ Facebook
+ performatif
+
+
+
+ 2.2 / Facebook et l'auto-profilage ou auto-sociographie, un outil de renouvellement social?
+
+
+
+ Facebook
+ indexation
+ individuation
+ lien social
+ marketing
+ profilage
+ publicité
+ sociation
+
+
+
+ 2.3 / Le social détruit par les technologies qui le formalisent? Pas sûr.
+
+
+
+ formalisation
+ lien social
+ Lévi-Strauss Claude
+ social networks
+ Tristes Tropiques
+
+
+
+ 3.1 / La philia réflexive, une caractéristique des sociétés politiques
+
+
+
+ auto-anthropologie
+ Facebook
+ individuation réflexive
+ lien social
+
+
+
+ 3.2 / L'écriture, une technologie de formalisation des relations sociales
+
+
+
+ formalisation
+ Hopi
+ langage
+ relation sociale
+ écriture
+
+
+
+ 3.3 / La grammatisation du sociale ou l'Occident
+
+
+
+ citoyenneté
+ grammatisation
+ relation sociale
+ transindividuation
+
+
+
+ 3.4 / Définition de la transindividuation
+
+
+
+ citoyenneté
+ grammatisation
+ relation sociale
+ transindividuation
+
+
+
+ 3.5 / Avec Foucault, l'écriture comme biopouvoir
+
+
+
+ biopouvoir
+ contrôle
+ Foucault Michel
+ individuation
+ société disciplinaire
+ écriture
+
+
+
+ 3.6 / Citation de Foucault: l'examen, un moyen de contrôle des individus par l'écrit
+
+
+
+ biopouvoir
+ examen
+ société de contrôle
+
+
+
+ 3.7 / Le fichage individuel par le marketing ou le danger de contrôle à l'ère numérique
+
+
+
+ contrôle
+ discrétisation
+ liberté
+ marketing
+ numérisation
+ réseaux sociaux
+ société
+ traçabilité
+
+
+
+ 4.1 / Les réseaux sociaux sont "pharmacologiques"
+
+
+
+ contrôle
+ Deleuze Gilles
+ individuation
+ pharmacon
+ réseaux sociaux
+
+
+
+ 4.2 / Pour un avenir des réseaux sociaux comme agents de réflexivité
+
+
+
+ avenir
+ Deleuze Gilles
+ réseaux sociaux
+ société de contrôle
+
+
+
+ 4.3 / Le malaise sociétal et la corrosion de la socialité pré-numérique
+
+
+
+ catastrophe
+ civilisation industrielle
+ psycho-pouvoir
+ réseaux sociaux
+ Tchernobyl
+
+
+
+ 4.4 / Les nouvelles formes de lien social viendront de ce qui a engendré leur délitement
+
+
+
+ attention sociale
+ grammatisation
+ génération
+ individuation
+ réseaux sociaux
+ société
+
+
+
+ 4.5 / Les réseaux sociaux numériques, des substituts au lien social traditionnel
+
+
+
+ critique
+ lien social
+ pharmacon
+ recherche
+ réseaux sociaux
+ Simondon Gilbert
+ substitut
+
+
+
+ 5.1 / Les adolescents et les réseaux sociaux: une philia et un désir d'échanges
+
+
+
+ adolescent
+ consommation
+ peer-to-peer
+ philia
+ réseaux sociaux
+
+
+
+ 5.2 / Les espaces publiques numérisés permettent aux jeunes une rupture avec les réseaux télévisés
+
+
+
+ espace publique numérisé
+ identification secondaire
+ philia
+ réseaux sociaux
+ télévision
+
+
+
+ 5.3 / L'intégration des différents types de réseaux sociaux traditionnels dans la sphère numérique: la fin du fossé intergénérationnel
+
+
+
+ groupe social
+ individuation
+ intergénérationnel
+ réseaux sociaux
+
+
+
+ 5.4 / La nécessité d'une maturité
+
+
+
+ adulte
+ Centre Pompidou
+ culture moderne
+ infantilisation
+ réseaux sociaux
+
+
+
+ 6.1 / L'agencement du web social et sémantique, le projet web 3.0 de l'IRI
+
+
+
+ bottom up
+ IRI (Institut de Recherche et d'Innovation)
+ réseaux sociaux
+ top down
+ transindividuation
+ web 3.0
+
+
+
+ 6.2 / Un projet de combinaison de logiques top down et bottom up pour un espace intergénérationnel
+
+
+
+ groupe social
+ Kant Emmanuel
+ méta-stabilité
+ règles
+ top down
+ transindividuation
+ Université de Tokyo
+
+
+
+ 6.3 / Les appareils critiques de l'IRI, des outils pour une intelligence collective
+
+
+
+ amateur
+ appareil critique
+ cinéaste
+ compétence
+ connaissance
+ expert
+ IRI (Institut de Recherche et d'Innovation)
+ Ligne de Temps
+ synchristallisation
+ transindividuation
+
+
+
+ L'amateur, une figure importante
+
+
+
+ amateur
+ philia
+ société
+
+
+
+ Conclusion et présentation de la suite du séminaire
+
+
+
+
+
+
+
+ Notes et Références
+
+
+
+ Bertrand Gille (1920-1980), archiviste et historien français
+
+
+
+ Gille Bertrand
+
+
+
+ Heidegger et la technique
+
+
+
+
+
+ Aristote
+ amis = base du social
+amitié = lien social sans lequel pas de société
+
+
+ Aristote
+
+
+
+ Gustave Flaubert, "Bouvard et Pécuchet"
+
+
+
+ Bouvard et Pécuchet
+ Flaubert Gustave
+
+
+
+ Facebook croit de 10 millions de membres par mois
+
+
+
+ Facebook
+
+
+
+ Claude Levi-Strauss, expérience de transgression sociale chez les Nambiquara dans "Tristes Tropiques"
+
+
+
+ Lévi-Strauss Claude
+ Nambiquara
+ transgression sociale
+ Tristes Tropiques
+
+
+
+ Les Hopi groupe des Indiens Pueblos d'Amérique du Nord
+
+
+
+
+
+ Aby Moritz Warburg (1866- 1929), historien de l'art
+
+
+
+ Warburg Aby Moritz
+
+
+
+ Michel Foucault
+
+
+
+
+
+ Citation de "Surveiller et punir" de Michel Foucault
+
+
+
+
+
+ Gilles Deleuze et les concepts de société de contrôle et de modulation
+
+
+
+
+
+
+
+
+
+ Beck Ulrich
+ modernité
+
+
+
+ Thomas Gaon, Séminaire IRI "Désir et technologies"- séance du 26 juin 2008
+
+
+
+ Gaon Thomas
+
+
+
+ Sigmund Freud
+
+
+
+ Freud Sigmund
+
+
+
+ Ferdinand de Saussure
+
+
+
+ Saussure Ferdinand de
+
+
+
+ Emmanuel Kant
+
+
+
+ Kant Emmanuel
+
+
+
+ Alain bergala et Jean-Louis Comolli
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-II-antoine_masson-jauffret.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-II-antoine_masson-jauffret.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,304 @@
+
+
+
+
+
+
+
+
+ Notes et Références
+
+
+
+ ENMI 2008 / Antoine Masson : Médiation technologique et modalités de désir et de transfert à l'adolescence
+
+
+
+
+
+
+
+
+
+
+
+ Paul Ceylan
+
+
+
+ Ceylan Paul
+
+
+
+ Saudade de Pesoa
+
+
+
+ Pesoa Fernando
+ saudade
+
+
+
+ Baudelaire et le spleen
+
+
+
+ Baudelaire Charles
+ spleen
+
+
+
+ Octavio Paz
+
+
+
+ Paz Octavio
+
+
+
+ Sigmund Freud, impact social de l'invention de la psychanalyse
+
+
+
+
+
+
+
+ Chapitres
+
+
+
+ 1 / Problématiques de l'adolescence à l'heure d'Internet
+
+
+
+
+
+ 2 / passado.be ou comment dialoguer avec l'adolescence
+
+
+
+
+
+ 3 / Conclusions
+
+
+
+
+
+
+
+ Séquences
+
+
+
+ 1.1 / Introduction: passado.be, un dispositif clinique et technique
+ <a href="http://www.passado.be/">site web passado.be</a>
+
+
+ dispositif clinique
+ dispositif technique
+ Internet
+ passado.de
+
+
+
+ 1.2 / Définition de l'adolescence
+
+
+
+ adolescence
+ identité
+ jeunesse
+ société
+ violence
+
+
+
+ 1.3 / Contexte de naissance du projet passado.de
+
+
+
+ adolescence
+ adolescent
+ grammatisation
+ Internet
+ société
+ technologie
+ vectorisation
+
+
+
+ 1.4 / Internet, un espace social paradoxal
+
+
+
+ adolescence
+ Internet
+ lien social
+ sujet
+ vitesse
+
+
+
+ 2.1 / Lecture du texte fondateur de passado.be
+
+
+
+ adolescence
+ construction individuelle
+ individu
+ passado.be
+
+
+
+ 2.2 / passado.be : un espace interactif pour accompagner l'adolescence
+
+
+
+ adolescent
+ appropriation
+ destruction
+ dispositif
+ engagement
+ passado.be
+ pseudonyme
+ site web
+ solitude
+ sujet
+ temporalité
+ trace
+
+
+
+ 2.3 / Fonctionnement du site: la place des adolescents et le rôle des animateurs-psychologues
+
+
+
+ animateur
+ charte
+ discussion clinique
+ inscription
+ message
+ mot de passe
+ échange
+
+
+
+ 2.4 / Objectifs : développer un espace où la médiation permet une adresse à soi-même
+
+
+
+ adolescent
+ altérité
+ charte
+ interlocuteur
+ je
+ médiation
+ suicide
+ écriture
+
+
+
+ 2.5 / Les animateurs-psychologues, garant d'une dynamique de groupe et d'une intervention au cas par cas
+
+
+
+ adolescent
+ animateur
+ attention
+ demande
+ groupe
+ hypomnemata
+ interaction
+ message
+ psychiatre
+
+
+
+ 2.6 / Autre enjeu: éviter la dépendance et la fascination, par la pluralité
+
+
+
+ adolescent
+ amour
+ animateur
+ corps
+ expérience
+ fascination
+ indépendance
+ lire
+ parler
+ responsabilité
+ réalité
+ sexualité
+ symétrie
+ écrire
+
+
+
+ 3.1 / Le dispositif virtuel ne chasse pas la physicalité: "Virtuel en corps"
+ FAIRE LE LIEN VERS LA JOURN2E VIRTUEL ENCORE
+
+
+ corps
+ psychiatre
+ responsabilité
+ réalité
+ virtuel
+
+
+
+ 3.2 / De l'importance que l'adolescent ait sa place dans l'espace social
+
+
+
+ adolescent
+ adulte
+ amateur
+ autorité
+ dissymétrie
+ Freud Sigmund
+ parole
+ rite de passage
+ social
+
+
+
+
+
+ THD-Culture
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bout à bout 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-III_elizabethrosse-psychologie_et_reseaux_sociaux-jauffret.ldt
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/WebTest/WebTest/WebTest.Web/Content/ENMI08-III_elizabethrosse-psychologie_et_reseaux_sociaux-jauffret.ldt Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,523 @@
+
+
+
+
+
+
+
+
+ Notes et références
+
+
+
+ plan 0
+
+
+
+
+
+ Herbert Marshall McLuhan (1911-1980), chercheur canadien
+
+
+
+ Mc Luhan Herbert Marshall
+
+
+
+ Centre Médical Marmottant
+ <a href="http://www.hopital-marmottan.fr/">Centre Médical Marmottan</a>
+
+
+ Centre Médical Marmottant
+
+
+
+ addiction à utiliser avec vigilance
+
+
+
+ addiction
+
+
+
+ World of Warcraft réunit plus de 10 millions de personnes en janvier 2008, selon Blizzard (éditeur du jeu)
+
+
+
+ World of Warcraft
+
+
+
+ Paul Ricoeur, "Parcours de la reconnaissance", Editions Stock-2004
+
+
+
+ Ricoeur Paul
+
+
+
+ Michel Maffesoli né en 1944 - sociologue français
+
+
+
+ Maffesoli Michel
+ sociologue
+
+
+
+ Spinoza
+ Spinoza distingue:
- la puissance qui s'attache au contrôle de soi;
- et le pouvoir qui s'exerce sur les autres par la compétence, l'argent ou le sexe
+
+
+ pouvoir
+ puissance
+ Spinoza
+
+
+
+ Les sims
+ <a href="http://www.sims2.fr/pages.view_frontpage.asp">Les Sims</a>
+
+
+ sims
+
+
+
+
+
+ THD-Culture
+
+
+
+
+ Séquences
+
+
+
+ 1.1- Remerciements
+
+
+
+
+
+ 1.2- Avec Mc Luhan, le message, c'est le médium. Comment donc le message est-il modifié par la nouvelle médiation technologique: le numérique
+
+
+
+ MacLuhan
+ médiation technologique
+ technologie numérique
+
+
+
+ 1.3- Le Centre Médical Marmottant et les addictions sans drogue: le jeu vidéo
+
+
+
+ addiction
+ Centre Médical Marmottant
+ hardcore gamer
+
+
+
+ 1.4- Addiction et jeu vidéo: un rapport marginal mais instructif
+
+
+
+ addiction
+ jeu vidéo
+
+
+
+ 1.5- World of Warcraft: le MMORPG le plus pratiqué
+
+
+
+ jeu de rôle en ligne massivement multi-joueurs
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+ World of Warcraft
+
+
+
+ 2.1- Eléments d'addiction des MMORPG: un univers, des mondes persistants, un fonctionnement en groupes
+
+
+
+ addiction
+ jeu de rôle en ligne massivement multi-joueurs
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+
+
+
+ 2.2- Problématique: en quoi le jeu vidéo contribue à la construction créative de l'adolescent et à la destruction parallèle éventuelle, par abus et non pas par nature, de la réalité affective, familliale et sociale?
+
+
+
+ désocialisation
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+ socialisation
+ virtuel
+
+
+
+ 3.1- Plan: avec Paul Ricoeur autour des trois facettes de la notion de reconnaissance
+ désir de reconnaissance = dans un parcours, implique une succesion de processus inter-dépendants.
3 significations de "reconnaissance":
- identifié
- être reconnu
- se reconnaître (reflexivité)
+
+
+ changement social
+ génération
+ réalité affective
+
+
+
+ 3.2- Premièrement, le processus d'identification
+
+
+
+ adolescent
+ désir
+ identification
+ identité
+ intérêt
+ jeu virtuel
+ jeune
+ réalité
+ société de consommation
+ standardisation
+
+
+
+ 3.3- Identification et éléments de socialisation
+
+
+
+ famille
+ jeu vidéo
+ parent
+ socialisation
+
+
+
+ 3.4- Identification et multiplicité
+
+
+
+ agrégation
+ communauté
+ groupe
+ identité
+ socialisation
+
+
+
+ 3.5- Jeux virtuels, fonctionnement en guildes et implication du joueur
+
+
+
+ autorité
+ communauté virtuelle
+ communication
+ forum
+ guilde
+ implication
+ joueur
+ réseau social
+
+
+
+ 3.6- Deuxièmement: se reconnaître, une ouverture à la réflexivité
+
+
+
+ adolescence
+ adolescent
+ consommateur
+ existence sociale
+ temps
+ travail
+
+
+
+ 3.7- Sentiment d'unité et jeux virtuels
+
+
+
+ avatar
+ identité
+ jeu
+ roleplay
+ rôle
+ temps
+ unité
+
+
+
+ 3.8- Jeux virtuels et rôles du joueurs dans le jeu
+
+
+
+ avatar
+ joueur
+ leveling
+ personnage
+ roleplay
+ rôle
+
+
+
+ 3.9- Jeu et sentiment d'"être ensemble"
+
+
+
+ communauté
+ extime
+ identité
+ interaction
+ intime
+ jeu
+
+
+
+ 3.10- Se reconnaître par le pouvoir et la puissance
+ distonction par Spinoza :
- la puissance s'attache au contrôle de soi;
- et le pouvoir s'exerce sur les autres par la compétence, l'argent ou le sexe
+
+
+ histoire
+ joueur
+ pouvoir
+ puissance
+ Spinoza
+ temporalité
+
+
+
+ 3.11- Troisièmement, être reconnu: un phénomène corporel
+
+
+
+ corps
+ norme
+ reconnaissance
+ représentation
+
+
+
+ 3.12- Technologies numériques et dévoilement de soi: tout en discrétion!
+ roisièmement, être reconnu: paraît ce que tu es, soit ce que tu parais / technologies numériques et dévoilement progressif de soi et discrétion, maitrîse
+
+
+ adolescent
+ authenticité
+ communication
+ réel
+ technologie numérique
+ virtuel
+
+
+
+ 3.13- Rapport au sexe féminin
+
+
+
+ adolescent
+ joueur
+ mort
+ sexualité
+ spectaculaire
+
+
+
+ 3.14- Rapport à la mort
+
+
+
+ jeu
+ Les Sims
+ mort
+
+
+
+ 4.1- Conclusion 1/ MMORPG, lien social et rapport à soi
+
+
+
+ identité
+ Internet
+ lien social
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+
+
+
+ 4.2- Conclusion 2 / L'importance de ne pas stigmatiser la différence réalité/jeu virtuel
+
+
+
+ jeu
+ norme
+ pathologie
+ réalité
+ virtuel
+
+
+
+ 4.3- Conclusion 3 / L'avatar, une sortie de la figure bourgeoise de spectateur
+
+
+
+ avatar
+ créateur
+ interactivité
+ joueur
+ participation
+ spectateur
+
+
+
+ 4.4- Conclusion 4 / L'addiction au jeu vidéo et la libido juvénile
+ L'addiction au jeu vidéo serait-elle donc cette dernière ruse du désir errant déterritorialisé, intemporalisé, gaspilleur d'énergie libidinale juvénile et refusant ou plutôt retardant l'insertion dans les réalités sociales et économiques toujours plus virtuelles les unes que les autres?
Auraient-elles d'ailleurs, ces énergies libidinales, choisies sans le savoir Foucault contre Deleuze, c'est-à -dire la réalité d'un plaisir réel et potentiellement déréalisant face à la virtualité d'un désir infini qu'aucune médiation technologique n'arrive à définir ou satisfaire?
+
+
+ addiction
+ adolescent
+ désir
+ réalité
+ réalité sociale
+ réalité économique
+
+
+
+
+
+ Mon découpage
+
+
+
+
+
+
+
+ tibo
+
+
+
+
+
+ Chapitres
+
+
+
+ 1- Le Centre Médical Marmottant, une approche des addictions au MMORPG
+
+
+
+ addiction
+ Centre Médical Marmottant
+ médiation technologique
+ technologie numérique
+
+
+
+ 2- Démonstration et présentation de World of Warcraft
+
+
+
+ addiction
+ désocialisation
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+ socialisation
+ virtuel
+
+
+
+ 3- Jeux virtuels et enjeux identitaires et sociaux
+
+
+
+ adolescent
+ changement social
+ communauté
+ corps
+ désir
+ famille
+ identification
+ identité
+ interaction
+ norme
+ réalité
+ réel
+ réseau social
+ société de consommation
+ standardisation
+ technologie numérique
+ temporalité
+ virtuel
+
+
+
+ 4- Conclusions
+
+
+
+ identité
+ Internet
+ jeu
+ lien social
+ MMORPG (Massively Multiplayer Online Role-Playing Game)
+ norme
+ participation
+ pathologie
+ spectateur
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pitch
+
+
+
+
+
+
+
+
+
+
+
+
+ Elisabeth Rossé, Psychologue au Centre Médical Marmottant.
Jeux virtuels et reconnaissance identitaire juvénile
Les entretiens du nouveau
monde industriel 2008
- Psychologie et réseaux sociaux -
+
+
+ ENMI08-III_elizabethrosse/iiielizabethrosse.flv
+
+
+ ENMI08-III_elizabethrosse/iiielizabethrosse.flv
+
+
+ ENMI08-III_elizabethrosse/iiielizabethrosse.flv
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/ProductionContent/ProductionVideo.xml
--- a/client/test/WebTest/WebTest/WebTest.Web/ProductionContent/ProductionVideo.xml Wed Jan 27 10:55:59 2010 +0100
+++ b/client/test/WebTest/WebTest/WebTest.Web/ProductionContent/ProductionVideo.xml Thu Feb 04 16:38:04 2010 +0100
@@ -4,8 +4,8 @@
metafile = Lien du fichier de méta donnée
title = Titre du VideoLivre
-->
-
-
+
+
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest.Web/WebTest.Web.csproj
--- a/client/test/WebTest/WebTest/WebTest.Web/WebTest.Web.csproj Wed Jan 27 10:55:59 2010 +0100
+++ b/client/test/WebTest/WebTest/WebTest.Web/WebTest.Web.csproj Thu Feb 04 16:38:04 2010 +0100
@@ -54,7 +54,9 @@
-
+
+ Designer
+
Web.config
@@ -75,7 +77,7 @@
False
True
- 5979
+ 5840
/
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest/App.xaml.cs
--- a/client/test/WebTest/WebTest/WebTest/App.xaml.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/test/WebTest/WebTest/WebTest/App.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -20,7 +20,7 @@
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
-
+
}
diff -r beb938b4fb76 -r bd33267300aa client/test/WebTest/WebTest/WebTest/MainPage.xaml.cs
--- a/client/test/WebTest/WebTest/WebTest/MainPage.xaml.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/test/WebTest/WebTest/WebTest/MainPage.xaml.cs Thu Feb 04 16:38:04 2010 +0100
@@ -22,18 +22,7 @@
public MainPage()
{
Commands.Initialize();
-
- //FactoryVideoLivre.xmlClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(xmlClient_DownloadStringCompleted);
-
-
-
- //Loader.RegisterType("ldt", LDTFileReader.ConvertToVideoBook);
-
-
-
- // Loader.LoadAvailableVideoBooks("Content/AvailableVideoBooks.xml");
- // Loader.xmlClient.DownloadStringCompleted+=new DownloadStringCompletedEventHandler(xmlClient_DownloadStringCompleted);
- // SelectedVideoBooks = Loader.ListVideoBook;
+
InitializeComponent();
MainElement.DataContext = new MainVM();
diff -r beb938b4fb76 -r bd33267300aa client/test/mainInterface/Iri.Modernisation.Test.MainInterface/Content/AvailableVideoBooks.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/client/test/mainInterface/Iri.Modernisation.Test.MainInterface/Content/AvailableVideoBooks.xml Thu Feb 04 16:38:04 2010 +0100
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+