summaryrefslogtreecommitdiffabout
path: root/htdocs/ancestry/sources.chtml
blob: eb9c79050d33330652665ce7996145fe59d70ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<%decl>
 typedef struct {
  const char *dir;
  const char *name;
  const char *desc;
 } sourcefile_t;
 extern sourcefile_t source_files[];
 extern int source_files_count;
</%decl>
<%impl>
 sourcefile_t source_files[] = {
  { "", 0, "the root" },
   { "", "configure.ac", "main configuration file" },
   { "", "acinclude.m4", "autoconf macros" },
   { "", "autogen.sh", "shell script for building out of source repository" },
   { "", "Makefile.am", "automake makefile template" },
   { "", "NEWS.xml", "news since the last release (if any)" },
   { "", "NEWS.xsl", "the styleshhet to make a plaintext version of NEWS.xml" },
   { "", "COPYING", "copyright notice" },
   { "", "AUTHORS", "Klever dissected" },
  { 0, 0, 0 },
  { "bin", 0, "various scripts" },
   { "bin", "build.in", "the template of the script used to precompile the code" },
   { "bin", "run.in", "the template of the script used to start fastcgi server" },
  { 0, 0, 0 },
  { "conf", 0, "configuration files" },
   { "conf", "dudki.conf.in", "the template for the dudki daemon configuration file" },
   { "conf", "httpd.conf.in", "the template for the apache configuration" },
   { "conf", "sitecing.conf.in", "the template for the site-C-ing configuration" },
  { 0, 0, 0 },
  { "htdocs", 0, "the source files" },
   { "htdocs", ".htaccess", "apache access-control file" },
   { "htdocs", "index.chtml", "the introduction" },
   { "htdocs", "sources.chtml", "the source browser" },
   { "htdocs", "style.css", "the CSS style sheet" },
   { "htdocs", "view.chtml", "the source viewer" },
   { "htdocs/exceptions", 0, "exceptions handling overview" },
    { "htdocs/exceptions", "index.chtml", "the overview" },
    { "htdocs/exceptions", "preprocess.chtml", "preprocessor exceptions" },
    { "htdocs/exceptions", "compile.chtml", "compile-time exceptions" },
    { "htdocs/exceptions", "runtime.chtml", "runtime exceptions" },
    { "htdocs/exceptions/development", 0, "development-mode exceptions samples" },
     { "htdocs/exceptions/development", ".htaccess", "apache access control file" },
     { "htdocs/exceptions/development", ".scrc", "site-C-ing local configuration" },
     { "htdocs/exceptions/development", "preprocess.chtml", "the file that can not be preprocessed" },
     { "htdocs/exceptions/development", "runtime.chtml", "exception thrown at runtime" },
     { "htdocs/exceptions/development", "compile.chtml", "the file that can not be compiled" },
     { "htdocs/exceptions/development", "erroneous.h", "the file to include for more errors" },
     { "htdocs/exceptions/development", "compile.html", "compile-time exception handler output" },
    { 0,0,0 },
    { "htdocs/exceptions/production", 0, "production-mode exceptions samples" },
     { "htdocs/exceptions/production", ".htaccess", "apache access control file" },
     { "htdocs/exceptions/production", ".scrc", "site-C-ing local configuration" },
     { "htdocs/exceptions/production", "preprocess.chtml", "the file that can not be preprocessed" },
     { "htdocs/exceptions/production", "runtime.chtml", "exception thrown at runtime" },
     { "htdocs/exceptions/production", "compile.chtml", "the file that can not be compiled" },
     { "htdocs/exceptions/production", "erroneous.h", "the file to include for more errors" },
     { "htdocs/exceptions/production", "compile.html", "compile-time exception handler output" },
    { 0,0,0 },
   { 0,0,0 },
   { "htdocs/handlers", 0, "exception handlers" },
    { "htdocs/handlers", ".htaccess", "apache access-control file" },
    { "htdocs/handlers", "exception_dev", "development mode exception handler" },
    { "htdocs/handlers", "exception_prod", "production mode exception handler" },
   { 0,0,0 },
   { "htdocs/ancestry", 0, "base components to build the rest upon" },
    { "htdocs/ancestry", ".htaccess", "apache access control file" },
    { "htdocs/ancestry", "page.chtml", "the xhtml skeleton" },
    { "htdocs/ancestry", "layout.chtml", "the layout for the most pages" },
    { "htdocs/ancestry", "sources.chtml", "the list of files for source browser" },
   { 0,0,0 },
  { 0,0,0 }
 };
 int source_files_count = sizeof(source_files)/sizeof(*source_files);
</%impl>