-rw-r--r-- | htdocs/exceptions/development/.htaccess | 3 | ||||
-rw-r--r-- | htdocs/exceptions/development/.scrc | 2 | ||||
-rw-r--r-- | htdocs/exceptions/development/compile.chtml | 12 | ||||
-rw-r--r-- | htdocs/exceptions/development/compile.html | 248 | ||||
-rw-r--r-- | htdocs/exceptions/development/erroneous.h | 1 | ||||
-rw-r--r-- | htdocs/exceptions/development/preprocess.chtml | 14 | ||||
-rw-r--r-- | htdocs/exceptions/development/runtime.chtml | 16 |
7 files changed, 296 insertions, 0 deletions
diff --git a/htdocs/exceptions/development/.htaccess b/htdocs/exceptions/development/.htaccess new file mode 100644 index 0000000..01cb5ec --- a/dev/null +++ b/htdocs/exceptions/development/.htaccess | |||
@@ -0,0 +1,3 @@ | |||
1 | <Files compile.chtml> | ||
2 | deny from all | ||
3 | </Files> | ||
diff --git a/htdocs/exceptions/development/.scrc b/htdocs/exceptions/development/.scrc new file mode 100644 index 0000000..da24ef7 --- a/dev/null +++ b/htdocs/exceptions/development/.scrc | |||
@@ -0,0 +1,2 @@ | |||
1 | ExceptionHandler /handlers/exception_dev | ||
2 | AutoBuildFiles -* | ||
diff --git a/htdocs/exceptions/development/compile.chtml b/htdocs/exceptions/development/compile.chtml new file mode 100644 index 0000000..3611ca9 --- a/dev/null +++ b/htdocs/exceptions/development/compile.chtml | |||
@@ -0,0 +1,12 @@ | |||
1 | <html> | ||
2 | <head> | ||
3 | <title>I'm gonna make a number of mistakes!</title> | ||
4 | </head> | ||
5 | <body> | ||
6 | % ind a = 2; | ||
7 | % #include "erroneous.h" | ||
8 | % unsigned int a = -1; | ||
9 | % int j = k; | ||
10 | </body> | ||
11 | </html> | ||
12 | % /* vim:set ft=sitecing: */ | ||
diff --git a/htdocs/exceptions/development/compile.html b/htdocs/exceptions/development/compile.html new file mode 100644 index 0000000..c3384a2 --- a/dev/null +++ b/htdocs/exceptions/development/compile.html | |||
@@ -0,0 +1,248 @@ | |||
1 | |||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
3 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> | ||
4 | <head> | ||
5 | <title>failed to compile component</title> | ||
6 | <style type="text/css"> | ||
7 | <!-- | ||
8 | body { | ||
9 | font-family: sans-serif; | ||
10 | font-size: 11pt; | ||
11 | } | ||
12 | |||
13 | h1 { | ||
14 | font-family: serif; | ||
15 | font-size: 130%; | ||
16 | font-weight: bold; | ||
17 | text-align: center; | ||
18 | } | ||
19 | p { | ||
20 | text-indent: 2em; | ||
21 | text-align: justify; | ||
22 | } | ||
23 | |||
24 | dl.exception-props { | ||
25 | margin: 1ex 1em; | ||
26 | padding: 0.5ex; | ||
27 | border: solid 1px gray; | ||
28 | background-color: #e0e0e0; | ||
29 | } | ||
30 | dl.exception-props dt { | ||
31 | font-weight: bold; | ||
32 | color: blue; | ||
33 | } | ||
34 | dl.exception-props dd { | ||
35 | color: gray; | ||
36 | } | ||
37 | |||
38 | div.exception-codepoint-report { | ||
39 | border: solid 1px black; | ||
40 | margin: 0.5ex 1em 0.ex 3em; | ||
41 | } | ||
42 | div.exception-codepoint-report h3 { | ||
43 | display: block; | ||
44 | color: blue; | ||
45 | border-bottom: 3px double black; | ||
46 | padding: 0.3ex; margin: 0px; | ||
47 | background: #e0e0e0; | ||
48 | } | ||
49 | div.exception-codepoint-report ul { | ||
50 | padding: 0px; | ||
51 | margin: 0px; | ||
52 | background: #87fdff; | ||
53 | font-size: 70%; | ||
54 | } | ||
55 | div.exception-codepoint-report li { | ||
56 | font-family: monospace; | ||
57 | list-style-type: none; | ||
58 | white-space: pre; | ||
59 | overflow: hidden; | ||
60 | } | ||
61 | div.exception-codepoint-report li.focused { | ||
62 | color: red; | ||
63 | border-top: solid 1px red; border-bottom: solid 1px red; | ||
64 | } | ||
65 | div.exception-codepoint-report li .lineno { | ||
66 | padding-right: 0.5ex; | ||
67 | border-right: dotted black 1px; | ||
68 | } | ||
69 | div.exception-codepoint-report div.what { | ||
70 | border-top: double 3px black; | ||
71 | padding: 0.5ex 2em; | ||
72 | font-weight: bold; color: #4040c0; | ||
73 | overflow: auto; | ||
74 | } | ||
75 | div.backtrace div.exception-codepoint-report div.what { | ||
76 | color: gray; | ||
77 | } | ||
78 | |||
79 | div.exception-compile div.what { | ||
80 | font-weight: normal; | ||
81 | color: red; | ||
82 | } | ||
83 | |||
84 | div.powered { | ||
85 | margin: 2em 0px 0px 50%; | ||
86 | padding: 1ex 2ex; | ||
87 | text-align: right; | ||
88 | font-family: serif; | ||
89 | font-size: 140%; | ||
90 | font-weight: bold; | ||
91 | border-top: solid 2px black; | ||
92 | border-left: solid 1px gray; border-right: solid 1px gray; border-bottom: solid 1px gray; | ||
93 | background: #c0c0f0; | ||
94 | } | ||
95 | --> | ||
96 | </style> | ||
97 | </head> | ||
98 | <body> | ||
99 | |||
100 | <div class="exception-compile"> | ||
101 | <h1>error compiling component '<code>exceptions/development/compile.chtml</code>'</h1> | ||
102 | |||
103 | <div class="exception-codepoint-report"> | ||
104 | <h3>exceptions/development/compile.chtml</h3> | ||
105 | <ul> | ||
106 | <li class="unfocused"><span class="lineno"> 1</span> <span class="line"><html></span></li> | ||
107 | |||
108 | <li class="unfocused"><span class="lineno"> 2</span> <span class="line"> <head></span></li> | ||
109 | |||
110 | <li class="unfocused"><span class="lineno"> 3</span> <span class="line"> <title>I'm gonna make a number of mistakes!</title></span></li> | ||
111 | |||
112 | <li class="unfocused"><span class="lineno"> 4</span> <span class="line"> </head></span></li> | ||
113 | |||
114 | <li class="unfocused"><span class="lineno"> 5</span> <span class="line"> <body></span></li> | ||
115 | |||
116 | <li class="focused"><span class="lineno"> 6</span> <span class="line">% ind a = 2;</span></li> | ||
117 | |||
118 | <li class="unfocused"><span class="lineno"> 7</span> <span class="line">% #include "erroneous.h"</span></li> | ||
119 | |||
120 | <li class="unfocused"><span class="lineno"> 8</span> <span class="line">% unsigned int a = -1;</span></li> | ||
121 | |||
122 | <li class="unfocused"><span class="lineno"> 9</span> <span class="line">% int j = k;</span></li> | ||
123 | |||
124 | <li class="unfocused"><span class="lineno"> 10</span> <span class="line"> </body></span></li> | ||
125 | |||
126 | <li class="unfocused"><span class="lineno"> 11</span> <span class="line"></html></span></li> | ||
127 | </ul> | ||
128 | <div class="what"> | ||
129 | exceptions/development/compile.chtml: In member function `virtual void _SCC_exceptions_development_compile_chtml::main(int, char*)':<br/> | ||
130 | exceptions/development/compile.chtml:6: error: `ind' undeclared (first use this function)<br/> | ||
131 | exceptions/development/compile.chtml:6: error: (Each undeclared identifier is reported only once for each function it appears in.)<br/> | ||
132 | exceptions/development/compile.chtml:6: error: expected `;' before "a" | ||
133 | </div> | ||
134 | </div> | ||
135 | |||
136 | <div class="exception-codepoint-report"> | ||
137 | <h3>exceptions/development/compile.chtml</h3> | ||
138 | <ul> | ||
139 | <li class="unfocused"><span class="lineno"> 2</span> <span class="line"> <head></span></li> | ||
140 | |||
141 | <li class="unfocused"><span class="lineno"> 3</span> <span class="line"> <title>I'm gonna make a number of mistakes!</title></span></li> | ||
142 | |||
143 | <li class="unfocused"><span class="lineno"> 4</span> <span class="line"> </head></span></li> | ||
144 | |||
145 | <li class="unfocused"><span class="lineno"> 5</span> <span class="line"> <body></span></li> | ||
146 | |||
147 | <li class="unfocused"><span class="lineno"> 6</span> <span class="line">% ind a = 2;</span></li> | ||
148 | |||
149 | <li class="focused"><span class="lineno"> 7</span> <span class="line">% #include "erroneous.h"</span></li> | ||
150 | |||
151 | <li class="unfocused"><span class="lineno"> 8</span> <span class="line">% unsigned int a = -1;</span></li> | ||
152 | |||
153 | <li class="unfocused"><span class="lineno"> 9</span> <span class="line">% int j = k;</span></li> | ||
154 | |||
155 | <li class="unfocused"><span class="lineno"> 10</span> <span class="line"> </body></span></li> | ||
156 | |||
157 | <li class="unfocused"><span class="lineno"> 11</span> <span class="line"></html></span></li> | ||
158 | |||
159 | <li class="unfocused"><span class="lineno"> 12</span> <span class="line">% /* vim:set ft=sitecing: */</span></li> | ||
160 | </ul> | ||
161 | <div class="what"> | ||
162 | In file included from exceptions/development/compile.chtml:7: | ||
163 | </div> | ||
164 | </div> | ||
165 | |||
166 | <div class="exception-codepoint-report"> | ||
167 | <h3>exceptions/development/erroneous.h</h3> | ||
168 | <ul> | ||
169 | <li class="focused"><span class="lineno"> 1</span> <span class="line"> a+2=5;</span></li> | ||
170 | |||
171 | <li class="unfocused"><span class="lineno"> 2</span> <span class="line"></span></li> | ||
172 | </ul> | ||
173 | <div class="what"> | ||
174 | ./erroneous.h:1: error: `a' undeclared (first use this function) | ||
175 | </div> | ||
176 | </div> | ||
177 | |||
178 | <div class="exception-codepoint-report"> | ||
179 | <h3>exceptions/development/compile.chtml</h3> | ||
180 | <ul> | ||
181 | <li class="unfocused"><span class="lineno"> 3</span> <span class="line"> <title>I'm gonna make a number of mistakes!</title></span></li> | ||
182 | |||
183 | <li class="unfocused"><span class="lineno"> 4</span> <span class="line"> </head></span></li> | ||
184 | |||
185 | <li class="unfocused"><span class="lineno"> 5</span> <span class="line"> <body></span></li> | ||
186 | |||
187 | <li class="unfocused"><span class="lineno"> 6</span> <span class="line">% ind a = 2;</span></li> | ||
188 | |||
189 | <li class="unfocused"><span class="lineno"> 7</span> <span class="line">% #include "erroneous.h"</span></li> | ||
190 | |||
191 | <li class="focused"><span class="lineno"> 8</span> <span class="line">% unsigned int a = -1;</span></li> | ||
192 | |||
193 | <li class="unfocused"><span class="lineno"> 9</span> <span class="line">% int j = k;</span></li> | ||
194 | |||
195 | <li class="unfocused"><span class="lineno"> 10</span> <span class="line"> </body></span></li> | ||
196 | |||
197 | <li class="unfocused"><span class="lineno"> 11</span> <span class="line"></html></span></li> | ||
198 | |||
199 | <li class="unfocused"><span class="lineno"> 12</span> <span class="line">% /* vim:set ft=sitecing: */</span></li> | ||
200 | |||
201 | <li class="unfocused"><span class="lineno"> 13</span> <span class="line"></span></li> | ||
202 | </ul> | ||
203 | <div class="what"> | ||
204 | exceptions/development/compile.chtml:8: warning: converting of negative value `-0x000000001' to `unsigned int' | ||
205 | </div> | ||
206 | </div> | ||
207 | |||
208 | <div class="exception-codepoint-report"> | ||
209 | <h3>exceptions/development/compile.chtml</h3> | ||
210 | <ul> | ||
211 | <li class="unfocused"><span class="lineno"> 4</span> <span class="line"> </head></span></li> | ||
212 | |||
213 | <li class="unfocused"><span class="lineno"> 5</span> <span class="line"> <body></span></li> | ||
214 | |||
215 | <li class="unfocused"><span class="lineno"> 6</span> <span class="line">% ind a = 2;</span></li> | ||
216 | |||
217 | <li class="unfocused"><span class="lineno"> 7</span> <span class="line">% #include "erroneous.h"</span></li> | ||
218 | |||
219 | <li class="unfocused"><span class="lineno"> 8</span> <span class="line">% unsigned int a = -1;</span></li> | ||
220 | |||
221 | <li class="focused"><span class="lineno"> 9</span> <span class="line">% int j = k;</span></li> | ||
222 | |||
223 | <li class="unfocused"><span class="lineno"> 10</span> <span class="line"> </body></span></li> | ||
224 | |||
225 | <li class="unfocused"><span class="lineno"> 11</span> <span class="line"></html></span></li> | ||
226 | |||
227 | <li class="unfocused"><span class="lineno"> 12</span> <span class="line">% /* vim:set ft=sitecing: */</span></li> | ||
228 | |||
229 | <li class="unfocused"><span class="lineno"> 13</span> <span class="line"></span></li> | ||
230 | </ul> | ||
231 | <div class="what"> | ||
232 | exceptions/development/compile.chtml:9: error: `k' undeclared (first use this function)<br/> | ||
233 | |||
234 | </div> | ||
235 | </div> | ||
236 | |||
237 | </div> | ||
238 | |||
239 | <div class="powered">Powered by <a href="http://kin.klever.net/sitecing/" title="site-C-ing">site-C-ing</a>.</div> | ||
240 | </body> | ||
241 | </html> | ||
242 | |||
243 | |||
244 | |||
245 | |||
246 | |||
247 | |||
248 | |||
diff --git a/htdocs/exceptions/development/erroneous.h b/htdocs/exceptions/development/erroneous.h new file mode 100644 index 0000000..060a57e --- a/dev/null +++ b/htdocs/exceptions/development/erroneous.h | |||
@@ -0,0 +1 @@ | |||
a+2=5; | |||
diff --git a/htdocs/exceptions/development/preprocess.chtml b/htdocs/exceptions/development/preprocess.chtml new file mode 100644 index 0000000..f7405e7 --- a/dev/null +++ b/htdocs/exceptions/development/preprocess.chtml | |||
@@ -0,0 +1,14 @@ | |||
1 | <html> | ||
2 | <body> | ||
3 | <p> | ||
4 | I was writing this component in a hurry, having a lot of things to distract | ||
5 | me, so no wonder I made mistake. | ||
6 | <%code> | ||
7 | /* I do not even remember what I was going to put in this code block. And | ||
8 | * of course I didn't mean to forget that this is just a block of code, not | ||
9 | * a constructor... | ||
10 | */ | ||
11 | </%constructor> | ||
12 | </p> | ||
13 | </body> | ||
14 | </html> | ||
diff --git a/htdocs/exceptions/development/runtime.chtml b/htdocs/exceptions/development/runtime.chtml new file mode 100644 index 0000000..4a494bd --- a/dev/null +++ b/htdocs/exceptions/development/runtime.chtml | |||
@@ -0,0 +1,16 @@ | |||
1 | %%decl #include <konforka/exception.h> | ||
2 | <%code> | ||
3 | try{ | ||
4 | try{ | ||
5 | try{ | ||
6 | throw konforka::exception(CODEPOINT,"throwing an exception to backtrace a bit"); | ||
7 | }catch(konforka::exception& ke){ | ||
8 | ke.see(CODEPOINT); throw; | ||
9 | } | ||
10 | }catch(konforka::exception& ke){ | ||
11 | ke.see(CODEPOINT); throw; | ||
12 | } | ||
13 | }catch(konforka::exception& ke){ | ||
14 | ke.see(CODEPOINT); throw; | ||
15 | } | ||
16 | </%code> | ||