author | Michael Krelin <hacker@klever.net> | 2005-01-30 00:57:53 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-01-30 00:57:53 (UTC) |
commit | 71f4cc84c3788c6904ede17cd626a9ca9c349e3b (patch) (unidiff) | |
tree | cfe7736ae3416ad314b7451b756e587335c357c7 /htdocs/ancestry | |
parent | acd2a536dd6bb3ef9438482725f77ac9044ae79b (diff) | |
download | sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.zip sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.tar.gz sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.tar.bz2 |
initial commit into repository
-rw-r--r-- | htdocs/ancestry/.htaccess | 1 | ||||
-rw-r--r-- | htdocs/ancestry/layout.chtml | 35 | ||||
-rw-r--r-- | htdocs/ancestry/page.chtml | 28 | ||||
-rw-r--r-- | htdocs/ancestry/sources.chtml | 75 |
4 files changed, 139 insertions, 0 deletions
diff --git a/htdocs/ancestry/.htaccess b/htdocs/ancestry/.htaccess new file mode 100644 index 0000000..8d2f256 --- a/dev/null +++ b/htdocs/ancestry/.htaccess | |||
@@ -0,0 +1 @@ | |||
deny from all | |||
diff --git a/htdocs/ancestry/layout.chtml b/htdocs/ancestry/layout.chtml new file mode 100644 index 0000000..11bd74a --- a/dev/null +++ b/htdocs/ancestry/layout.chtml | |||
@@ -0,0 +1,35 @@ | |||
1 | % html(); return; /* vim:set ft=sitecing: */ | ||
2 | %%derive page = "/ancestry/page.chtml"; | ||
3 | %%impl #include "acconfig.h" | ||
4 | <%method void body() %> | ||
5 | <div id="content"> | ||
6 | <%code> | ||
7 | if(!access(WEB_RUN_ROOT "/conf/banner_top",R_OK)) { | ||
8 | pass_file_through(WEB_RUN_ROOT "/conf/banner_top"); | ||
9 | } | ||
10 | content(); | ||
11 | if(b_strict && !access(WEB_RUN_ROOT "/conf/banner_bottom",R_OK)) { | ||
12 | pass_file_through(WEB_RUN_ROOT "/conf/banner_bottom"); | ||
13 | } | ||
14 | </%code> | ||
15 | </div> | ||
16 | <div id="sidepanel"> | ||
17 | % sidepanel(); | ||
18 | </div> | ||
19 | </%method> | ||
20 | <%method void content() %> | ||
21 | </%method> | ||
22 | <%method void sidepanel() %> | ||
23 | <h1><% PACKAGE_STRING %></h1> | ||
24 | % /* thank MSIE for this awful formatting */ | ||
25 | <ul><li><a href="/" title="introduction to site-C-ing">intro</a></li><li><a href="/exceptions/" title="exceptions handling">exceptions</a><ul><li><a href="/exceptions/preprocess" title="preprocessor errors">preprocess</a></li><li><a href="/exceptions/compile" title="compiler errors">compile-time</a></li><li><a href="/exceptions/runtime" title="runtime exceptions">runtime</a></li></ul></li><li><a href="/sources" title="browse this site source files">sources</a></li></ul> | ||
26 | <%code> | ||
27 | if(!access(WEB_RUN_ROOT "/conf/banner_side",R_OK)) { | ||
28 | pass_file_through(WEB_RUN_ROOT "/conf/banner_side"); | ||
29 | } | ||
30 | </%code> | ||
31 | <ul><li><a href="http://kin.klever.net/sitecing/" title="main site-C-ing page">site-C-ing</a></li><li><a href="http://kin.klever.net/sitecing/sources" title="site-C-ing download page">downloads</a></li></ul> | ||
32 | <div class="copyright"> | ||
33 | © <a href="http://www.klever.net/">Klever Group</a> | ||
34 | </div> | ||
35 | </%method> | ||
diff --git a/htdocs/ancestry/page.chtml b/htdocs/ancestry/page.chtml new file mode 100644 index 0000000..28bf7f0 --- a/dev/null +++ b/htdocs/ancestry/page.chtml | |||
@@ -0,0 +1,28 @@ | |||
1 | % html(); return; /* vim:set ft=sitecing: */ | ||
2 | %%var bool b_strict = true; | ||
3 | <%decl> | ||
4 | using std::string; | ||
5 | </%decl> | ||
6 | <%method void html() %> | ||
7 | % if(b_strict){ | ||
8 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
9 | % }else{ | ||
10 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> | ||
11 | % } | ||
12 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> | ||
13 | <head> | ||
14 | % __SCIF->headers["Content-Type"] = "text/html"; | ||
15 | <title><% title() %></title> | ||
16 | <meta name="copyright" content="Copyright (c) 1996-2005 Klever Group"/> | ||
17 | <link rel="stylesheet" href="/style.css" type="text/css" /> | ||
18 | </head> | ||
19 | <body> | ||
20 | % body(); | ||
21 | </body> | ||
22 | </html> | ||
23 | </%method> | ||
24 | <%codemethod string title() %> | ||
25 | return "untitled"; | ||
26 | </%codemethod> | ||
27 | <%method void body() %> | ||
28 | </%method> | ||
diff --git a/htdocs/ancestry/sources.chtml b/htdocs/ancestry/sources.chtml new file mode 100644 index 0000000..eb9c790 --- a/dev/null +++ b/htdocs/ancestry/sources.chtml | |||
@@ -0,0 +1,75 @@ | |||
1 | <%decl> | ||
2 | typedef struct { | ||
3 | const char *dir; | ||
4 | const char *name; | ||
5 | const char *desc; | ||
6 | } sourcefile_t; | ||
7 | extern sourcefile_t source_files[]; | ||
8 | extern int source_files_count; | ||
9 | </%decl> | ||
10 | <%impl> | ||
11 | sourcefile_t source_files[] = { | ||
12 | { "", 0, "the root" }, | ||
13 | { "", "configure.ac", "main configuration file" }, | ||
14 | { "", "acinclude.m4", "autoconf macros" }, | ||
15 | { "", "autogen.sh", "shell script for building out of source repository" }, | ||
16 | { "", "Makefile.am", "automake makefile template" }, | ||
17 | { "", "NEWS.xml", "news since the last release (if any)" }, | ||
18 | { "", "NEWS.xsl", "the styleshhet to make a plaintext version of NEWS.xml" }, | ||
19 | { "", "COPYING", "copyright notice" }, | ||
20 | { "", "AUTHORS", "Klever dissected" }, | ||
21 | { 0, 0, 0 }, | ||
22 | { "bin", 0, "various scripts" }, | ||
23 | { "bin", "build.in", "the template of the script used to precompile the code" }, | ||
24 | { "bin", "run.in", "the template of the script used to start fastcgi server" }, | ||
25 | { 0, 0, 0 }, | ||
26 | { "conf", 0, "configuration files" }, | ||
27 | { "conf", "dudki.conf.in", "the template for the dudki daemon configuration file" }, | ||
28 | { "conf", "httpd.conf.in", "the template for the apache configuration" }, | ||
29 | { "conf", "sitecing.conf.in", "the template for the site-C-ing configuration" }, | ||
30 | { 0, 0, 0 }, | ||
31 | { "htdocs", 0, "the source files" }, | ||
32 | { "htdocs", ".htaccess", "apache access-control file" }, | ||
33 | { "htdocs", "index.chtml", "the introduction" }, | ||
34 | { "htdocs", "sources.chtml", "the source browser" }, | ||
35 | { "htdocs", "style.css", "the CSS style sheet" }, | ||
36 | { "htdocs", "view.chtml", "the source viewer" }, | ||
37 | { "htdocs/exceptions", 0, "exceptions handling overview" }, | ||
38 | { "htdocs/exceptions", "index.chtml", "the overview" }, | ||
39 | { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" }, | ||
40 | { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" }, | ||
41 | { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" }, | ||
42 | { "htdocs/exceptions/development", 0, "development-mode exceptions samples" }, | ||
43 | { "htdocs/exceptions/development", ".htaccess", "apache access control file" }, | ||
44 | { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" }, | ||
45 | { "htdocs/exceptions/development", "preprocess.chtml", "the file that can not be preprocessed" }, | ||
46 | { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" }, | ||
47 | { "htdocs/exceptions/development", "compile.chtml", "the file that can not be compiled" }, | ||
48 | { "htdocs/exceptions/development", "erroneous.h", "the file to include for more errors" }, | ||
49 | { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" }, | ||
50 | { 0,0,0 }, | ||
51 | { "htdocs/exceptions/production", 0, "production-mode exceptions samples" }, | ||
52 | { "htdocs/exceptions/production", ".htaccess", "apache access control file" }, | ||
53 | { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" }, | ||
54 | { "htdocs/exceptions/production", "preprocess.chtml", "the file that can not be preprocessed" }, | ||
55 | { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" }, | ||
56 | { "htdocs/exceptions/production", "compile.chtml", "the file that can not be compiled" }, | ||
57 | { "htdocs/exceptions/production", "erroneous.h", "the file to include for more errors" }, | ||
58 | { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" }, | ||
59 | { 0,0,0 }, | ||
60 | { 0,0,0 }, | ||
61 | { "htdocs/handlers", 0, "exception handlers" }, | ||
62 | { "htdocs/handlers", ".htaccess", "apache access-control file" }, | ||
63 | { "htdocs/handlers", "exception_dev", "development mode exception handler" }, | ||
64 | { "htdocs/handlers", "exception_prod", "production mode exception handler" }, | ||
65 | { 0,0,0 }, | ||
66 | { "htdocs/ancestry", 0, "base components to build the rest upon" }, | ||
67 | { "htdocs/ancestry", ".htaccess", "apache access control file" }, | ||
68 | { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" }, | ||
69 | { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" }, | ||
70 | { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" }, | ||
71 | { 0,0,0 }, | ||
72 | { 0,0,0 } | ||
73 | }; | ||
74 | int source_files_count = sizeof(source_files)/sizeof(*source_files); | ||
75 | </%impl> | ||