Mercurial > pub > bltoolkit
view Tools/DocGen/Program.Web.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.IO; namespace DocGen { partial class Program { static readonly string _template = Path.GetFullPath(@"..\..\content\WebTemplate.html"); static FileAction FilterFile(string fileName) { var name = Path.GetFileName(fileName).ToLower(); switch (name) { case "home.htm" : return FileAction.Skip; default : return FileAction.Process; } } static void CreateTarget(FileItem files) { new Generator().Generate( new FileItem(), _template, new[] { "Source" }, destPath, @"..\..\..\..\", false, true, fileName => { var name = Path.GetFileName(fileName).ToLower(); if (name == "assemblyinfo.cs") return FileAction.Skip; var ext = Path.GetExtension(fileName).ToLower(); switch (ext) { case ".cs": return FileAction.Process; default : return FileAction.Skip; } }); CreateSitemap(files); } static void CreateSitemap(FileItem files) { var sm = ""; foreach (var file in files.GetFiles()) { var s = file.Name.Replace(destPath, "http://www.bltoolkit.net/").Replace("\\", "/"); if (s == "http://www.bltoolkit.net/index.htm") continue; sm += string.Format(@" <url> <loc>{0}</loc> <lastmod>{1:yyyy-MM-dd}</lastmod> <changefreq>weekly</changefreq> </url>", s, DateTime.Now); } using (var sw = File.CreateText(destPath + "sitemap.xml")) { sw.WriteLine(string.Format(@"<?xml version=""1.0"" encoding=""UTF-8""?> <urlset xmlns=""http://www.google.com/schemas/sitemap/0.84""> <url> <loc>http://www.bltoolkit.net/</loc> <lastmod>{0:yyyy-MM-dd}</lastmod> <changefreq>weekly</changefreq> </url>{1} </urlset>", DateTime.Now, sm)); } } } }