author | Michael Krelin <hacker@klever.net> | 2005-04-02 17:12:01 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-04-02 17:12:01 (UTC) |
commit | 0234b0ae9ba19a37771a8e7d519137fa811c206c (patch) (unidiff) | |
tree | 0ea91c13e615a7abf70ad6d3ccdda7cacb97dd56 /htdocs/ancestry/sources.chtml | |
parent | 1a234a03b327b20bf7490c696ebc41a9d65117ac (diff) | |
download | sitecing-0234b0ae9ba19a37771a8e7d519137fa811c206c.zip sitecing-0234b0ae9ba19a37771a8e7d519137fa811c206c.tar.gz sitecing-0234b0ae9ba19a37771a8e7d519137fa811c206c.tar.bz2 |
1. minor changes to CSS
2. arrows added to walkthrough navigation
3. added new files to the list of sources
4. extra div-s added to metasytnax for the sake of validity
5. hyperlink added to the reference index page
6. changed the note about fastcgi being the only supported inface
7. flushing added to calendar for a bit of performance analysis.
Diffstat (limited to 'htdocs/ancestry/sources.chtml') (more/less context) (ignore whitespace changes)
-rw-r--r-- | htdocs/ancestry/sources.chtml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/htdocs/ancestry/sources.chtml b/htdocs/ancestry/sources.chtml index 35ced64..1d9fcc9 100644 --- a/htdocs/ancestry/sources.chtml +++ b/htdocs/ancestry/sources.chtml | |||
@@ -1,78 +1,82 @@ | |||
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" }, | 37 | { "htdocs/examples", 0, "examples" }, |
38 | { "htdocs/examples", "calendar.chtml", "really simple page" }, | 38 | { "htdocs/examples", "calendar.chtml", "really simple page" }, |
39 | { 0,0,0 }, | 39 | { 0,0,0 }, |
40 | { "htdocs/exceptions", 0, "exceptions handling overview" }, | 40 | { "htdocs/exceptions", 0, "exceptions handling overview" }, |
41 | { "htdocs/exceptions", "index.chtml", "the overview" }, | 41 | { "htdocs/exceptions", "index.chtml", "the overview" }, |
42 | { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" }, | 42 | { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" }, |
43 | { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" }, | 43 | { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" }, |
44 | { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" }, | 44 | { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" }, |
45 | { "htdocs/exceptions/development", 0, "development-mode exceptions samples" }, | 45 | { "htdocs/exceptions/development", 0, "development-mode exceptions samples" }, |
46 | { "htdocs/exceptions/development", ".htaccess", "apache access control file" }, | 46 | { "htdocs/exceptions/development", ".htaccess", "apache access control file" }, |
47 | { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" }, | 47 | { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" }, |
48 | { "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" }, |
49 | { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" }, | 49 | { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" }, |
50 | { "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" }, |
51 | { "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" }, |
52 | { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" }, | 52 | { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" }, |
53 | { 0,0,0 }, | 53 | { 0,0,0 }, |
54 | { "htdocs/exceptions/production", 0, "production-mode exceptions samples" }, | 54 | { "htdocs/exceptions/production", 0, "production-mode exceptions samples" }, |
55 | { "htdocs/exceptions/production", ".htaccess", "apache access control file" }, | 55 | { "htdocs/exceptions/production", ".htaccess", "apache access control file" }, |
56 | { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" }, | 56 | { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" }, |
57 | { "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" }, |
58 | { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" }, | 58 | { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" }, |
59 | { "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" }, |
60 | { "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" }, |
61 | { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" }, | 61 | { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" }, |
62 | { 0,0,0 }, | 62 | { 0,0,0 }, |
63 | { "htdocs/quickref", 0, "reference documentation" }, | ||
64 | { "htdocs/quickref", "index.chtml", "the overview" }, | ||
65 | { "htdocs/quickref", "metasyntax.chtml", "component meta syntax quick reference" }, | ||
66 | { 0,0,0 }, | ||
63 | { 0,0,0 }, | 67 | { 0,0,0 }, |
64 | { "htdocs/handlers", 0, "exception handlers" }, | 68 | { "htdocs/handlers", 0, "exception handlers" }, |
65 | { "htdocs/handlers", ".htaccess", "apache access-control file" }, | 69 | { "htdocs/handlers", ".htaccess", "apache access-control file" }, |
66 | { "htdocs/handlers", "exception_dev", "development mode exception handler" }, | 70 | { "htdocs/handlers", "exception_dev", "development mode exception handler" }, |
67 | { "htdocs/handlers", "exception_prod", "production mode exception handler" }, | 71 | { "htdocs/handlers", "exception_prod", "production mode exception handler" }, |
68 | { 0,0,0 }, | 72 | { 0,0,0 }, |
69 | { "htdocs/ancestry", 0, "base components to build the rest upon" }, | 73 | { "htdocs/ancestry", 0, "base components to build the rest upon" }, |
70 | { "htdocs/ancestry", ".htaccess", "apache access control file" }, | 74 | { "htdocs/ancestry", ".htaccess", "apache access control file" }, |
71 | { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" }, | 75 | { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" }, |
72 | { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" }, | 76 | { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" }, |
73 | { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" }, | 77 | { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" }, |
74 | { 0,0,0 }, | 78 | { 0,0,0 }, |
75 | { 0,0,0 } | 79 | { 0,0,0 } |
76 | }; | 80 | }; |
77 | int source_files_count = sizeof(source_files)/sizeof(*source_files); | 81 | int source_files_count = sizeof(source_files)/sizeof(*source_files); |
78 | </%impl> | 82 | </%impl> |