source@mandoc.bsd.lv
 help / color / mirror / Atom feed
From: kristaps@mdocml.bsd.lv
To: source@mdocml.bsd.lv
Subject: mdocml: By default, man.cgi should compile with -static (this was unset
Date: Wed, 7 Dec 2011 06:52:36 -0500 (EST)	[thread overview]
Message-ID: <201112071152.pB7BqaEW031538@krisdoz.my.domain> (raw)

Log Message:
-----------
By default, man.cgi should compile with -static (this was unset by mistake).
Also, set a custom CSS for man.cgi catman files.

Modified Files:
--------------
    mdocml:
        Makefile
        cgi.c

Revision Data
-------------
Index: cgi.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/cgi.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -Lcgi.c -Lcgi.c -u -p -r1.10 -r1.11
--- cgi.c
+++ cgi.c
@@ -423,7 +423,21 @@ resp_search(struct res *r, size_t sz, vo
 		return;
 	}
 
-	resp_begin_html(200, NULL);
+	resp_begin_http(200, NULL);
+	puts("<!DOCTYPE HTML PUBLIC "				"\n"
+	     " \"-//W3C//DTD HTML 4.01//EN\""			"\n"
+	     " \"http://www.w3.org/TR/html4/strict.dtd\">"	"\n"
+	     "<HTML>"						"\n"
+	     " <HEAD>"						"\n"
+	     "  <META HTTP-EQUIV=\"Content-Type\" "		"\n"
+	     "        CONTENT=\"text/html; charset=utf-8\">"	"\n"
+	     "  <LINK REL=\"stylesheet\" HREF=\"/catman.css\""	"\n"
+	     "        TYPE=\"text/css\" media=\"all\">"		"\n"
+	     "  <TITLE>System Manpage Reference</TITLE>"	"\n"
+	     " </HEAD>"						"\n"
+	     " <BODY>"						"\n"
+	     "<!-- Begin page content. //-->");
+
 	resp_searchform((const struct req *)arg);
 
 	if (0 == sz)
@@ -614,9 +628,9 @@ format(const char *file)
 		return;
 	}
 
-	snprintf(opts, sizeof(opts), "style=/style.css,"
+	snprintf(opts, sizeof(opts), "style=/man.css,"
 			"man=%s/search.html?sec=%%S&expr=%%N,"
-			"includes=/cgi-bin/man.cgi/usr/include/%%I",
+			/*"includes=/cgi-bin/man.cgi/usr/include/%%I"*/,
 			progname);
 
 	mparse_result(mp, &mdoc, &man);
Index: Makefile
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/Makefile,v
retrieving revision 1.385
retrieving revision 1.386
diff -LMakefile -LMakefile -u -p -r1.385 -r1.386
--- Makefile
+++ Makefile
@@ -30,7 +30,7 @@ CFLAGS	 	+= -DUSE_WCHAR
 #CFLAGS		+= -DUSE_MANPATH
 
 # If your system supports static binaries only, uncomment this.
-#STATIC		 = -static
+STATIC		 = -static
 
 CFLAGS		+= -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\""
 CFLAGS     	+= -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

                 reply	other threads:[~2011-12-07 11:52 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201112071152.pB7BqaEW031538@krisdoz.my.domain \
    --to=kristaps@mdocml.bsd.lv \
    --cc=source@mdocml.bsd.lv \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).