]> git.armaanb.net Git - stagit.git/blobdiff - stagit.c
Use /usr/local/share
[stagit.git] / stagit.c
index ed6c9323c37204365b6d6c2d724b55f424e68e48..264604eb4fffd984ff7ef47993e7ff0d4b44de84 100644 (file)
--- a/stagit.c
+++ b/stagit.c
@@ -70,6 +70,28 @@ static char lastoidstr[GIT_OID_HEXSZ + 2]; /* id + newline + NUL byte */
 static FILE *rcachefp, *wcachefp;
 static const char *cachefile;
 
+int cp(char fileSource[], char fileDestination[])
+{
+    int c;
+    FILE *stream_R, *stream_W; 
+
+    stream_R = fopen(fileSource, "r");
+    if (stream_R == NULL)
+        return -1;
+    stream_W = fopen(fileDestination, "w");   //create and write to file
+    if (stream_W == NULL)
+     {
+        fclose(stream_R);
+        return -2;
+     }    
+    while ((c = fgetc(stream_R)) != EOF)
+        fputc(c, stream_W);
+    fclose(stream_R);
+    fclose(stream_W);
+
+    return 0;
+}
+
 void
 joinpath(char *buf, size_t bufsiz, const char *path, const char *path2)
 {
@@ -356,7 +378,8 @@ writeheader(FILE *fp, const char *title)
        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);
+       fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.min.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);
@@ -395,17 +418,24 @@ writefooter(FILE *fp)
 }
 
 int
-syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
+call_py(const char *filename, FILE *fp, const char *s, size_t len)
 {
-       // Ruby script for syntax highlighting.
-       FILE *child = popen("./highlight", "w");
+       // 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/stagit/highlight.py", "w");
        if (child == NULL) {
                printf("child is null: %s", strerror(errno));
                exit(1);
        }
-       // Give filename:
+       // 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++) {
@@ -413,12 +443,10 @@ syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
                fprintf(child, "%c", *s);
        }
 
-       // Write returned HTML to the HTML file.
-       char c;
-       while ((c = fgetc(child)) != EOF)
-               fprintf(fp, "%c", c);
-
        pclose(child);
+       fflush(stdout);
+       // Give back STDOUT.
+       dup2(stdout_copy, 1);
        return lc;
 }
 
@@ -429,14 +457,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);
+               lc = call_py(filename, fp, s, len);
        }
 
-       fputs("</div>\n", fp);
-
        return lc;
 }
 
@@ -803,7 +827,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");
        }
@@ -1144,6 +1168,13 @@ main(int argc, char *argv[])
        else
                name = "";
 
+       /* copy css */
+       char cwd[PATH_MAX];
+       strcpy(cwd, getcwd(cwd, sizeof(cwd)));
+       cp("/usr/local/share/stagit/syntax.css", strcat(cwd, "/syntax.css"));
+       strcpy(cwd, getcwd(cwd, sizeof(cwd)));
+       cp("/usr/local/share/stagit/style.min.css", strcat(cwd, "/style.min.css"));
+
        /* strip .git suffix */
        if (!(strippedname = strdup(name)))
                err(1, "strdup");