I just checked in support for generation of Google Sitemaps directly from DasBlog. Omar anticipates a release this week. We also have a continuous integration build going internally thanks to Paul van Brenk so we may be able to have always-fresh" releases soon (remember to back up your stuff and manually merge the httpHandlers section of your web.config). We also will have an AJAX-based "autosave draft" feature as well thanks to Steven Rockarts and Justice Gray.
我刚刚检查了直接从DasBlog生成Google Sitemaps的支持。 Omar有望在本周发布。 由于Paul van Brenk ,我们还在内部进行了持续集成,因此我们很快就能发布“总是最新的”版本(记住备份您的内容并手动合并web.config的httpHandlers部分) 。借助Steven Rockarts和Justice Gray ,还具有基于AJAX的“自动保存草稿”功能。
NOTE: The daily builds from Paul are DAILY BUILDS. They are not the official release. We'll release the final one SourceForge. However, I'm ALWAYS running the daily build on this blog, so it's pretty baked. Upgrading is just copying a few new files and merging your web.config.UPDATE: Daily Builds of DasBlog are at http://dasblog.info/dbftp/
注意: Paul的每日构建为每日构建。 它们不是正式版本。 我们将发布最后一个SourceForge。 但是,我总是在此博客上运行每日构建,因此非常不错。 升级只是复制一些新文件并合并您的web.config。 更新:DasBlog的每日构建位于http://dasblog.info/dbftp/
If you haven't yet, go log into Google Webmaster Tools and check out what Google knows about your site. It includes a robots.txt validator and lets you know what keywords folks are using to get to your site.
如果还没有,请登录Google网站站长工具并查看Google对您的网站的了解。 它包含一个robots.txt验证器,并让您知道人们正在使用哪些关键字来访问您的网站。
Google sitemaps are very simple and a pretty good idea, I think. It lets me, as a blog publisher, provide a great deal of context and "freshness" data to Google that I have stored (trapped) inside the blog.
我认为Google网站地图非常简单,是个不错的主意。 作为博客的发布者,它使我能够向我提供大量我已存储(捕获)在博客中的上下文和“新鲜”数据。
Sure, arguably they could get a lot of that information by gleaning it from If-Modified-Since headers, but this is such a simple format, why NOT do it?
当然,可以说他们可以通过从If-Modified-Since标头中收集到很多信息,但这是一个简单的格式,为什么不这样做呢?
Here's an example snippet. The lastmod element can include time detail as well, but I think date is enough for blog purposes. The priority is pretty much relative. In this case, the home page is more important than a post and a comments page is less important than a post page.
这是一个示例片段。 lastmod元素也可以包含时间详细信息,但是我认为日期足以满足博客目的。 优先级几乎是相对的。 在这种情况下,首页比帖子重要,而评论页比帖子重要。
<?xml version="1.0"?>
<urlset xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>http://www.hanselman.com/blog/default.aspx</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
<lastmod>2006-08-22</lastmod>
</url>
<url>
<loc>http://www.hanselman.com/blog/archives.aspx</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
<lastmod>2006-08-22</lastmod>
</url>
<url>
<loc>http://www.hanselman.com/blog/CommentView.aspx?...</loc>
<changefreq>daily</changefreq>
<priority>0.7</priority>
<lastmod>2006-08-22</lastmod>
</url>
<url>
<loc>http://www.hanselman.com/blog/FinePrintChangesTheWayIPrint.aspx</loc>
<changefreq>daily</changefreq>
<priority>0.9</priority>
<lastmod>2006-08-22</lastmod>
</url>
....SNIP....<?xml version =“ 1.0”?> <urlset xmlns:xsd =“ http://www.w3.org/2001/XMLSchema ” xmlns:xsi =“ http://www.w3.org/2001/XMLSchema-instance ” xmlns =“ http:// www .google.com / schemas / sitemap / 0.84 “> <url> <loc> http://www.hanselman.com/blog/default.aspx </ loc> <changefreq>每日</ changefreq> <priority> 1.0 </ priority> <lastmod> 2006-08-22 </ lastmod> </ url> <url> <loc> http://www.hanselman.com/blog/archives.aspx </ loc> <changefreq>每日</ changefreq> <priority> 1.0 </ priority> <lastmod> 2006-08-22 </ lastmod> </ url> <url> <loc> http://www.hanselman.com/blog/CommentView.aspx?... </ loc> <changefreq>每日</ changefreq> <priority> 0.7 </ priority> <lastmod> 2006-08-22 </ lastmod> </ url> <url> <loc> http://www.hanselman.com/blog/FinePrintChangesTheWayIPrint.aspx </ loc> <changefreq>每日</ changefreq> <priority> 0.9 </ priority> <lastmod> 2006-08-22 </ lastmod> </ url> .... SNIP ....
Aside, I had no idea I was the 3rd (or so) Scott if you search just for "Scott" on Google One day I'll crush Scott Fly Rods, but until that day, it's the Bronze for me. ;)
顺便说一句,如果您在Google上仅搜索“ Scott ”,我不知道我是Scott的第三名。有一天,我会击碎Scott Fly Rods,但直到那一天,对我来说,它都是铜牌。 ;)
I also encourage folks to "sesha iWeb" with Google ngaisiZulu. ;)
我还鼓励人们使用Google ngaisiZulu“ sesha iWeb” 。 ;)