author | Michael Krelin <hacker@klever.net> | 2005-02-02 22:30:27 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-02-02 22:30:27 (UTC) |
commit | 870963df2dac72e433fd7f94cd1cccc8cd6ea2d0 (patch) (unidiff) | |
tree | edb6a3f9070ca67c9396ce548f28f82107afc119 /htdocs/ancestry/sources.chtml | |
parent | b9ddf0a5135cf5b3371f38b41385fa8fc03da146 (diff) | |
download | sitecing-870963df2dac72e433fd7f94cd1cccc8cd6ea2d0.zip sitecing-870963df2dac72e433fd7f94cd1cccc8cd6ea2d0.tar.gz sitecing-870963df2dac72e433fd7f94cd1cccc8cd6ea2d0.tar.bz2 |
1. changed version to -svn
2. added a really simple page example
3. removed 'border=' attribute from iframe
4. added notice about svn version
5. added 'site-C-ing:' prefix to the title
Diffstat (limited to 'htdocs/ancestry/sources.chtml') (more/less context) (ignore whitespace changes)
-rw-r--r-- | htdocs/ancestry/sources.chtml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/htdocs/ancestry/sources.chtml b/htdocs/ancestry/sources.chtml index eb9c790..35ced64 100644 --- a/htdocs/ancestry/sources.chtml +++ b/htdocs/ancestry/sources.chtml | |||
@@ -1,75 +1,78 @@ | |||
1 | <%decl> | 1 | <%decl> |
2 | typedef struct { | 2 | typedef struct { |
3 | const char *dir; | 3 | const char *dir; |
4 | const char *name; | 4 | const char *name; |
5 | const char *desc; | 5 | const char *desc; |
6 | } sourcefile_t; | 6 | } sourcefile_t; |
7 | extern sourcefile_t source_files[]; | 7 | extern sourcefile_t source_files[]; |
8 | extern int source_files_count; | 8 | extern int source_files_count; |
9 | </%decl> | 9 | </%decl> |
10 | <%impl> | 10 | <%impl> |
11 | sourcefile_t source_files[] = { | 11 | sourcefile_t source_files[] = { |
12 | { "", 0, "the root" }, | 12 | { "", 0, "the root" }, |
13 | { "", "configure.ac", "main configuration file" }, | 13 | { "", "configure.ac", "main configuration file" }, |
14 | { "", "acinclude.m4", "autoconf macros" }, | 14 | { "", "acinclude.m4", "autoconf macros" }, |
15 | { "", "autogen.sh", "shell script for building out of source repository" }, | 15 | { "", "autogen.sh", "shell script for building out of source repository" }, |
16 | { "", "Makefile.am", "automake makefile template" }, | 16 | { "", "Makefile.am", "automake makefile template" }, |
17 | { "", "NEWS.xml", "news since the last release (if any)" }, | 17 | { "", "NEWS.xml", "news since the last release (if any)" }, |
18 | { "", "NEWS.xsl", "the styleshhet to make a plaintext version of NEWS.xml" }, | 18 | { "", "NEWS.xsl", "the styleshhet to make a plaintext version of NEWS.xml" }, |
19 | { "", "COPYING", "copyright notice" }, | 19 | { "", "COPYING", "copyright notice" }, |
20 | { "", "AUTHORS", "Klever dissected" }, | 20 | { "", "AUTHORS", "Klever dissected" }, |
21 | { 0, 0, 0 }, | 21 | { 0, 0, 0 }, |
22 | { "bin", 0, "various scripts" }, | 22 | { "bin", 0, "various scripts" }, |
23 | { "bin", "build.in", "the template of the script used to precompile the code" }, | 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" }, | 24 | { "bin", "run.in", "the template of the script used to start fastcgi server" }, |
25 | { 0, 0, 0 }, | 25 | { 0, 0, 0 }, |
26 | { "conf", 0, "configuration files" }, | 26 | { "conf", 0, "configuration files" }, |
27 | { "conf", "dudki.conf.in", "the template for the dudki daemon configuration file" }, | 27 | { "conf", "dudki.conf.in", "the template for the dudki daemon configuration file" }, |
28 | { "conf", "httpd.conf.in", "the template for the apache configuration" }, | 28 | { "conf", "httpd.conf.in", "the template for the apache configuration" }, |
29 | { "conf", "sitecing.conf.in", "the template for the site-C-ing configuration" }, | 29 | { "conf", "sitecing.conf.in", "the template for the site-C-ing configuration" }, |
30 | { 0, 0, 0 }, | 30 | { 0, 0, 0 }, |
31 | { "htdocs", 0, "the source files" }, | 31 | { "htdocs", 0, "the source files" }, |
32 | { "htdocs", ".htaccess", "apache access-control file" }, | 32 | { "htdocs", ".htaccess", "apache access-control file" }, |
33 | { "htdocs", "index.chtml", "the introduction" }, | 33 | { "htdocs", "index.chtml", "the introduction" }, |
34 | { "htdocs", "sources.chtml", "the source browser" }, | 34 | { "htdocs", "sources.chtml", "the source browser" }, |
35 | { "htdocs", "style.css", "the CSS style sheet" }, | 35 | { "htdocs", "style.css", "the CSS style sheet" }, |
36 | { "htdocs", "view.chtml", "the source viewer" }, | 36 | { "htdocs", "view.chtml", "the source viewer" }, |
37 | { "htdocs/examples", 0, "examples" }, | ||
38 | { "htdocs/examples", "calendar.chtml", "really simple page" }, | ||
39 | { 0,0,0 }, | ||
37 | { "htdocs/exceptions", 0, "exceptions handling overview" }, | 40 | { "htdocs/exceptions", 0, "exceptions handling overview" }, |
38 | { "htdocs/exceptions", "index.chtml", "the overview" }, | 41 | { "htdocs/exceptions", "index.chtml", "the overview" }, |
39 | { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" }, | 42 | { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" }, |
40 | { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" }, | 43 | { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" }, |
41 | { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" }, | 44 | { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" }, |
42 | { "htdocs/exceptions/development", 0, "development-mode exceptions samples" }, | 45 | { "htdocs/exceptions/development", 0, "development-mode exceptions samples" }, |
43 | { "htdocs/exceptions/development", ".htaccess", "apache access control file" }, | 46 | { "htdocs/exceptions/development", ".htaccess", "apache access control file" }, |
44 | { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" }, | 47 | { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" }, |
45 | { "htdocs/exceptions/development", "preprocess.chtml", "the file that can not be preprocessed" }, | 48 | { "htdocs/exceptions/development", "preprocess.chtml", "the file that can not be preprocessed" }, |
46 | { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" }, | 49 | { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" }, |
47 | { "htdocs/exceptions/development", "compile.chtml", "the file that can not be compiled" }, | 50 | { "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" }, | 51 | { "htdocs/exceptions/development", "erroneous.h", "the file to include for more errors" }, |
49 | { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" }, | 52 | { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" }, |
50 | { 0,0,0 }, | 53 | { 0,0,0 }, |
51 | { "htdocs/exceptions/production", 0, "production-mode exceptions samples" }, | 54 | { "htdocs/exceptions/production", 0, "production-mode exceptions samples" }, |
52 | { "htdocs/exceptions/production", ".htaccess", "apache access control file" }, | 55 | { "htdocs/exceptions/production", ".htaccess", "apache access control file" }, |
53 | { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" }, | 56 | { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" }, |
54 | { "htdocs/exceptions/production", "preprocess.chtml", "the file that can not be preprocessed" }, | 57 | { "htdocs/exceptions/production", "preprocess.chtml", "the file that can not be preprocessed" }, |
55 | { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" }, | 58 | { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" }, |
56 | { "htdocs/exceptions/production", "compile.chtml", "the file that can not be compiled" }, | 59 | { "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" }, | 60 | { "htdocs/exceptions/production", "erroneous.h", "the file to include for more errors" }, |
58 | { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" }, | 61 | { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" }, |
59 | { 0,0,0 }, | 62 | { 0,0,0 }, |
60 | { 0,0,0 }, | 63 | { 0,0,0 }, |
61 | { "htdocs/handlers", 0, "exception handlers" }, | 64 | { "htdocs/handlers", 0, "exception handlers" }, |
62 | { "htdocs/handlers", ".htaccess", "apache access-control file" }, | 65 | { "htdocs/handlers", ".htaccess", "apache access-control file" }, |
63 | { "htdocs/handlers", "exception_dev", "development mode exception handler" }, | 66 | { "htdocs/handlers", "exception_dev", "development mode exception handler" }, |
64 | { "htdocs/handlers", "exception_prod", "production mode exception handler" }, | 67 | { "htdocs/handlers", "exception_prod", "production mode exception handler" }, |
65 | { 0,0,0 }, | 68 | { 0,0,0 }, |
66 | { "htdocs/ancestry", 0, "base components to build the rest upon" }, | 69 | { "htdocs/ancestry", 0, "base components to build the rest upon" }, |
67 | { "htdocs/ancestry", ".htaccess", "apache access control file" }, | 70 | { "htdocs/ancestry", ".htaccess", "apache access control file" }, |
68 | { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" }, | 71 | { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" }, |
69 | { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" }, | 72 | { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" }, |
70 | { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" }, | 73 | { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" }, |
71 | { 0,0,0 }, | 74 | { 0,0,0 }, |
72 | { 0,0,0 } | 75 | { 0,0,0 } |
73 | }; | 76 | }; |
74 | int source_files_count = sizeof(source_files)/sizeof(*source_files); | 77 | int source_files_count = sizeof(source_files)/sizeof(*source_files); |
75 | </%impl> | 78 | </%impl> |