html-template-pro 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/.autotest +9 -0
  2. data/ARTISTIC +131 -0
  3. data/History.txt +4 -0
  4. data/LGPL +504 -0
  5. data/Manifest.txt +221 -0
  6. data/README.rdoc +52 -0
  7. data/Rakefile +18 -0
  8. data/benchmark.rb +136 -0
  9. data/config/website.yml +2 -0
  10. data/ext/html/template/internal/Pro.xs +679 -0
  11. data/ext/html/template/internal/builtin_findfile.inc +361 -0
  12. data/ext/html/template/internal/calc.h +26 -0
  13. data/ext/html/template/internal/calc.inc +120 -0
  14. data/ext/html/template/internal/callback_stubs.inc +63 -0
  15. data/ext/html/template/internal/expr.c +2267 -0
  16. data/ext/html/template/internal/expr.y +476 -0
  17. data/ext/html/template/internal/expr_iface.c +94 -0
  18. data/ext/html/template/internal/exprpstr.h +36 -0
  19. data/ext/html/template/internal/exprpstr.inc +144 -0
  20. data/ext/html/template/internal/exprtool.h +99 -0
  21. data/ext/html/template/internal/exprtool.inc +289 -0
  22. data/ext/html/template/internal/exprtype.h +62 -0
  23. data/ext/html/template/internal/exprval.h +30 -0
  24. data/ext/html/template/internal/extconf.rb +6 -0
  25. data/ext/html/template/internal/internal.c +449 -0
  26. data/ext/html/template/internal/loadfile.h +11 -0
  27. data/ext/html/template/internal/loadfile.inc +171 -0
  28. data/ext/html/template/internal/pabidecl.h +54 -0
  29. data/ext/html/template/internal/pabstract.h +426 -0
  30. data/ext/html/template/internal/parse_expr.h +15 -0
  31. data/ext/html/template/internal/pbuffer.c +76 -0
  32. data/ext/html/template/internal/pbuffer.h +31 -0
  33. data/ext/html/template/internal/pmiscdef.h +54 -0
  34. data/ext/html/template/internal/pparam.h +101 -0
  35. data/ext/html/template/internal/ppport.h +1098 -0
  36. data/ext/html/template/internal/procore.c +1189 -0
  37. data/ext/html/template/internal/procore.h +18 -0
  38. data/ext/html/template/internal/proparam.c +443 -0
  39. data/ext/html/template/internal/proparam.h +571 -0
  40. data/ext/html/template/internal/proscope.h +32 -0
  41. data/ext/html/template/internal/proscope.inc +107 -0
  42. data/ext/html/template/internal/prostate.h +49 -0
  43. data/ext/html/template/internal/prostate.inc +24 -0
  44. data/ext/html/template/internal/provalue.h +14 -0
  45. data/ext/html/template/internal/pstring.h +60 -0
  46. data/ext/html/template/internal/pstrutils.h +25 -0
  47. data/ext/html/template/internal/pstrutils.inc +150 -0
  48. data/ext/html/template/internal/tagstack.h +30 -0
  49. data/ext/html/template/internal/tagstack.inc +65 -0
  50. data/ext/html/template/internal/tmpllog.c +62 -0
  51. data/ext/html/template/internal/tmpllog.h +27 -0
  52. data/ext/html/template/internal/tmplpro.h +218 -0
  53. data/ext/html/template/internal/tmplpro_version.c +35 -0
  54. data/lib/html/template/pro.rb +225 -0
  55. data/script/console +10 -0
  56. data/script/destroy +14 -0
  57. data/script/generate +14 -0
  58. data/script/txt2html +71 -0
  59. data/tasks/extconf.rake +13 -0
  60. data/tasks/extconf/tmplpro.rake +43 -0
  61. data/templates-Pro/a.incl +1 -0
  62. data/templates-Pro/empty.incl +0 -0
  63. data/templates-Pro/include/1/a.incl +1 -0
  64. data/templates-Pro/include/2.out +3 -0
  65. data/templates-Pro/include/2.tmpl +1 -0
  66. data/templates-Pro/include/2/a.incl +1 -0
  67. data/templates-Pro/include/3.tmpl +1 -0
  68. data/templates-Pro/include/4.tmpl +1 -0
  69. data/templates-Pro/include/a.incl +1 -0
  70. data/templates-Pro/test_broken.tmpl +25 -0
  71. data/templates-Pro/test_broken1.out +1 -0
  72. data/templates-Pro/test_broken1.tmpl +1 -0
  73. data/templates-Pro/test_esc1.out +4 -0
  74. data/templates-Pro/test_esc1.tmpl +4 -0
  75. data/templates-Pro/test_esc2.out +5 -0
  76. data/templates-Pro/test_esc2.tmpl +6 -0
  77. data/templates-Pro/test_esc3.out +4 -0
  78. data/templates-Pro/test_esc3.tmpl +4 -0
  79. data/templates-Pro/test_esc4.out +3 -0
  80. data/templates-Pro/test_esc4.tmpl +4 -0
  81. data/templates-Pro/test_expr1.out +26 -0
  82. data/templates-Pro/test_expr1.tmpl +26 -0
  83. data/templates-Pro/test_expr2.out +34 -0
  84. data/templates-Pro/test_expr2.tmpl +34 -0
  85. data/templates-Pro/test_expr3.out +6 -0
  86. data/templates-Pro/test_expr3.tmpl +6 -0
  87. data/templates-Pro/test_expr4.out +4 -0
  88. data/templates-Pro/test_expr4.tmpl +4 -0
  89. data/templates-Pro/test_expr5.out +18 -0
  90. data/templates-Pro/test_expr5.tmpl +18 -0
  91. data/templates-Pro/test_expr6.out +18 -0
  92. data/templates-Pro/test_expr6.tmpl +18 -0
  93. data/templates-Pro/test_expr7.out +44 -0
  94. data/templates-Pro/test_expr7.tmpl +20 -0
  95. data/templates-Pro/test_expr8.out +15 -0
  96. data/templates-Pro/test_expr8.tmpl +15 -0
  97. data/templates-Pro/test_if1.out +25 -0
  98. data/templates-Pro/test_if1.tmpl +28 -0
  99. data/templates-Pro/test_if2.out +17 -0
  100. data/templates-Pro/test_if2.tmpl +25 -0
  101. data/templates-Pro/test_if3.out +12 -0
  102. data/templates-Pro/test_if3.tmpl +14 -0
  103. data/templates-Pro/test_if4.out +15 -0
  104. data/templates-Pro/test_if4.tmpl +31 -0
  105. data/templates-Pro/test_if5.out +16 -0
  106. data/templates-Pro/test_if5.tmpl +16 -0
  107. data/templates-Pro/test_if6.out +15 -0
  108. data/templates-Pro/test_if6.tmpl +31 -0
  109. data/templates-Pro/test_if7.out +14 -0
  110. data/templates-Pro/test_if7.tmpl +18 -0
  111. data/templates-Pro/test_include1.out +23 -0
  112. data/templates-Pro/test_include1.tmpl +7 -0
  113. data/templates-Pro/test_include2.out +120 -0
  114. data/templates-Pro/test_include2.tmpl +10 -0
  115. data/templates-Pro/test_include3.out +8 -0
  116. data/templates-Pro/test_include3.tmpl +8 -0
  117. data/templates-Pro/test_include4.out +7 -0
  118. data/templates-Pro/test_include4.tmpl +6 -0
  119. data/templates-Pro/test_include5.out +7 -0
  120. data/templates-Pro/test_include5.tmpl +6 -0
  121. data/templates-Pro/test_loop1.erb +17 -0
  122. data/templates-Pro/test_loop1.out +12 -0
  123. data/templates-Pro/test_loop1.tmpl +16 -0
  124. data/templates-Pro/test_loop2.erb +19 -0
  125. data/templates-Pro/test_loop2.out +40 -0
  126. data/templates-Pro/test_loop2.tmpl +19 -0
  127. data/templates-Pro/test_loop3.out +38 -0
  128. data/templates-Pro/test_loop3.tmpl +40 -0
  129. data/templates-Pro/test_loop4.out +44 -0
  130. data/templates-Pro/test_loop4.tmpl +20 -0
  131. data/templates-Pro/test_loop5.out +9 -0
  132. data/templates-Pro/test_loop5.tmpl +11 -0
  133. data/templates-Pro/test_loop6.out +33 -0
  134. data/templates-Pro/test_loop6.tmpl +15 -0
  135. data/templates-Pro/test_malloc.tmpl +1 -0
  136. data/templates-Pro/test_userfunc1.out +14 -0
  137. data/templates-Pro/test_userfunc1.tmpl +14 -0
  138. data/templates-Pro/test_userfunc2.out +35 -0
  139. data/templates-Pro/test_userfunc2.tmpl +5 -0
  140. data/templates-Pro/test_userfunc3.out +5 -0
  141. data/templates-Pro/test_userfunc3.tmpl +5 -0
  142. data/templates-Pro/test_userfunc4.out +10 -0
  143. data/templates-Pro/test_userfunc4.tmpl +10 -0
  144. data/templates-Pro/test_userfunc5.out +4 -0
  145. data/templates-Pro/test_userfunc5.tmpl +4 -0
  146. data/templates-Pro/test_userfunc6.out +4 -0
  147. data/templates-Pro/test_userfunc6.tmpl +4 -0
  148. data/templates-Pro/test_var1.erb +23 -0
  149. data/templates-Pro/test_var1.out +20 -0
  150. data/templates-Pro/test_var1.tmpl +23 -0
  151. data/templates-Pro/test_var2.erb +7 -0
  152. data/templates-Pro/test_var2.out +6 -0
  153. data/templates-Pro/test_var2.tmpl +7 -0
  154. data/templates-Pro/test_var3.out +14 -0
  155. data/templates-Pro/test_var3.tmpl +16 -0
  156. data/templates/case_loop.tmpl +3 -0
  157. data/templates/context.tmpl +3 -0
  158. data/templates/counter.tmpl +2 -0
  159. data/templates/default.tmpl +1 -0
  160. data/templates/default_escape.tmpl +4 -0
  161. data/templates/double_loop.tmpl +7 -0
  162. data/templates/escape.tmpl +5 -0
  163. data/templates/global-loops.tmpl +9 -0
  164. data/templates/globals.tmpl +11 -0
  165. data/templates/if.tmpl +7 -0
  166. data/templates/ifelse.tmpl +6 -0
  167. data/templates/include.tmpl +14 -0
  168. data/templates/include_path/a.tmpl +2 -0
  169. data/templates/include_path/b.tmpl +1 -0
  170. data/templates/include_path/inner.tmpl +1 -0
  171. data/templates/include_path/one.tmpl +2 -0
  172. data/templates/include_path2/inner.tmpl +1 -0
  173. data/templates/included.tmpl +4 -0
  174. data/templates/included2.tmpl +3 -0
  175. data/templates/js.tmpl +1 -0
  176. data/templates/long_loops.tmpl +307 -0
  177. data/templates/loop-context.tmpl +2 -0
  178. data/templates/loop-if.tmpl +9 -0
  179. data/templates/medium.tmpl +217 -0
  180. data/templates/multiline_tags.tmpl +7 -0
  181. data/templates/newline_test1.tmpl +1 -0
  182. data/templates/newline_test2.tmpl +1 -0
  183. data/templates/other-loop.tmpl +7 -0
  184. data/templates/outer.tmpl +3 -0
  185. data/templates/query-test.tmpl +21 -0
  186. data/templates/query-test2.tmpl +12 -0
  187. data/templates/recursive.tmpl +2 -0
  188. data/templates/searchpath/included.tmpl +4 -0
  189. data/templates/searchpath/three.tmpl +1 -0
  190. data/templates/searchpath/two.tmpl +2 -0
  191. data/templates/simple-loop-nonames.tmpl +13 -0
  192. data/templates/simple-loop.tmpl +12 -0
  193. data/templates/simple.tmpl +9 -0
  194. data/templates/unless.tmpl +5 -0
  195. data/templates/urlescape.tmpl +3 -0
  196. data/templates/vanguard1.tmpl +2 -0
  197. data/templates/vanguard2.tmpl +3 -0
  198. data/test/templates/complex.tmpl +24 -0
  199. data/test/templates/foo.tmpl +6 -0
  200. data/test/templates/func.tmpl +2 -0
  201. data/test/templates/loop.tmpl +14 -0
  202. data/test/templates/negative.tmpl +1 -0
  203. data/test/templates/numerics.tmpl +6 -0
  204. data/test/templates/register.tmpl +2 -0
  205. data/test/test_basic.rb +23 -0
  206. data/test/test_coderefs.rb +16 -0
  207. data/test/test_complex.rb +106 -0
  208. data/test/test_helper.rb +3 -0
  209. data/test/test_html_template.rb +583 -0
  210. data/test/test_html_template_internal_extn.rb +10 -0
  211. data/test/test_html_template_pro.rb +177 -0
  212. data/test/test_path_like_variable_scope.rb +59 -0
  213. data/test/test_random.rb +21 -0
  214. data/test/test_realloc.rb +16 -0
  215. data/test/test_register.rb +25 -0
  216. data/test/test_tmplpro.rb +9 -0
  217. data/test/tests.rb +9 -0
  218. data/website/index.txt +57 -0
  219. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  220. data/website/stylesheets/screen.css +159 -0
  221. data/website/template.html.erb +50 -0
  222. metadata +303 -0
@@ -0,0 +1,159 @@
1
+ body {
2
+ background-color: #8DBD82;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #5E5AFF;
27
+ background-color: #A1DDB1;
28
+ font-weight: normal;
29
+ text-decoration: underline;
30
+ }
31
+ blockquote {
32
+ font-size: 90%;
33
+ font-style: italic;
34
+ border-left: 1px solid #111;
35
+ padding-left: 1em;
36
+ }
37
+ .caps {
38
+ font-size: 80%;
39
+ }
40
+
41
+ #main {
42
+ width: 55em;
43
+ padding: 0;
44
+ margin: 0 auto;
45
+ }
46
+ .coda {
47
+ text-align: right;
48
+ color: #77f;
49
+ font-size: smaller;
50
+ }
51
+
52
+ table {
53
+ font-size: 90%;
54
+ line-height: 1.4em;
55
+ color: #ff8;
56
+ background-color: #111;
57
+ padding: 2px 10px 2px 10px;
58
+ border-style: dashed;
59
+ }
60
+
61
+ th {
62
+ color: #fff;
63
+ }
64
+
65
+ td {
66
+ padding: 2px 10px 2px 10px;
67
+ }
68
+
69
+ .success {
70
+ color: #0CC52B;
71
+ }
72
+
73
+ .failed {
74
+ color: #E90A1B;
75
+ }
76
+
77
+ .unknown {
78
+ color: #995000;
79
+ }
80
+ pre, code {
81
+ font-family: monospace;
82
+ font-size: 90%;
83
+ line-height: 1.4em;
84
+ color: #ff8;
85
+ background-color: #111;
86
+ width: 40em;
87
+ padding: 2px 10px 2px 10px;
88
+ }
89
+ .comment { color: #aaa; font-style: italic; }
90
+ .keyword { color: #eff; font-weight: bold; }
91
+ .punct { color: #eee; font-weight: bold; }
92
+ .symbol { color: #0bb; }
93
+ .string { color: #6b4; }
94
+ .ident { color: #ff8; }
95
+ .constant { color: #66f; }
96
+ .regex { color: #ec6; }
97
+ .number { color: #F99; }
98
+ .expr { color: #227; }
99
+
100
+ .sidebar {
101
+ float: right;
102
+ }
103
+
104
+ #version {
105
+ width: 217px;
106
+ text-align: right;
107
+ font-family: sans-serif;
108
+ font-weight: normal;
109
+ color: #141331;
110
+ padding: 15px 20px 10px 20px;
111
+ margin: 0 auto;
112
+ margin-top: 15px;
113
+ background-color: #9A5535;
114
+ border: 3px solid #7E393E;
115
+ }
116
+
117
+ #version .numbers {
118
+ display: block;
119
+ font-size: 4em;
120
+ line-height: 0.8em;
121
+ letter-spacing: -0.1ex;
122
+ margin-bottom: 15px;
123
+ }
124
+
125
+ #version p {
126
+ text-decoration: none;
127
+ color: #F1F4FF;
128
+ background-color: #9A5535;
129
+ margin: 0;
130
+ padding: 0;
131
+ }
132
+
133
+ #version a {
134
+ text-decoration: none;
135
+ color: #F1F4FF;
136
+ background-color: #9A5535;
137
+ }
138
+
139
+ .clickable {
140
+ cursor: pointer;
141
+ cursor: hand;
142
+ }
143
+
144
+ #twitter_search {
145
+ margin: 40px 0 10px 15px;
146
+ color: #F1F4FF;
147
+ background-color: #9A5535;
148
+ border: 3px solid #7E393E;
149
+ }
150
+
151
+ #twitter_search h3 {
152
+ color: #F1F4FF;
153
+ margin-bottom: 0px;
154
+ }
155
+
156
+ #twitter_search center b {
157
+ display: none;
158
+ }
159
+
@@ -0,0 +1,50 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+
33
+ <h1><%= title %></h1>
34
+ <div class="sidebar">
35
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
36
+ <p>Get Version</p>
37
+ <a href="<%= download %>" class="numbers"><%= version %></a>
38
+ </div>
39
+ </div>
40
+ <%= body %>
41
+ <p class="coda">
42
+ <a href="tom.lpsd@gmail.com">Tom Tsuruhara</a>, <%= modified.pretty %><br>
43
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
44
+ </p>
45
+ </div>
46
+
47
+ <!-- insert site tracking codes here, like Google Urchin -->
48
+
49
+ </body>
50
+ </html>
metadata ADDED
@@ -0,0 +1,303 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: html-template-pro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tsuruhara Tom
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-10-01 00:00:00 +09:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.3.3
24
+ version:
25
+ description: |-
26
+ A Ruby port of HTML::Template::Pro (template engine originally written
27
+ in Perl and XS).
28
+ email:
29
+ - tom.lpsd@gmail.com
30
+ executables: []
31
+
32
+ extensions:
33
+ - ext/html/template/internal/extconf.rb
34
+ extra_rdoc_files:
35
+ - History.txt
36
+ - Manifest.txt
37
+ - website/index.txt
38
+ - README.rdoc
39
+ files:
40
+ - .autotest
41
+ - ARTISTIC
42
+ - History.txt
43
+ - LGPL
44
+ - Manifest.txt
45
+ - README.rdoc
46
+ - Rakefile
47
+ - benchmark.rb
48
+ - config/website.yml
49
+ - ext/html/template/internal/Pro.xs
50
+ - ext/html/template/internal/builtin_findfile.inc
51
+ - ext/html/template/internal/calc.h
52
+ - ext/html/template/internal/calc.inc
53
+ - ext/html/template/internal/callback_stubs.inc
54
+ - ext/html/template/internal/expr.c
55
+ - ext/html/template/internal/expr.y
56
+ - ext/html/template/internal/expr_iface.c
57
+ - ext/html/template/internal/exprpstr.h
58
+ - ext/html/template/internal/exprpstr.inc
59
+ - ext/html/template/internal/exprtool.h
60
+ - ext/html/template/internal/exprtool.inc
61
+ - ext/html/template/internal/exprtype.h
62
+ - ext/html/template/internal/exprval.h
63
+ - ext/html/template/internal/extconf.rb
64
+ - ext/html/template/internal/internal.c
65
+ - ext/html/template/internal/loadfile.h
66
+ - ext/html/template/internal/loadfile.inc
67
+ - ext/html/template/internal/pabidecl.h
68
+ - ext/html/template/internal/pabstract.h
69
+ - ext/html/template/internal/parse_expr.h
70
+ - ext/html/template/internal/pbuffer.c
71
+ - ext/html/template/internal/pbuffer.h
72
+ - ext/html/template/internal/pmiscdef.h
73
+ - ext/html/template/internal/pparam.h
74
+ - ext/html/template/internal/ppport.h
75
+ - ext/html/template/internal/procore.c
76
+ - ext/html/template/internal/procore.h
77
+ - ext/html/template/internal/proparam.c
78
+ - ext/html/template/internal/proparam.h
79
+ - ext/html/template/internal/proscope.h
80
+ - ext/html/template/internal/proscope.inc
81
+ - ext/html/template/internal/prostate.h
82
+ - ext/html/template/internal/prostate.inc
83
+ - ext/html/template/internal/provalue.h
84
+ - ext/html/template/internal/pstring.h
85
+ - ext/html/template/internal/pstrutils.h
86
+ - ext/html/template/internal/pstrutils.inc
87
+ - ext/html/template/internal/tagstack.h
88
+ - ext/html/template/internal/tagstack.inc
89
+ - ext/html/template/internal/tmpllog.c
90
+ - ext/html/template/internal/tmpllog.h
91
+ - ext/html/template/internal/tmplpro.h
92
+ - ext/html/template/internal/tmplpro_version.c
93
+ - lib/html/template/pro.rb
94
+ - script/console
95
+ - script/destroy
96
+ - script/generate
97
+ - script/txt2html
98
+ - tasks/extconf.rake
99
+ - tasks/extconf/tmplpro.rake
100
+ - templates-Pro/a.incl
101
+ - templates-Pro/empty.incl
102
+ - templates-Pro/include/1/a.incl
103
+ - templates-Pro/include/2.out
104
+ - templates-Pro/include/2.tmpl
105
+ - templates-Pro/include/2/a.incl
106
+ - templates-Pro/include/3.tmpl
107
+ - templates-Pro/include/4.tmpl
108
+ - templates-Pro/include/a.incl
109
+ - templates-Pro/test_broken.tmpl
110
+ - templates-Pro/test_broken1.out
111
+ - templates-Pro/test_broken1.tmpl
112
+ - templates-Pro/test_esc1.out
113
+ - templates-Pro/test_esc1.tmpl
114
+ - templates-Pro/test_esc2.out
115
+ - templates-Pro/test_esc2.tmpl
116
+ - templates-Pro/test_esc3.out
117
+ - templates-Pro/test_esc3.tmpl
118
+ - templates-Pro/test_esc4.out
119
+ - templates-Pro/test_esc4.tmpl
120
+ - templates-Pro/test_expr1.out
121
+ - templates-Pro/test_expr1.tmpl
122
+ - templates-Pro/test_expr2.out
123
+ - templates-Pro/test_expr2.tmpl
124
+ - templates-Pro/test_expr3.out
125
+ - templates-Pro/test_expr3.tmpl
126
+ - templates-Pro/test_expr4.out
127
+ - templates-Pro/test_expr4.tmpl
128
+ - templates-Pro/test_expr5.out
129
+ - templates-Pro/test_expr5.tmpl
130
+ - templates-Pro/test_expr6.out
131
+ - templates-Pro/test_expr6.tmpl
132
+ - templates-Pro/test_expr7.out
133
+ - templates-Pro/test_expr7.tmpl
134
+ - templates-Pro/test_expr8.out
135
+ - templates-Pro/test_expr8.tmpl
136
+ - templates-Pro/test_if1.out
137
+ - templates-Pro/test_if1.tmpl
138
+ - templates-Pro/test_if2.out
139
+ - templates-Pro/test_if2.tmpl
140
+ - templates-Pro/test_if3.out
141
+ - templates-Pro/test_if3.tmpl
142
+ - templates-Pro/test_if4.out
143
+ - templates-Pro/test_if4.tmpl
144
+ - templates-Pro/test_if5.out
145
+ - templates-Pro/test_if5.tmpl
146
+ - templates-Pro/test_if6.out
147
+ - templates-Pro/test_if6.tmpl
148
+ - templates-Pro/test_if7.out
149
+ - templates-Pro/test_if7.tmpl
150
+ - templates-Pro/test_include1.out
151
+ - templates-Pro/test_include1.tmpl
152
+ - templates-Pro/test_include2.out
153
+ - templates-Pro/test_include2.tmpl
154
+ - templates-Pro/test_include3.out
155
+ - templates-Pro/test_include3.tmpl
156
+ - templates-Pro/test_include4.out
157
+ - templates-Pro/test_include4.tmpl
158
+ - templates-Pro/test_include5.out
159
+ - templates-Pro/test_include5.tmpl
160
+ - templates-Pro/test_loop1.erb
161
+ - templates-Pro/test_loop1.out
162
+ - templates-Pro/test_loop1.tmpl
163
+ - templates-Pro/test_loop2.erb
164
+ - templates-Pro/test_loop2.out
165
+ - templates-Pro/test_loop2.tmpl
166
+ - templates-Pro/test_loop3.out
167
+ - templates-Pro/test_loop3.tmpl
168
+ - templates-Pro/test_loop4.out
169
+ - templates-Pro/test_loop4.tmpl
170
+ - templates-Pro/test_loop5.out
171
+ - templates-Pro/test_loop5.tmpl
172
+ - templates-Pro/test_loop6.out
173
+ - templates-Pro/test_loop6.tmpl
174
+ - templates-Pro/test_malloc.tmpl
175
+ - templates-Pro/test_userfunc1.out
176
+ - templates-Pro/test_userfunc1.tmpl
177
+ - templates-Pro/test_userfunc2.out
178
+ - templates-Pro/test_userfunc2.tmpl
179
+ - templates-Pro/test_userfunc3.out
180
+ - templates-Pro/test_userfunc3.tmpl
181
+ - templates-Pro/test_userfunc4.out
182
+ - templates-Pro/test_userfunc4.tmpl
183
+ - templates-Pro/test_userfunc5.out
184
+ - templates-Pro/test_userfunc5.tmpl
185
+ - templates-Pro/test_userfunc6.out
186
+ - templates-Pro/test_userfunc6.tmpl
187
+ - templates-Pro/test_var1.erb
188
+ - templates-Pro/test_var1.out
189
+ - templates-Pro/test_var1.tmpl
190
+ - templates-Pro/test_var2.erb
191
+ - templates-Pro/test_var2.out
192
+ - templates-Pro/test_var2.tmpl
193
+ - templates-Pro/test_var3.out
194
+ - templates-Pro/test_var3.tmpl
195
+ - templates/case_loop.tmpl
196
+ - templates/context.tmpl
197
+ - templates/counter.tmpl
198
+ - templates/default.tmpl
199
+ - templates/default_escape.tmpl
200
+ - templates/double_loop.tmpl
201
+ - templates/escape.tmpl
202
+ - templates/global-loops.tmpl
203
+ - templates/globals.tmpl
204
+ - templates/if.tmpl
205
+ - templates/ifelse.tmpl
206
+ - templates/include.tmpl
207
+ - templates/include_path/a.tmpl
208
+ - templates/include_path/b.tmpl
209
+ - templates/include_path/inner.tmpl
210
+ - templates/include_path/one.tmpl
211
+ - templates/include_path2/inner.tmpl
212
+ - templates/included.tmpl
213
+ - templates/included2.tmpl
214
+ - templates/js.tmpl
215
+ - templates/long_loops.tmpl
216
+ - templates/loop-context.tmpl
217
+ - templates/loop-if.tmpl
218
+ - templates/medium.tmpl
219
+ - templates/multiline_tags.tmpl
220
+ - templates/newline_test1.tmpl
221
+ - templates/newline_test2.tmpl
222
+ - templates/other-loop.tmpl
223
+ - templates/outer.tmpl
224
+ - templates/query-test.tmpl
225
+ - templates/query-test2.tmpl
226
+ - templates/recursive.tmpl
227
+ - templates/searchpath/included.tmpl
228
+ - templates/searchpath/three.tmpl
229
+ - templates/searchpath/two.tmpl
230
+ - templates/simple-loop-nonames.tmpl
231
+ - templates/simple-loop.tmpl
232
+ - templates/simple.tmpl
233
+ - templates/unless.tmpl
234
+ - templates/urlescape.tmpl
235
+ - templates/vanguard1.tmpl
236
+ - templates/vanguard2.tmpl
237
+ - test/templates/complex.tmpl
238
+ - test/templates/foo.tmpl
239
+ - test/templates/func.tmpl
240
+ - test/templates/loop.tmpl
241
+ - test/templates/negative.tmpl
242
+ - test/templates/numerics.tmpl
243
+ - test/templates/register.tmpl
244
+ - test/test_basic.rb
245
+ - test/test_coderefs.rb
246
+ - test/test_complex.rb
247
+ - test/test_helper.rb
248
+ - test/test_html_template.rb
249
+ - test/test_html_template_internal_extn.rb
250
+ - test/test_html_template_pro.rb
251
+ - test/test_path_like_variable_scope.rb
252
+ - test/test_random.rb
253
+ - test/test_realloc.rb
254
+ - test/test_register.rb
255
+ - test/test_tmplpro.rb
256
+ - test/tests.rb
257
+ - website/index.txt
258
+ - website/javascripts/rounded_corners_lite.inc.js
259
+ - website/stylesheets/screen.css
260
+ - website/template.html.erb
261
+ has_rdoc: true
262
+ homepage: http://github.com/tom-lpsd/ruby-html-template-pro
263
+ licenses: []
264
+
265
+ post_install_message:
266
+ rdoc_options:
267
+ - --main
268
+ - README.rdoc
269
+ require_paths:
270
+ - lib
271
+ - ext/html
272
+ required_ruby_version: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - ">="
275
+ - !ruby/object:Gem::Version
276
+ version: "0"
277
+ version:
278
+ required_rubygems_version: !ruby/object:Gem::Requirement
279
+ requirements:
280
+ - - ">="
281
+ - !ruby/object:Gem::Version
282
+ version: "0"
283
+ version:
284
+ requirements: []
285
+
286
+ rubyforge_project: tmplpro
287
+ rubygems_version: 1.3.5
288
+ signing_key:
289
+ specification_version: 3
290
+ summary: A Ruby port of HTML::Template::Pro
291
+ test_files:
292
+ - test/test_basic.rb
293
+ - test/test_coderefs.rb
294
+ - test/test_complex.rb
295
+ - test/test_helper.rb
296
+ - test/test_html_template.rb
297
+ - test/test_html_template_internal_extn.rb
298
+ - test/test_html_template_pro.rb
299
+ - test/test_path_like_variable_scope.rb
300
+ - test/test_random.rb
301
+ - test/test_realloc.rb
302
+ - test/test_register.rb
303
+ - test/test_tmplpro.rb