| tuse relative url in header, escape name and description too - stagit - static … | |
| git clone git://src.adamsgaard.dk/stagit | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 2ab268d5b1c6da916e3e03d547e39711c2f4fd87 | |
| parent 6414c8b21262f201165cfa5b537b137821d18f46 | |
| Author: Hiltjo Posthuma <[email protected]> | |
| 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(-) | |
| --- | |
| diff --git a/urmoms.c b/urmoms.c | |
| t@@ -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; charse… | |
| - "<meta http-equiv=\"Content-Language\" content=\"en\" />\n", f… | |
| - fprintf(fp, "<title>%s%s%s</title>\n", name, description[0] ? " - " : … | |
| - fprintf(fp, "<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.pn… | |
| - fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" tit… | |
| - name, relpath); | |
| - fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle… | |
| - fputs("</head>\n<body>\n\n", fp); | |
| - fprintf(fp, "<table><tr><td><img src=\"%slogo.png\" alt=\"\" width=\"3… | |
| - "<td><h1>%s</h1><span class=\"desc\">%s</span></td></tr><tr><t… | |
| - 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>", re… | |
| - if (haslicense) | |
| - fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", … | |
| - 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) | |
| { | |
| t@@ -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; charse… | |
| + "<meta http-equiv=\"Content-Language\" content=\"en\" />\n<tit… | |
| + 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=\"%s… | |
| + fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" tit… | |
| + name, relpath); | |
| + fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle… | |
| + fputs("</head>\n<body>\n\n<table><tr><td>", fp); | |
| + fprintf(fp, "<a href=\"../%s\"><img src=\"%slogo.png\" alt=\"\" width=… | |
| + 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>", re… | |
| + if (haslicense) | |
| + fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", … | |
| + 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) | |
| { |