站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
We7 CMS/模板地图工作原理
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
{{We7 CMS导航}} 在站点文件夹中 _skins下,可以找到 templates.map、we7.map(模板组名称.map)。这两个文件就是[[We7 CMS]]的[[模板]]地图文件,用来实现模板与[[url]]的映射关系。 [[Image:We7CMS_TemplateMaps1.png|center]] 打开templates.map分析一下: <pre> <?xml version="1.0" encoding="utf-8"?> <items> <item url="/home" template="default.ascx" /> <item url="/cp/we7/detail" template="product_content.ascx" /> <item url="/cp/we7/" template="product_list.ascx" /> <item url="/down/rjxz/" template="down_list.ascx" /> <item url="/down/rjxz/detail" template="down_conten.ascx" /> <item url="/*/" template="channel.ascx" /> <item url="/*/detail" template="content.ascx" /> <item url="/*/search" template="search.ascx" /> <item url="/mx/yrjj/" template="yrjj_list.ascx" /> <item url="/mx/yrjj/detail" template="yrjj_content.ascx" /> <item url="/register" template="Registration.ascx" /> </items> </pre> 打开we7.map看看: <pre> <?xml version="1.0" encoding="utf-8"?> <items> <item url="/tk/*/" template="photo_list.ascx" /> <item url="/cp/we7/" template="product_list.ascx" /> <item url="/tp/*/" template="photo_list.ascx" /> <item url="/hd/zxfk/" template="feedback.ascx" /> <item url="/hd/wsdc/" template="wsdc_content.ascx" /> <item url="/zhmm/" template="Forgot_Password.ascx" /> <item url="/down/" template="down_conten.ascx" /> </items> </pre> 这两个映射表就完成了[[网站]]前台输入url地址后,系统找到对应的模板文件,并调入执行:如,[[浏览器]]输入[[网址]] <nowiki>http://demo.we7.cn/home</nowiki>,系统根据 /home 的url地址,最终调入模板 default.ascx 。 其中*为通配符, '''系统通配标签:''' */ 栏目首页 */list 栏目列表页 */detail 栏目详细页 */search 栏目搜索页 */register 会员注册 */*/ 所有栏目首页 */*/list 所有栏目列表页 */*/detail 所有栏目详细页 */*/search 所有栏目搜索页 '''模板地图手工修改''' *'''templates.map''' templates.map 文件的数据来自 _skins下 的 模板组[[xml]]文件,如 we7.xml,打开看看 <pre> <?xml version="1.0" encoding="utf-8"?> <TempateGroup name="we7" description="" created="2010-5-12 10:28:03" ver="V2.2"> <Item name="首页" template="default.ascx" location="home" c_model="" layout="" tag="" type="站点" description="" created="2010-5-12 10:36:54" updated="2010-5-12 10:36:54" isSub="False" c_modelText="" locationText="首页" /> <Item name="产品详细页" template="product_content.ascx" location="detail" c_model="CCTV.Product" layout="" tag="" type="栏目" description="" created="2010-6-13 13:53:33" updated="2010-6-13 13:53:33" isSub="False" c_modelText="产品" locationText="详细页" /> <Item name="产品列表页" template="product_list.ascx" location="index" c_model="CCTV.Product" layout="" tag="" type="栏目" description="" created="2010-6-13 13:53:43" updated="2010-6-13 13:53:43" isSub="False" c_modelText="产品" locationText="首页" /> <Item name="下载列表页" template="down_list.ascx" location="index" c_model="CCTV.Download" layout="" tag="" type="栏目" description="" created="2010-6-13 13:57:53" updated="2010-6-13 13:57:53" isSub="False" c_modelText="下载" locationText="首页" /> <Item name="下载详细页" template="down_conten.ascx" location="detail" c_model="CCTV.Download" layout="" tag="" type="栏目" description="" created="2010-6-13 13:58:00" updated="2010-6-13 13:58:00" isSub="False" c_modelText="下载" locationText="详细页" /> <Item name="栏目页" template="channel.ascx" location="index" c_model="" layout="" tag="" type="栏目" description="" created="2010-6-13 14:44:10" updated="2010-6-13 14:44:10" isSub="False" c_modelText="文章信息" locationText="首页" /> <Item name="详细页" template="content.ascx" location="detail" c_model="" layout="" tag="" type="栏目" description="" created="2010-6-13 14:44:16" updated="2010-6-13 14:44:16" isSub="False" c_modelText="文章信息" locationText="详细页" /> <Item name="搜索结果页" template="search.ascx" location="search" c_model="" layout="" tag="" type="栏目" description="" created="2010-6-13 14:58:44" updated="2010-6-13 14:58:44" isSub="False" c_modelText="文章信息" locationText="搜索页" /> <Item name="影人聚焦表页" template="yrjj_list.ascx" location="index" c_model="CCTV.yrjj" layout="" tag="" type="栏目" description="" created="2010-6-17 10:07:31" updated="2010-6-17 10:07:31" isSub="False" c_modelText="影人聚焦" locationText="首页" /> <Item name="影人聚焦详细页" template="yrjj_content.ascx" location="detail" c_model="CCTV.yrjj" layout="" tag="" type="栏目" description="" created="2010-6-17 10:07:40" updated="2010-6-17 10:07:40" isSub="False" c_modelText="影人聚焦" locationText="详细页" /> <Item name="注册页" template="Registration.ascx" location="register" c_model="" layout="" tag="" type="站点" description="" created="2010-6-17 11:01:37" updated="2010-6-17 11:01:37" isSub="False" c_modelText="" locationText="注册" /> </TempateGroup> </pre> 这个文件就是模板组的默认模板绑定描述文件,具体操作界面在http://demo26.we7.cn/admin/Template/TemplateGroupEdit.aspx?file=help.xml&tab=3,截图如下: [[Image:We7CMS_TemplateMaps5.png|center]] 所以,每一次修改默认的模板绑定,都会重新生成 templates.map 文件。templates.map 手工修改没有用,数据都是由 we7.xml 生成。 *'''we7.xml''' 模板组名称不同,文件名也不同,具体为:模板组.xml 这个模板地图为 特殊指定的模板映射关系,即每个栏目具体要用哪个模板,进行具体指定,指定后的数据就存在这里;下图为指定栏目模板的界面: [[Image:We7CMS_TemplateMaps6.png|center]] 上面的设置保存到 we7.map中具体的项目就是 <item url="/tp/*/" template="photo_list.ascx" /> 中间没有别的周转,所以,这个信息文件是可以进行手工编辑的。 ==参考来源== *http://help.we7.cn/library/78.html [[category:We7 CMS|M]] [[category:We7 CMS模板|M]] {{We7 CMS使用手册导航}}
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)
本页使用的模板:
模板:We7 CMS使用手册导航
(
编辑
)
模板:We7 CMS导航
(
编辑
)