From e8ec42471085bcf5c6d7435541c635fff228b50b Mon Sep 17 00:00:00 2001 From: Stefanus Du Toit Date: Tue, 23 Apr 2002 01:03:37 +0000 Subject: [PATCH] Some more files I forgot. --- docs/editing-howto.xml | 51 +++++++++++++++++++++++++++++++++++++++ logos/acm_logo.gif | Bin 0 -> 3642 bytes logos/uw_logo_100_68.gif | Bin 0 -> 1928 bytes 3 files changed, 51 insertions(+) create mode 100755 docs/editing-howto.xml create mode 100755 logos/acm_logo.gif create mode 100755 logos/uw_logo_100_68.gif diff --git a/docs/editing-howto.xml b/docs/editing-howto.xml new file mode 100755 index 0000000..8a90cd5 --- /dev/null +++ b/docs/editing-howto.xml @@ -0,0 +1,51 @@ + + + + + +
+
+

+ In order to edit the website you will first have to get the CVS + repository in which it is stored. To do so, go somewhere in your + home directory and type: +

+ + export CVS_RSH=ssh
+ cvs -d username@peri.uwaterloo.ca:~sjdutoit/cvsroot co www +
+

+ Where username is your CSC user name. You will be + prompted for your password (unless you use an SSH key). After a + while you should have a new directory, www/, with + the CSC pages in it. +

+

+ You will also need libxslt and libxml + (including development headers) from Gnome. In debian, + apt-get install libxml2-dev libxslt1-dev. +

+
+
+

+ The CSC website is compiled. This means that when you + edit a page, you don't edit the HTML source directly, but + instead edit a page describing the page's content (and + some formatting) and then run a command to generate the HTML + page from these content description pages. +

+

+ To generate the CSC website, make sure you are in the directory + into which you checked it out (the www/ directory) + and enter +

+ + make + +

+ This will compile the whole website. After any changes you make + you will have to recompile the website in the same manner. +

+
+