了解开源博客引擎 RaccoonBlog &潜台词
我下载了两个开源博客引擎(subtext 和 RaccoonBlog),但我无法获得任何文档来帮助他们更好地理解代码。
Subtext 在开发机器上正确设置,我可以创建新的博客、帖子等,并且就应用程序设置而言没有问题。关于潜台词的主要问题是我无法理解它的路由机制,为此我需要一些文档。
对于 RaccoonBlog,我在我的开发机器上设置它时遇到问题。当我尝试调试应用程序时,它会抛出异常 DocumentStoreHolder 类的初始化方法中的 IndexCreation.CreateIndexes(typeof(Tags_Count).Assembly, DocumentStore)
。我相信这与RavenDb有关。
我以前从未使用过 RavenDb。
I downloaded two open source blog engines (subtext and RaccoonBlog) but I can't get any documentation for either of them to develop understanding of the code.
Subtext is setup properly on dev machine and I can create new blogs, posts etc. and there is no problem as far as application setup is concerned. The main problem regarding subtext is that I can't understand its routing mechanism and for that I need some documentation.
For RaccoonBlog, I have problem setting it up on my dev machine. When I try to debug the application it throws an exception atIndexCreation.CreateIndexes(typeof(Tags_Count).Assembly, DocumentStore)
in DocumentStoreHolder class's initialize method. I believe it has something to do with RavenDb.
I have never worked with RavenDb before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有很多信息 http://code.google.com/p/subtext/带列表。特别是请求生命周期页面。
您还可以在 Phil Haack 的博客 http://haacked.com/tags/Subtext/ 上找到一些有用的信息default.aspx
通过混合BlogEngine.Net的另一个引擎http://www.dotnetblogengine.net/< /a>
There's quite a lot of info here http://code.google.com/p/subtext/w/list. Particularly the request lifecycle page.
You might also find some useful info on Phil Haack's blog http://haacked.com/tags/Subtext/default.aspx
Another engine to through into the mix BlogEngine.Net http://www.dotnetblogengine.net/
你想做什么?可以找到路由 -
http:// /code.google.com/p/subtext/source/browse/trunk/src/Subtext.Web/Routes.cs
What is it your trying to do? The routing can be found -
http://code.google.com/p/subtext/source/browse/trunk/src/Subtext.Web/Routes.cs