]> git.armaanb.net Git - stagit.git/blobdiff - stagit.c
simplify/shorten pledge stub
[stagit.git] / stagit.c
index 3b8913f8aef6407b3cade30e040d54106b576410..c3693c70d769c8a428f8400d009e2f546a293864 100644 (file)
--- a/stagit.c
+++ b/stagit.c
@@ -57,7 +57,7 @@ static const char *relpath = "";
 static const char *repodir;
 
 static char *name = "";
-static char *strippedname;
+static char *strippedname = "";
 static char description[255];
 static char cloneurl[1024];
 static int haslicense, hasreadme, hassubmodules;
@@ -69,11 +69,7 @@ static FILE *rcachefp, *wcachefp;
 static const char *cachefile;
 
 #ifndef USE_PLEDGE
-int
-pledge(const char *promises, const char *paths[])
-{
-       return 0;
-}
+#define pledge(p1,p2) 0
 #endif
 
 void
@@ -329,7 +325,7 @@ void
 writeheader(FILE *fp, const char *title)
 {
        fputs("<!DOCTYPE html>\n"
-               "<html dir=\"ltr\" lang=\"en\">\n<head>\n"
+               "<html>\n<head>\n"
                "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
                "<title>", fp);
        xmlencode(fp, title, strlen(title));
@@ -790,7 +786,7 @@ filemode(git_filemode_t m)
 }
 
 int
-writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path)
+writefilestree(FILE *fp, git_tree *tree, const char *path)
 {
        const git_tree_entry *entry = NULL;
        git_submodule *module = NULL;
@@ -819,7 +815,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path)
                                break;
                        case GIT_OBJ_TREE:
                                /* NOTE: recurses */
-                               ret = writefilestree(fp, (git_tree *)obj, branch,
+                               ret = writefilestree(fp, (git_tree *)obj,
                                                     entrypath);
                                git_object_free(obj);
                                if (ret)
@@ -856,7 +852,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path)
 }
 
 int
-writefiles(FILE *fp, const git_oid *id, const char *branch)
+writefiles(FILE *fp, const git_oid *id)
 {
        git_tree *tree = NULL;
        git_commit *commit = NULL;
@@ -868,7 +864,7 @@ writefiles(FILE *fp, const git_oid *id, const char *branch)
 
        if (!git_commit_lookup(&commit, repo, id) &&
            !git_commit_tree(&tree, commit))
-               ret = writefilestree(fp, tree, branch, "");
+               ret = writefilestree(fp, tree, "");
 
        fputs("</tbody></table>", fp);
 
@@ -1153,7 +1149,7 @@ main(int argc, char *argv[])
        fp = efopen("files.html", "w");
        writeheader(fp, "Files");
        if (head)
-               writefiles(fp, head, "HEAD");
+               writefiles(fp, head);
        writefooter(fp);
        fclose(fp);