From 56573cb4f7393fdb320660a5c258c72688a74f64 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 10 Sep 2009 21:27:39 +0200 Subject: networking/httpd_ssi.c: expand comments Signed-off-by: Denys Vlasenko --- networking/httpd_ssi.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'networking/httpd_ssi.c') diff --git a/networking/httpd_ssi.c b/networking/httpd_ssi.c index f75805923..86f341fbd 100644 --- a/networking/httpd_ssi.c +++ b/networking/httpd_ssi.c @@ -7,6 +7,11 @@ /* * This program is a CGI application. It processes server-side includes: * + * + * Usage: put these lines in httpd.conf: + * + * *.html:/bin/httpd_ssi + * *.htm:/bin/httpd_ssi */ /* Build a-la @@ -65,9 +70,10 @@ static void process_includes(const char *filename) continue; } *closing_dq = '\0'; - /* FIXME: (1) are relative paths ok? + /* FIXME: + * (1) are relative paths with /../ etc ok? * (2) if we include a/1.htm and it includes b/2.htm, - * do we need to insert a/b/2.htm or b/2.htm? + * do we need to include a/b/2.htm or b/2.htm? * IOW, do we need to "cd $dirname"? */ process_includes(line + sizeof(INCLUDE)-1); -- cgit v1.2.3