Ejemplo n.º 1
0
        public static IndividualDemoCategoryModel[] LoadCategories(string xmlIndexPath)
        {
            XDocument xmlIndex = XDocument.Load(xmlIndexPath);
            List <IndividualDemoCategoryModel> categories = new List <IndividualDemoCategoryModel>();

            foreach (var xmlCategory in xmlIndex.Root.Elements("category"))
            {
                List <IndividualDemoModel> demos = new List <IndividualDemoModel>();
                string category = xmlCategory.Attribute("name").Value;
                foreach (var xmlDemo in xmlCategory.Elements("demo"))
                {
                    string title             = xmlDemo.Attribute("name").Value;
                    IndividualDemoModel demo = new IndividualDemoModel
                    {
                        Title       = title,
                        Name        = category + "." + title,
                        Images      = xmlDemo.Elements("image").Select(e => e.Attribute("src").Value).ToArray(),
                        UpdateDate  = DateTime.Parse(xmlDemo.Element("date").Value),
                        Description = xmlDemo.Element("description").Value,
                        CppCodes    = xmlDemo.Elements("cpp").Select(e => e.Attribute("src").Value).ToDictionary(s => s, s => ""),
                    };
                    demos.Add(demo);
                }
                categories.Add(new IndividualDemoCategoryModel
                {
                    Name        = category,
                    Description = xmlCategory.Element("description").Value,
                    Demos       = demos.ToArray(),
                });
            }
            return(categories.ToArray());
        }
Ejemplo n.º 2
0
 public IndexPageModel(string xmlIndexPath)
 {
     this.LatestUpdateDemo = new DemoPageModel(xmlIndexPath)
                             .DemoCategories
                             .SelectMany(c => c.Demos)
                             .OrderBy(d => d.UpdateDate)
                             .Last();
 }
Ejemplo n.º 3
0
        public static IndividualDemoModel LoadDemo(string xmlIndexPath, string name)
        {
            IndividualDemoModel page = LoadCategories(xmlIndexPath)
                                       .SelectMany(c => c.Demos)
                                       .Where(d => d.Name == name)
                                       .First();

            string[] cppFiles = page.CppCodes.Keys.ToArray();
            page.CppCodes = cppFiles
                            .ToDictionary(
                s => s,
                s => File.ReadAllText(string.Format("{0}/{1}/{2}", Path.GetDirectoryName(xmlIndexPath), page.Name, s))
                );
            return(page);
        }