-rw-r--r-- | htdocs/index.chtml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/htdocs/index.chtml b/htdocs/index.chtml index e8cedda..20d34c2 100644 --- a/htdocs/index.chtml +++ b/htdocs/index.chtml | |||
@@ -1,49 +1,51 @@ | |||
1 | % html(); return; /* vim:set ft=sitecing: */ | 1 | % html(); return; /* vim:set ft=sitecing: */ |
2 | %%derive layout = "/ancestry/layout.chtml"; | 2 | %%derive layout = "/ancestry/layout.chtml"; |
3 | <%constructor> | 3 | <%constructor> |
4 | PN_NEXT("/simple","simple page","building a really simple page"); | 4 | PN_NEXT("/simple","simple page","building a really simple page"); |
5 | </%constructor> | 5 | </%constructor> |
6 | <%codemethod string title() %> | 6 | <%codemethod string title() %> |
7 | return "introduction"; | 7 | return "introduction"; |
8 | </%codemethod> | 8 | </%codemethod> |
9 | <%method void content() %> | 9 | <%method void content() %> |
10 | <h1>introduction to site-C-ing</h1> | 10 | <h1>introduction to site-C-ing</h1> |
11 | <p> | 11 | <p> |
12 | This is a sample site, which is supposed to demonstrate <em>site-C-ing</em> | 12 | This is a sample site, which is supposed to demonstrate <em>site-C-ing</em> |
13 | features. Since the <em>site-C-ing</em> is still at the early stages of | 13 | features. Since the <em>site-C-ing</em> is still at the early stages of |
14 | development or rather proof of concept, this site is also far from being | 14 | development or rather proof of concept, this site is also far from being |
15 | complete. I am planning to add more pages as the time permits, though. | 15 | complete. I am planning to add more pages as the time permits, though. |
16 | </p> | 16 | </p> |
17 | <p> | 17 | <p> |
18 | Once you download and install <a | 18 | Once you download and install <a |
19 | href="http://kin.klever.net/sitecing/">site-C-ing</a> you may wish to try | 19 | href="http://kin.klever.net/sitecing/">site-C-ing</a> you may wish to try |
20 | this sample site for yourself. The source is available from <a | 20 | this sample site for yourself. The source is available from <a |
21 | href="http://kin.klever.net/sitecing/sources">the site-C-ing download | 21 | href="http://kin.klever.net/sitecing/sources">the site-C-ing download |
22 | page</a>. After you download the source code, you should configure it using | 22 | page</a>. After you download the source code, you should configure it using |
23 | the ever so popular <code>configure</code> script. It is likely that you will | 23 | the ever so popular <code>configure</code> script. It is likely that you will |
24 | want to pass the <code>--with-vhostname</code> option to configure to name | 24 | want to pass the <code>--with-vhostname</code> option to configure to name |
25 | the apache virtual host. | 25 | the apache virtual host. |
26 | </p> | 26 | </p> |
27 | <p> | 27 | <p> |
28 | The configure script will generate the apache vhost configuration for you, | 28 | The configure script will generate the apache vhost configuration for you, |
29 | which you can <code>Include</code> in the main apache configuration file. | 29 | which you can <code>Include</code> in the main apache configuration file. |
30 | </p> | 30 | </p> |
31 | <p class="note"> | 31 | <p class="note"> |
32 | Note, that the configuration is tailored for apache 2.x. It is no problem to | 32 | Note, that the configuration is tailored for apache 2.x. It is no problem to |
33 | get it working with apache 1.3.x, although I haven't tried and so I am not | 33 | get it working with apache 1.3.x, although I haven't tried and so I am not |
34 | sure if it will run out of the box (your patches are <a | 34 | sure if it will run out of the box (your patches are <a |
35 | href="mailto:sitecing-patches@klever.net">welcome</a>). Also note that you | 35 | href="mailto:sitecing-patches@klever.net">welcome</a>). Also note that you |
36 | will need <a href="http://fastcgi.com/">mod_fastcgi</a> apache module, which | 36 | may need <a href="http://fastcgi.com/">mod_fastcgi</a> apache module, |
37 | is the only CGI-interface supported by the <em>site-C-ing</em> engine at the | 37 | although now that fastcgi is not the only supported interface you may get the |
38 | moment. | 38 | thing running with 'plain' CGI with a bit of tweaking. Again, if you got it |
39 | working without breaking the fastcgi part your patches are <a | ||
40 | href="mailto:sitecing-patches@klever.net">welcome</a>. | ||
39 | </p> | 41 | </p> |
40 | <p> | 42 | <p> |
41 | Once you get it all done you will want to restart your apache and start the | 43 | Once you get it all done you will want to restart your apache and start the |
42 | <em>site-C-ing</em> fastcgi server by issuing the <code>make restart</code> | 44 | <em>site-C-ing</em> fastcgi server by issuing the <code>make restart</code> |
43 | command. | 45 | command. |
44 | </p> | 46 | </p> |
45 | <p> | 47 | <p> |
46 | Before you download it, you may wish to <a href="/sources" title="source | 48 | Before you download it, you may wish to <a href="/sources" title="source |
47 | browser">examine the sources</a> to learn more about how it is done. | 49 | browser">examine the sources</a> to learn more about how it is done. |
48 | </p> | 50 | </p> |
49 | </%method> | 51 | </%method> |