博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
向Uliweb find -t 添加查看模板块定义的命令行支持
阅读量:6287 次
发布时间:2019-06-22

本文共 2239 字,大约阅读时间需要 7 分钟。

hot3.png

今天应 rainwoods 的建议,向uliweb的find -t命令添加了 --blocks 和 --with-filename 的支持。这两个都是和 -t 一起使用的。其中 --blocks 将显示查找模板中都定义了哪些块。比如:

D:\project\mywork\uliwebzone>uliweb find -t TutorialView/index.html --blocksapps/tutorials/templates/TutorialView/index.html-------------- Blocks --------------    html_tag    meta    title    _css    body_tag    before_header    header        project        nav        user_info    content        content_main    footer_container        footer    after_footer

上面只是看出一个简单的关系。如果还想知道每个block都是在哪个模板中定义的(因为Uliweb的模板和django一样是可以继承的,所以模板一多就变得复杂了),可以再加一个 --with-filename,这样在每个block后面还会显示生效的模板文件名。如:

D:\project\mywork\uliwebzone>uliweb find -t TutorialView/index.html --blocks --with-filenameapps/tutorials/templates/TutorialView/index.html-------------- Blocks --------------    html_tag   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)    meta   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)    title   (apps/tutorials/templates/tutorial_layout.html)    _css   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)    body_tag   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)    before_header   (apps/project/templates/layout_container.html)    header   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)        project   (d:/project/mywork/plugs-git/plugs/layout/bootstrap/templates/layout_container.html)        nav   (d:/project/mywork/plugs-git/plugs/layout/bootstrap/templates/layout_container.html)        user_info   (apps/project/templates/layout_container.html)    content   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)        content_main   (apps/tutorials/templates/tutorialview/index.html)    footer_container   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)        footer   (d:/project/mywork/plugs-git/plugs/layout/bootstrap/templates/layout_container.html)    after_footer   (d:/project/mywork/plugs-git/plugs/ui/bootstrap/templates/bootstrap/bootstrap_layout.html)

转载于:https://my.oschina.net/limodou/blog/170888

你可能感兴趣的文章
js 面试题
查看>>
sqoop数据迁移(基于Hadoop和关系数据库服务器之间传送数据)
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
Javascript 中的 Array 操作
查看>>
java中包容易出现的错误及权限问题
查看>>
AngularJS之初级Route【一】(六)
查看>>
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>
Mellanox公司计划利用系统芯片提升存储产品速度
查看>>
白帽子守护网络安全,高薪酬成大学生就业首选!
查看>>
ARM想将芯片装进人类大脑 降低能耗是一大挑战
查看>>
Oracle数据库的备份方法
查看>>
Selenium 自动登录考勤系统
查看>>
关于如何以编程的方式执行TestNG
查看>>
智能照明造福千家万户 家居智能不再是梦
查看>>
物联网如何跳出“看起来很美”?
查看>>
浅谈MySQL 数据库性能优化
查看>>
《UNIX/Linux 系统管理技术手册(第四版)》——1.10 其他的权威文档
查看>>
灵动空间 创享生活
查看>>
《UNIX网络编程 卷1:套接字联网API(第3版)》——8.6 UDP回射客户程序:dg_cli函数...
查看>>