]> git.armaanb.net Git - stagit.git/blobdiff - stagit.c
Update .gitignore
[stagit.git] / stagit.c
index b3f2e161c71a7630b2c26fa0779483ac6eac7cdb..fdcfc0a920b77d414e5b989c7392bbeaaa29d092 100644 (file)
--- a/stagit.c
+++ b/stagit.c
@@ -357,6 +357,7 @@ writeheader(FILE *fp, const char *title)
        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);
+       fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%ssyntax.css\" />\n", relpath);
        fputs("</head>\n<body>\n<table><tr><td>", fp);
        fprintf(fp, "<a href=\"../%s\"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a>",
                relpath, relpath);
@@ -397,24 +398,33 @@ writefooter(FILE *fp)
 int
 syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
 {
-       // Ruby script for syntax highlighting.
-       FILE *child = popen("./highlight", "w");
-       // Give filename:
+       // Flush HTML-file
+       fflush(fp);
+       // Copy STDOUT
+       int stdout_copy = dup(1);
+       // Redirect STDOUT
+       dup2(fileno(fp), 1);
+
+       // Python Pygments script for syntax highlighting.
+       FILE *child = popen("/usr/local/share/doc/stagit/highlight.py", "w");
+       if (child == NULL) {
+               printf("child is null: %s", strerror(errno));
+               exit(1);
+       }
+       // Give filename through STDIN:
        fprintf(child, "%s\n", filename);
-       // Give code to highlight:
+       // Give code to highlight through STDIN:
        int lc;
        size_t i;
        for (i = 0; *s && i < len; s++, i++) {
                if (*s == '\n') lc++;
-               fputc(*s, child);
+               fprintf(child, "%c", *s);
        }
 
-       // Write returned HTML to the HTML file.
-       char c;
-       while ((c = fgetc(child)) != EOF)
-               fputc(c, fp);
-
        pclose(child);
+       fflush(stdout);
+       // Give back STDOUT.
+       dup2(stdout_copy, 1);
        return lc;
 }
 
@@ -425,14 +435,10 @@ writeblobhtml(const char *filename, FILE *fp, const git_blob *blob)
        const char *s = git_blob_rawcontent(blob);
        git_off_t len = git_blob_rawsize(blob);
 
-       fputs("<div id=\"blob\">\n", fp);
-
        if (len > 0) {
                lc = syntax_highlight(filename, fp, s, len);
        }
 
-       fputs("</div>\n", fp);
-
        return lc;
 }
 
@@ -799,7 +805,7 @@ writeblob(git_object *obj, const char *fpath, const char *filename, git_off_t fi
        if (git_blob_is_binary((git_blob *)obj)) {
                fputs("<p>Binary file.</p>\n", fp);
        } else {
-               lc = writeblobhtml(fpath, fp, (git_blob *)obj);
+               lc = writeblobhtml(filename, fp, (git_blob *)obj);
                if (ferror(fp))
                        err(1, "fwrite");
        }
@@ -1253,6 +1259,8 @@ main(int argc, char *argv[])
                writefiles(fp, head);
        writefooter(fp);
        fclose(fp);
+       system("cp /usr/local/share/doc/stagit/style.css .");
+       system("cp /usr/local/share/doc/stagit/syntax.css .");
 
        /* summary page with branches and tags */
        fp = efopen("refs.html", "w");