--- a/client/src/Iri.Modernisation.Data/Models/FactoryVideoLivre.cs Mon Jan 25 09:30:22 2010 +0100
+++ b/client/src/Iri.Modernisation.Data/Models/FactoryVideoLivre.cs Wed Jan 27 10:37:39 2010 +0100
@@ -15,10 +15,11 @@
public static class FactoryVideoLivre
{
public static WebClient xmlClient = new WebClient();
- private static XDocument _configDoc;
+ private static XDocument _configDoc;
public static VideoChapterDescription[] VideoChapterDescriptions {get;private set;}
public static PolemicTypeDescription[] AnnotationDescriptions { get; private set; }
public static String VideoBookListPath;
+ public static String ProductionVideoPath;
public static int NumberOfChapters
{
get
@@ -58,6 +59,7 @@
List<PolemicTypeDescription> temp_an = new List<PolemicTypeDescription>();
int nb = 0;
VideoBookListPath = _configDoc.Root.Attribute("VideoBookList").Value;
+ ProductionVideoPath = _configDoc.Root.Attribute("ProductionVideo").Value;
foreach (XElement XChapter in _configDoc.Root.Element("VideoBook").Elements())
{
temp.Add(new VideoChapterDescription(nb, XChapter.Attribute("name").Value, XChapter.Attribute("color").Value));