Screwturn 自定义页面存储提供商
我想看看我们是否可以自定义 ScrewTurnWiki 以适应我们的网站,因此
传统的 Page.ashx 或 Default.aspx?page=abc
wiki 页面将不是 站点/section1/page/Wiki 站点/section2/category2/Wiki site/sectionXX/categoryYY/PageZZ/Wiki
其中每个页面的 pageName 变为 第 1 节/页 第 2 节/类别 2 SectionXX/CategoryYY/PageZZ
等
据我所知,这应该是可能的 1)创建一个新的存储提供程序,根据新的页面名称获取页面 2)进行设置,以便默认使用新的存储提供程序
代码已准备就绪,但为了测试它,我需要设置配置以默认使用新的存储提供程序 - 该配置应该放在哪里? 注意 - 我更愿意让它与新的自定义存储提供程序一起出现,而不是转到常规管理屏幕(这里没有)并从那里配置它! )
I'm trying to see if we can customize ScrewTurnWiki to fit into our site, so
instead of the traditional Page.ashx or Default.aspx?page=abc
the wiki pages will be
site/section1/page/Wiki
site/section2/category2/Wiki
site/sectionXX/categoryYY/PageZZ/Wiki
where the pageName for each becomes
Section1/page
Section2/Category2
SectionXX/CategoryYY/PageZZ
etc.
From what i can understand this should be possible with
1) Creating a new storage provider which gets the pages based on the new page name
2) setting up so that the new storage provider is used by default
The code is ready but to test it i need to setup the config to take the new storage provider by default - where should this config go ? Note - i'd prefer to have it comeup with the new custom storage provider rather than goto the regular admin screen ( there's none here ) and configure it from there ! )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
制定了自定义存储提供商位
派生自pluginpack中的相关类
更新 global.asax 并在那里添加/初始化新的提供程序
worked out the custom storage provider bit
derived from the relevant class in pluginpack
update the global.asax and add/initialize the new provider there