├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.md ├── README_windows.txt ├── autogen.sh ├── configure.ac ├── contrib ├── README.contrib ├── convert_to_95.pl ├── highlighting.vim └── tpl-mode.el ├── ctemplate.sln ├── doc ├── auto_escape.html ├── designstyle.css ├── example.html ├── guide.html ├── howto.html ├── index.html ├── reference.html ├── tips.html └── xss_resources.html ├── m4 ├── ac_have_attribute.m4 ├── ac_interlocked_exchange.m4 ├── ac_rwlock.m4 ├── ax_pthread.m4 ├── compiler_characteristics.m4 └── stl_hash.m4 ├── packages ├── deb.sh ├── deb │ ├── README │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libctemplate-dev.dirs │ ├── libctemplate-dev.install │ ├── libctemplate0.dirs │ ├── libctemplate0.install │ └── rules ├── rpm.sh └── rpm │ └── rpm.spec ├── 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 ├── ctemplate │ ├── find_ptr.h.in │ ├── per_expand_data.h.in │ ├── str_ref.h.in │ ├── template.h.in │ ├── template_annotator.h.in │ ├── template_cache.h.in │ ├── template_dictionary.h.in │ ├── template_dictionary_interface.h.in │ ├── template_emitter.h.in │ ├── template_enums.h.in │ ├── template_modifiers.h.in │ ├── template_namelist.h.in │ ├── template_pathops.h.in │ └── template_string.h.in ├── diff_tpl_auto_escape.cc ├── htmlparser │ ├── README │ ├── fsm_config.py │ ├── generate_fsm.py │ ├── htmlparser.cc │ ├── htmlparser.h │ ├── htmlparser_cpp.h │ ├── htmlparser_fsm.config │ ├── jsparser.cc │ ├── jsparser.h │ ├── jsparser_fsm.config │ ├── 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 │ ├── 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.anno_out │ ├── 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.anno_out │ ├── 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 └── vsprojects ├── compile_test └── compile_test.vcxproj ├── diff_tpl_auto_escape └── diff_tpl_auto_escape.vcxproj ├── generate_fsm_c_test └── generate_fsm_c_test.vcxproj ├── htmlparser_test └── htmlparser_test.vcxproj ├── libctemplate └── libctemplate.vcxproj ├── make_tpl_varname_h └── make_tpl_varname_h.vcxproj ├── statemachine_test └── statemachine_test.vcxproj ├── template_cache_test └── template_cache_test.vcxproj ├── template_dictionary_unittest └── template_dictionary_unittest.vcxproj ├── template_modifiers_unittest └── template_modifiers_unittest.vcxproj ├── template_regtest └── template_regtest.vcxproj ├── template_setglobals_unittest └── template_setglobals_unittest.vcxproj ├── template_test_util_test └── template_test_util_test.vcxproj ├── template_unittest └── template_unittest.vcxproj └── template_unittest_static └── template_unittest_static.vcxproj /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/README.md -------------------------------------------------------------------------------- /README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/README_windows.txt -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/contrib/README.contrib -------------------------------------------------------------------------------- /contrib/convert_to_95.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/contrib/convert_to_95.pl -------------------------------------------------------------------------------- /contrib/highlighting.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/contrib/highlighting.vim -------------------------------------------------------------------------------- /contrib/tpl-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/contrib/tpl-mode.el -------------------------------------------------------------------------------- /ctemplate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/ctemplate.sln -------------------------------------------------------------------------------- /doc/auto_escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/auto_escape.html -------------------------------------------------------------------------------- /doc/designstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/designstyle.css -------------------------------------------------------------------------------- /doc/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/example.html -------------------------------------------------------------------------------- /doc/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/guide.html -------------------------------------------------------------------------------- /doc/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/howto.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/reference.html -------------------------------------------------------------------------------- /doc/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/tips.html -------------------------------------------------------------------------------- /doc/xss_resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/doc/xss_resources.html -------------------------------------------------------------------------------- /m4/ac_have_attribute.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/ac_have_attribute.m4 -------------------------------------------------------------------------------- /m4/ac_interlocked_exchange.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/ac_interlocked_exchange.m4 -------------------------------------------------------------------------------- /m4/ac_rwlock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/ac_rwlock.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/compiler_characteristics.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/compiler_characteristics.m4 -------------------------------------------------------------------------------- /m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/m4/stl_hash.m4 -------------------------------------------------------------------------------- /packages/deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb.sh -------------------------------------------------------------------------------- /packages/deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/README -------------------------------------------------------------------------------- /packages/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/changelog -------------------------------------------------------------------------------- /packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /packages/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/control -------------------------------------------------------------------------------- /packages/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/copyright -------------------------------------------------------------------------------- /packages/deb/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/docs -------------------------------------------------------------------------------- /packages/deb/libctemplate-dev.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/libctemplate-dev.dirs -------------------------------------------------------------------------------- /packages/deb/libctemplate-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/libctemplate-dev.install -------------------------------------------------------------------------------- /packages/deb/libctemplate0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /packages/deb/libctemplate0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/libctemplate0.install -------------------------------------------------------------------------------- /packages/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/deb/rules -------------------------------------------------------------------------------- /packages/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/rpm.sh -------------------------------------------------------------------------------- /packages/rpm/rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/packages/rpm/rpm.spec -------------------------------------------------------------------------------- /src/base/arena-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/arena-inl.h -------------------------------------------------------------------------------- /src/base/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/arena.cc -------------------------------------------------------------------------------- /src/base/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/arena.h -------------------------------------------------------------------------------- /src/base/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/fileutil.h -------------------------------------------------------------------------------- /src/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/macros.h -------------------------------------------------------------------------------- /src/base/manual_constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/manual_constructor.h -------------------------------------------------------------------------------- /src/base/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/mutex.h -------------------------------------------------------------------------------- /src/base/small_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/small_map.h -------------------------------------------------------------------------------- /src/base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/thread_annotations.h -------------------------------------------------------------------------------- /src/base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/base/util.h -------------------------------------------------------------------------------- /src/ctemplate/find_ptr.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/find_ptr.h.in -------------------------------------------------------------------------------- /src/ctemplate/per_expand_data.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/per_expand_data.h.in -------------------------------------------------------------------------------- /src/ctemplate/str_ref.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/str_ref.h.in -------------------------------------------------------------------------------- /src/ctemplate/template.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_annotator.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_annotator.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_cache.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_cache.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_dictionary.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_dictionary.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_dictionary_interface.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_dictionary_interface.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_emitter.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_emitter.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_enums.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_enums.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_modifiers.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_modifiers.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_namelist.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_namelist.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_pathops.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_pathops.h.in -------------------------------------------------------------------------------- /src/ctemplate/template_string.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/ctemplate/template_string.h.in -------------------------------------------------------------------------------- /src/diff_tpl_auto_escape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/diff_tpl_auto_escape.cc -------------------------------------------------------------------------------- /src/htmlparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/README -------------------------------------------------------------------------------- /src/htmlparser/fsm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/fsm_config.py -------------------------------------------------------------------------------- /src/htmlparser/generate_fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/generate_fsm.py -------------------------------------------------------------------------------- /src/htmlparser/htmlparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/htmlparser.cc -------------------------------------------------------------------------------- /src/htmlparser/htmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/htmlparser.h -------------------------------------------------------------------------------- /src/htmlparser/htmlparser_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/htmlparser_cpp.h -------------------------------------------------------------------------------- /src/htmlparser/htmlparser_fsm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/htmlparser_fsm.config -------------------------------------------------------------------------------- /src/htmlparser/jsparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/jsparser.cc -------------------------------------------------------------------------------- /src/htmlparser/jsparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/jsparser.h -------------------------------------------------------------------------------- /src/htmlparser/jsparser_fsm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/jsparser_fsm.config -------------------------------------------------------------------------------- /src/htmlparser/statemachine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/statemachine.cc -------------------------------------------------------------------------------- /src/htmlparser/statemachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/htmlparser/statemachine.h -------------------------------------------------------------------------------- /src/indented_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/indented_writer.h -------------------------------------------------------------------------------- /src/make_tpl_varnames_h.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/make_tpl_varnames_h.cc -------------------------------------------------------------------------------- /src/per_expand_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/per_expand_data.cc -------------------------------------------------------------------------------- /src/solaris/libstdc++.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/solaris/libstdc++.la -------------------------------------------------------------------------------- /src/template-converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template-converter -------------------------------------------------------------------------------- /src/template.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template.cc -------------------------------------------------------------------------------- /src/template_annotator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_annotator.cc -------------------------------------------------------------------------------- /src/template_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_cache.cc -------------------------------------------------------------------------------- /src/template_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_dictionary.cc -------------------------------------------------------------------------------- /src/template_modifiers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_modifiers.cc -------------------------------------------------------------------------------- /src/template_modifiers_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_modifiers_internal.h -------------------------------------------------------------------------------- /src/template_namelist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_namelist.cc -------------------------------------------------------------------------------- /src/template_pathops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_pathops.cc -------------------------------------------------------------------------------- /src/template_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/template_string.cc -------------------------------------------------------------------------------- /src/tests/compile_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/compile_test.cc -------------------------------------------------------------------------------- /src/tests/config_for_unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/config_for_unittests.h -------------------------------------------------------------------------------- /src/tests/diff_tpl_auto_escape_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/diff_tpl_auto_escape_unittest.sh -------------------------------------------------------------------------------- /src/tests/generate_fsm_c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/generate_fsm_c_test.c -------------------------------------------------------------------------------- /src/tests/generate_fsm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/generate_fsm_test.sh -------------------------------------------------------------------------------- /src/tests/htmlparser_cpp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_cpp_test.cc -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/cdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/cdata.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/comments.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/context.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/google.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/javascript_attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/javascript_attribute.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/javascript_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/javascript_block.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/javascript_regexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/javascript_regexp.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/position.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/reset.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/sample_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/sample_fsm.c -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/sample_fsm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/sample_fsm.config -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/simple.html -------------------------------------------------------------------------------- /src/tests/htmlparser_testdata/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/htmlparser_testdata/tags.html -------------------------------------------------------------------------------- /src/tests/make_tpl_varnames_h_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/make_tpl_varnames_h_unittest.sh -------------------------------------------------------------------------------- /src/tests/statemachine_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/statemachine_test.c -------------------------------------------------------------------------------- /src/tests/statemachine_test_fsm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/statemachine_test_fsm.config -------------------------------------------------------------------------------- /src/tests/template_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_cache_test.cc -------------------------------------------------------------------------------- /src/tests/template_dictionary_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_dictionary_unittest.cc -------------------------------------------------------------------------------- /src/tests/template_modifiers_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_modifiers_unittest.cc -------------------------------------------------------------------------------- /src/tests/template_regtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_regtest.cc -------------------------------------------------------------------------------- /src/tests/template_setglobals_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_setglobals_unittest.cc -------------------------------------------------------------------------------- /src/tests/template_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_test_util.cc -------------------------------------------------------------------------------- /src/tests/template_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_test_util.h -------------------------------------------------------------------------------- /src/tests/template_test_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_test_util_test.cc -------------------------------------------------------------------------------- /src/tests/template_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest.cc -------------------------------------------------------------------------------- /src/tests/template_unittest_test_footer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_footer.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_footer_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_footer_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_footer_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_footer_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_html.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_html_dict01.anno_out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_html_dict01.anno_out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_html_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_html_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_html_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_html_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_invalid1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_invalid1.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_invalid2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_invalid2.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_markerdelim.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_markerdelim.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_markerdelim_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_markerdelim_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_markerdelim_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_markerdelim_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_modifiers.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_modifiers.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_modifiers_dict01.anno_out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_modifiers_dict01.anno_out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_modifiers_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_modifiers_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_nul.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_nul.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_nul_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_nul_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_css.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_css.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_css_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_css_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_css_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_css_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_html.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_html_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_html_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_html_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_html_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_js.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_js_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_js_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_selective_js_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_selective_js_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_simple.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_simple.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_simple_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_simple_dict01.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_simple_dict02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_simple_dict02.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_simple_dict03.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_simple_dict03.out -------------------------------------------------------------------------------- /src/tests/template_unittest_test_valid1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_valid1.in -------------------------------------------------------------------------------- /src/tests/template_unittest_test_valid1_dict01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/tests/template_unittest_test_valid1_dict01.out -------------------------------------------------------------------------------- /src/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/config.h -------------------------------------------------------------------------------- /src/windows/ctemplate/find_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/find_ptr.h -------------------------------------------------------------------------------- /src/windows/ctemplate/per_expand_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/per_expand_data.h -------------------------------------------------------------------------------- /src/windows/ctemplate/str_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/str_ref.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_annotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_annotator.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_cache.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_dictionary.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_dictionary_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_dictionary_interface.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_emitter.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_enums.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_modifiers.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_namelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_namelist.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_pathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_pathops.h -------------------------------------------------------------------------------- /src/windows/ctemplate/template_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/ctemplate/template_string.h -------------------------------------------------------------------------------- /src/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/port.cc -------------------------------------------------------------------------------- /src/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/port.h -------------------------------------------------------------------------------- /src/windows/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/src/windows/preprocess.sh -------------------------------------------------------------------------------- /vsprojects/compile_test/compile_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/compile_test/compile_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/diff_tpl_auto_escape/diff_tpl_auto_escape.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/diff_tpl_auto_escape/diff_tpl_auto_escape.vcxproj -------------------------------------------------------------------------------- /vsprojects/generate_fsm_c_test/generate_fsm_c_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/generate_fsm_c_test/generate_fsm_c_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/htmlparser_test/htmlparser_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/htmlparser_test/htmlparser_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/libctemplate/libctemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/libctemplate/libctemplate.vcxproj -------------------------------------------------------------------------------- /vsprojects/make_tpl_varname_h/make_tpl_varname_h.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/make_tpl_varname_h/make_tpl_varname_h.vcxproj -------------------------------------------------------------------------------- /vsprojects/statemachine_test/statemachine_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/statemachine_test/statemachine_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_cache_test/template_cache_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_cache_test/template_cache_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_dictionary_unittest/template_dictionary_unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_dictionary_unittest/template_dictionary_unittest.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_modifiers_unittest/template_modifiers_unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_modifiers_unittest/template_modifiers_unittest.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_regtest/template_regtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_regtest/template_regtest.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_setglobals_unittest/template_setglobals_unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_setglobals_unittest/template_setglobals_unittest.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_test_util_test/template_test_util_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_test_util_test/template_test_util_test.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_unittest/template_unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_unittest/template_unittest.vcxproj -------------------------------------------------------------------------------- /vsprojects/template_unittest_static/template_unittest_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/ctemplate/HEAD/vsprojects/template_unittest_static/template_unittest_static.vcxproj --------------------------------------------------------------------------------