在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → ctemplate模版引擎

ctemplate模版引擎

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.06M
  • 下载次数:0
  • 浏览次数:103
  • 发布时间:2020-07-26
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
谷歌开发的ctemplate模版引擎,用于解析HTML,开发语言为C++。 用法:下载之后解压,编译,使用其中的例子测试,最后写自己的程序。
【实例截图】
【核心代码】
ctemplate-2.2
└── ctemplate-2.2
├── AUTHORS
├── COPYING
├── ChangeLog
├── INSTALL
├── Makefile.am
├── Makefile.in
├── NEWS
├── README
├── README_windows.txt
├── aclocal.m4
├── autogen.sh
├── compile
├── config.guess
├── config.sub
├── configure
├── configure.ac
├── contrib
│   ├── README.contrib
│   ├── convert_to_95.pl
│   ├── highlighting.vim
│   └── tpl-mode.el
├── ctemplate.sln
├── depcomp
├── doc
│   ├── auto_escape.html
│   ├── designstyle.css
│   ├── example.html
│   ├── guide.html
│   ├── howto.html
│   ├── index.html
│   ├── reference.html
│   ├── tips.html
│   └── xss_resources.html
├── install-sh
├── libtool
├── ltmain.sh
├── m4
│   ├── ac_have_attribute.m4
│   ├── ac_interlocked_exchange.m4
│   ├── ac_rwlock.m4
│   ├── acx_pthread.m4
│   ├── compiler_characteristics.m4
│   ├── google_namespace.m4
│   ├── libtool.m4
│   ├── ltoptions.m4
│   ├── ltsugar.m4
│   ├── ltversion.m4
│   ├── lt~obsolete.m4
│   ├── namespaces.m4
│   ├── stl_hash.m4
│   └── stl_namespace.m4
├── missing
├── packages
│   ├── deb
│   │   ├── README
│   │   ├── changelog
│   │   ├── compat
│   │   ├── control
│   │   ├── copyright
│   │   ├── docs
│   │   ├── libctemplate-dev.dirs
│   │   ├── libctemplate-dev.install
│   │   ├── libctemplate0.dirs
│   │   ├── libctemplate0.install
│   │   └── rules
│   ├── deb.sh
│   ├── rpm
│   │   └── rpm.spec
│   └── rpm.sh
├── src
│   ├── base
│   │   ├── arena-inl.h
│   │   ├── arena.cc
│   │   ├── arena.h
│   │   ├── fileutil.h
│   │   ├── macros.h
│   │   ├── manual_constructor.h
│   │   ├── mutex.h
│   │   ├── small_map.h
│   │   ├── thread_annotations.h
│   │   └── util.h
│   ├── config.h.in
│   ├── ctemplate
│   │   ├── find_ptr.h.in
│   │   ├── per_expand_data.h
│   │   ├── per_expand_data.h.in
│   │   ├── str_ref.h
│   │   ├── str_ref.h.in
│   │   ├── template.h
│   │   ├── template.h.in
│   │   ├── template_annotator.h
│   │   ├── template_annotator.h.in
│   │   ├── template_cache.h
│   │   ├── template_cache.h.in
│   │   ├── template_dictionary.h
│   │   ├── template_dictionary.h.in
│   │   ├── template_dictionary_interface.h
│   │   ├── template_dictionary_interface.h.in
│   │   ├── template_emitter.h
│   │   ├── template_emitter.h.in
│   │   ├── template_enums.h
│   │   ├── template_enums.h.in
│   │   ├── template_modifiers.h
│   │   ├── template_modifiers.h.in
│   │   ├── template_namelist.h
│   │   ├── template_namelist.h.in
│   │   ├── template_pathops.h
│   │   ├── template_pathops.h.in
│   │   ├── template_string.h
│   │   └── template_string.h.in
│   ├── diff_tpl_auto_escape.cc
│   ├── htmlparser
│   │   ├── fsm_config.py
│   │   ├── generate_fsm.py
│   │   ├── htmlparser.cc
│   │   ├── htmlparser.h
│   │   ├── htmlparser_cpp.h
│   │   ├── htmlparser_fsm.config
│   │   ├── htmlparser_fsm.h
│   │   ├── jsparser.cc
│   │   ├── jsparser.h
│   │   ├── jsparser_fsm.config
│   │   ├── jsparser_fsm.h
│   │   ├── statemachine.cc
│   │   └── statemachine.h
│   ├── indented_writer.h
│   ├── make_tpl_varnames_h.cc
│   ├── per_expand_data.cc
│   ├── solaris
│   │   └── libstdc++.la
│   ├── template-converter
│   ├── template.cc
│   ├── template_annotator.cc
│   ├── template_cache.cc
│   ├── template_dictionary.cc
│   ├── template_modifiers.cc
│   ├── template_modifiers_internal.h
│   ├── template_namelist.cc
│   ├── template_pathops.cc
│   ├── template_string.cc
│   ├── tests
│   │   ├── compile_test.cc
│   │   ├── config_for_unittests.h
│   │   ├── diff_tpl_auto_escape_unittest.sh
│   │   ├── generate_fsm_c_test.c
│   │   ├── generate_fsm_test.sh
│   │   ├── htmlparser_cpp_test.cc
│   │   ├── htmlparser_testdata
│   │   │   ├── cdata.html
│   │   │   ├── comments.html
│   │   │   ├── context.html
│   │   │   ├── google.html
│   │   │   ├── javascript_attribute.html
│   │   │   ├── javascript_block.html
│   │   │   ├── javascript_regexp.html
│   │   │   ├── position.html
│   │   │   ├── reset.html
│   │   │   ├── sample_fsm.c
│   │   │   ├── sample_fsm.config
│   │   │   ├── simple.html
│   │   │   └── tags.html
│   │   ├── make_tpl_varnames_h_unittest.sh
│   │   ├── statemachine_test.c
│   │   ├── statemachine_test_fsm.config
│   │   ├── statemachine_test_fsm.h
│   │   ├── template_cache_test.cc
│   │   ├── template_dictionary_unittest.cc
│   │   ├── template_modifiers_unittest.cc
│   │   ├── template_regtest.cc
│   │   ├── template_setglobals_unittest.cc
│   │   ├── template_test_util.cc
│   │   ├── template_test_util.h
│   │   ├── template_test_util_test.cc
│   │   ├── template_unittest.cc
│   │   ├── template_unittest_test_footer.in
│   │   ├── template_unittest_test_footer_dict01.out
│   │   ├── template_unittest_test_footer_dict02.out
│   │   ├── template_unittest_test_html.in
│   │   ├── template_unittest_test_html_dict01.out
│   │   ├── template_unittest_test_html_dict02.out
│   │   ├── template_unittest_test_invalid1.in
│   │   ├── template_unittest_test_invalid2.in
│   │   ├── template_unittest_test_markerdelim.in
│   │   ├── template_unittest_test_markerdelim_dict01.out
│   │   ├── template_unittest_test_markerdelim_dict02.out
│   │   ├── template_unittest_test_modifiers.in
│   │   ├── template_unittest_test_modifiers_dict01.out
│   │   ├── template_unittest_test_nul.in
│   │   ├── template_unittest_test_nul_dict01.out
│   │   ├── template_unittest_test_selective_css.in
│   │   ├── template_unittest_test_selective_css_dict01.out
│   │   ├── template_unittest_test_selective_css_dict02.out
│   │   ├── template_unittest_test_selective_html.in
│   │   ├── template_unittest_test_selective_html_dict01.out
│   │   ├── template_unittest_test_selective_html_dict02.out
│   │   ├── template_unittest_test_selective_js.in
│   │   ├── template_unittest_test_selective_js_dict01.out
│   │   ├── template_unittest_test_selective_js_dict02.out
│   │   ├── template_unittest_test_simple.in
│   │   ├── template_unittest_test_simple_dict01.out
│   │   ├── template_unittest_test_simple_dict02.out
│   │   ├── template_unittest_test_simple_dict03.out
│   │   ├── template_unittest_test_valid1.in
│   │   └── template_unittest_test_valid1_dict01.out
│   └── windows
│   ├── config.h
│   ├── ctemplate
│   │   ├── find_ptr.h
│   │   ├── per_expand_data.h
│   │   ├── str_ref.h
│   │   ├── template.h
│   │   ├── template_annotator.h
│   │   ├── template_cache.h
│   │   ├── template_dictionary.h
│   │   ├── template_dictionary_interface.h
│   │   ├── template_emitter.h
│   │   ├── template_enums.h
│   │   ├── template_modifiers.h
│   │   ├── template_namelist.h
│   │   ├── template_pathops.h
│   │   └── template_string.h
│   ├── port.cc
│   ├── port.h
│   └── preprocess.sh
├── statemachine.c
└── vsprojects
├── compile_test
│   └── compile_test.vcproj
├── diff_tpl_auto_escape
│   └── diff_tpl_auto_escape.vcproj
├── generate_fsm_c_test
│   └── generate_fsm_c_test.vcproj
├── htmlparser_test
│   └── htmlparser_test.vcproj
├── libctemplate
│   └── libctemplate.vcproj
├── make_tpl_varname_h
│   └── make_tpl_varname_h.vcproj
├── statemachine_test
│   └── statemachine_test.vcproj
├── template_cache_test
│   └── template_cache_test.vcproj
├── template_dictionary_unittest
│   └── template_dictionary_unittest.vcproj
├── template_modifiers_unittest
│   └── template_modifiers_unittest.vcproj
├── template_regtest
│   └── template_regtest.vcproj
├── template_setglobals_unittest
│   └── template_setglobals_unittest.vcproj
├── template_test_util_test
│   └── template_test_util_test.vcproj
├── template_unittest
│   └── template_unittest.vcproj
└── template_unittest_static
└── template_unittest_static.vcproj

32 directories, 225 files

标签:

实例下载地址

ctemplate模版引擎

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警