diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-03-28 12:33:11 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-03-28 12:33:11 +0000 |
commit | 55a80b670e43a3fc1798be42b40a96c9027e97e5 (patch) | |
tree | dd018a843a068438d6699be3f96d76f9084c75e8 /www | |
parent | 1cb6d1aefabfaa4650e660e959137f926cae5656 (diff) |
Initial version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@48 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www')
-rw-r--r-- | www/irc/Makefile | 9 | ||||
-rw-r--r-- | www/irc/index.t | 21 |
2 files changed, 30 insertions, 0 deletions
diff --git a/www/irc/Makefile b/www/irc/Makefile new file mode 100644 index 0000000000..5ec9d50aa5 --- /dev/null +++ b/www/irc/Makefile @@ -0,0 +1,9 @@ +ACTION=@echo preprocessing $@; rm -f $@; fcpp -WWW -I.. -Uunix -H -C -V -LL >$@ + +SRC := $(wildcard *.t) +OBJS := $(SRC:%.t=%.html) + +all: $(OBJS) + +%.html : %.t + $(ACTION) $< diff --git a/www/irc/index.t b/www/irc/index.t new file mode 100644 index 0000000000..ef2c8e87c3 --- /dev/null +++ b/www/irc/index.t @@ -0,0 +1,21 @@ +#define _PAGE_ IRC +#include "head.t" + +<p>We often hang out on #rockbox over at irc.openprojects.net. +Since there is a great deal of technical discussion, we log these sessions +for later reference. + +<h2>Nick reference</h2> +<pre> +#include "nicks.txt" +</pre> + +<h2>Logs</h2> + +<ul> +<li><a href="rockbox-20020325.log">March 25, 2002</a> +<li><a href="rockbox-20020326.log">March 26, 2002</a> +<li><a href="rockbox-20020327.log">March 27, 2002</a> +</ul> + +#include "foot.t" |