use relative url in header, escape name and description too - stagit-gopher - A git gopher frontend. (mirror)
 (HTM) git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2ab268d5b1c6da916e3e03d547e39711c2f4fd87
 (DIR) parent 6414c8b21262f201165cfa5b537b137821d18f46
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun, 20 Dec 2015 17:09:51 +0100
       
       use relative url in header, escape name and description too
       
       Diffstat:
         M urmoms.c                            |      73 +++++++++++++++++--------------
       
       1 file changed, 40 insertions(+), 33 deletions(-)
       ---
 (DIR) diff --git a/urmoms.c b/urmoms.c
       @@ -111,39 +111,6 @@ err:
                return NULL;
        }
        
       -int
       -writeheader(FILE *fp)
       -{
       -        fputs("<!DOCTYPE HTML>"
       -                "<html dir=\"ltr\" lang=\"en\">\n<head>\n"
       -                "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
       -                "<meta http-equiv=\"Content-Language\" content=\"en\" />\n", fp);
       -        fprintf(fp, "<title>%s%s%s</title>\n", name, description[0] ? " - " : "", description);
       -        fprintf(fp, "<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
       -        fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
       -                name, relpath);
       -        fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
       -        fputs("</head>\n<body>\n\n", fp);
       -        fprintf(fp, "<table><tr><td><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></td>"
       -                "<td><h1>%s</h1><span class=\"desc\">%s</span></td></tr><tr><td></td><td>\n",
       -                relpath, name, description);
       -        fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);
       -        fprintf(fp, "<a href=\"%sfiles.html\">Files</a>", relpath);
       -        if (hasreadme)
       -                fprintf(fp, " | <a href=\"%sfile/README.html\">README</a>", relpath);
       -        if (haslicense)
       -                fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", relpath);
       -        fputs("</td></tr></table>\n<hr/><div id=\"content\">\n", fp);
       -
       -        return 0;
       -}
       -
       -int
       -writefooter(FILE *fp)
       -{
       -        return !fputs("</div></body>\n</html>", fp);
       -}
       -
        FILE *
        efopen(const char *name, const char *flags)
        {
       @@ -244,6 +211,46 @@ printtimeshort(FILE *fp, const git_time *intime)
                printtimeformat(fp, intime, "%Y-%m-%d %H:%M");
        }
        
       +int
       +writeheader(FILE *fp)
       +{
       +        fputs("<!DOCTYPE HTML>"
       +                "<html dir=\"ltr\" lang=\"en\">\n<head>\n"
       +                "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
       +                "<meta http-equiv=\"Content-Language\" content=\"en\" />\n<title>", fp);
       +        xmlencode(fp, name, strlen(name));
       +        if (description[0])
       +                fputs(" - ", fp);
       +        xmlencode(fp, description, strlen(description));
       +        fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
       +        fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
       +                name, relpath);
       +        fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
       +        fputs("</head>\n<body>\n\n<table><tr><td>", fp);
       +        fprintf(fp, "<a href=\"../%s\"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a>",
       +                relpath, relpath);
       +        fputs("</td><td><h1>", fp);
       +        xmlencode(fp, name, strlen(name));
       +        fputs("</h1><span class=\"desc\">", fp);
       +        xmlencode(fp, description, strlen(description));
       +        fputs("</span></td></tr><tr><td></td><td>\n", fp);
       +        fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);
       +        fprintf(fp, "<a href=\"%sfiles.html\">Files</a>", relpath);
       +        if (hasreadme)
       +                fprintf(fp, " | <a href=\"%sfile/README.html\">README</a>", relpath);
       +        if (haslicense)
       +                fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", relpath);
       +        fputs("</td></tr></table>\n<hr/><div id=\"content\">\n", fp);
       +
       +        return 0;
       +}
       +
       +int
       +writefooter(FILE *fp)
       +{
       +        return !fputs("</div></body>\n</html>", fp);
       +}
       +
        void
        writeblobhtml(FILE *fp, const git_blob *blob)
        {