]> git.armaanb.net Git - stagit.git/blobdiff - stagit.c
Add cachefile for each repo.
[stagit.git] / stagit.c
index 9a8ccd0245b1e55af35fad1dd86f3477ec779e22..7c88263689735963d214b9e9443b3b2f5530bdd4 100644 (file)
--- a/stagit.c
+++ b/stagit.c
@@ -397,12 +397,14 @@ writefooter(FILE *fp)
 int
 syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
 {
+       // Flush HTML-file
+       fflush(fp);
        // Copy STDOUT
        int stdout_copy = dup(1);
        // Redirect STDOUT
        dup2(fileno(fp), 1);
 
-       // Ruby script for syntax highlighting.
+       // Python Pygments script for syntax highlighting.
        FILE *child = popen("./highlight", "w");
        if (child == NULL) {
                printf("child is null: %s", strerror(errno));
@@ -419,6 +421,7 @@ syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
        }
 
        pclose(child);
+       fflush(stdout);
        // Give back STDOUT.
        dup2(stdout_copy, 1);
        return lc;
@@ -431,14 +434,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;
 }
 
@@ -805,7 +804,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");
        }