]> gitweb.ps.run Git - ps-cgit/commitdiff
Merge branch 'lh/embedded'
authorLars Hjemli <hjemli@gmail.com>
Sat, 25 Jul 2009 10:29:22 +0000 (12:29 +0200)
committerLars Hjemli <hjemli@gmail.com>
Sat, 25 Jul 2009 10:29:22 +0000 (12:29 +0200)
Conflicts:
cgitrc.5.txt
ui-shared.c

1  2 
cgit.c
cgit.h
cgitrc.5.txt
ui-shared.c

diff --combined cgit.c
index 513ea125bb196a065a4b1cc24f24cae0f571de52,38f0fdda6c3d76bca1fe7dd0734253b1f9ac4529..2039ab1de53699b6d29a23f1409461386589a227
--- 1/cgit.c
--- 2/cgit.c
+++ b/cgit.c
@@@ -31,8 -31,6 +31,8 @@@ void config_cb(const char *name, const 
                ctx.cfg.favicon = xstrdup(value);
        else if (!strcmp(name, "footer"))
                ctx.cfg.footer = xstrdup(value);
 +      else if (!strcmp(name, "head-include"))
 +              ctx.cfg.head_include = xstrdup(value);
        else if (!strcmp(name, "header"))
                ctx.cfg.header = xstrdup(value);
        else if (!strcmp(name, "logo"))
@@@ -51,6 -49,8 +51,8 @@@
                        ctx.cfg.virtual_root = "";
        } else if (!strcmp(name, "nocache"))
                ctx.cfg.nocache = atoi(value);
+       else if (!strcmp(name, "noheader"))
+               ctx.cfg.noheader = atoi(value);
        else if (!strcmp(name, "snapshots"))
                ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
        else if (!strcmp(name, "enable-index-links"))
@@@ -73,6 -73,8 +75,8 @@@
                ctx.cfg.cache_static_ttl = atoi(value);
        else if (!strcmp(name, "cache-dynamic-ttl"))
                ctx.cfg.cache_dynamic_ttl = atoi(value);
+       else if (!strcmp(name, "embedded"))
+               ctx.cfg.embedded = atoi(value);
        else if (!strcmp(name, "max-message-length"))
                ctx.cfg.max_msg_len = atoi(value);
        else if (!strcmp(name, "max-repodesc-length"))
@@@ -208,7 -210,6 +212,7 @@@ static void prepare_context(struct cgit
        ctx->page.size = 0;
        ctx->page.modified = time(NULL);
        ctx->page.expires = ctx->page.modified;
 +      ctx->page.etag = NULL;
  }
  
  struct refmatch {
@@@ -288,8 -289,6 +292,8 @@@ static int prepare_repo_cmd(struct cgit
        if (get_sha1(ctx->qry.head, sha1)) {
                tmp = xstrdup(ctx->qry.head);
                ctx->qry.head = ctx->repo->defbranch;
 +              ctx->page.status = 404;
 +              ctx->page.statusmsg = "not found";
                cgit_print_http_headers(ctx);
                cgit_print_docstart(ctx);
                cgit_print_pageheader(ctx);
@@@ -434,7 -433,6 +438,7 @@@ static int calc_ttl(
  int main(int argc, const char **argv)
  {
        const char *cgit_config_env = getenv("CGIT_CONFIG");
 +      const char *method = getenv("REQUEST_METHOD");
        const char *path;
        char *qry;
        int err, ttl;
  
        ttl = calc_ttl();
        ctx.page.expires += ttl*60;
 +      if (method && !strcmp(method, "HEAD"))
 +              ctx.cfg.nocache = 1;
        if (ctx.cfg.nocache)
                ctx.cfg.cache_size = 0;
        err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root,
diff --combined cgit.h
index 78b30bace9327dc310dd646fa1ad86bdecd64ce6,ca01705953a489760cc6b625a13919af20e3e0db..8c64efeaa6e7f5698751e202b64765280e3985cf
--- 1/cgit.h
--- 2/cgit.h
+++ b/cgit.h
@@@ -136,7 -136,6 +136,7 @@@ struct cgit_config 
        char *css;
        char *favicon;
        char *footer;
 +      char *head_include;
        char *header;
        char *index_header;
        char *index_info;
        int cache_repo_ttl;
        int cache_root_ttl;
        int cache_static_ttl;
+       int embedded;
        int enable_index_links;
        int enable_log_filecount;
        int enable_log_linecount;
        int max_repodesc_len;
        int max_stats;
        int nocache;
+       int noheader;
        int renamelimit;
        int snapshots;
        int summary_branches;
@@@ -181,10 -182,7 +183,10 @@@ struct cgit_page 
        char *mimetype;
        char *charset;
        char *filename;
 +      char *etag;
        char *title;
 +      int status;
 +      char *statusmsg;
  };
  
  struct cgit_context {
diff --combined cgitrc.5.txt
index 683f3b54853cd398c2159886ebc51dab22eb92a3,771bb7dfcfd5b3783c40c302344d8998ef337a6e..a207fe07aadb9eb2863b1c47165e804772a12e5b
@@@ -1,14 -1,14 +1,14 @@@
 -CGITRC
 -======
 +CGITRC(5)
 +========
  
  
  NAME
  ----
 -      cgitrc - runtime configuration for cgit
 +cgitrc - runtime configuration for cgit
  
  
 -DESCRIPTION
 ------------
 +SYNOPSIS
 +--------
  Cgitrc contains all runtime settings for cgit, including the list of git
  repositories, formatted as a line-separated list of NAME=VALUE pairs. Blank
  lines, and lines starting with '#', are ignored.
  
  GLOBAL SETTINGS
  ---------------
 -agefile
 +agefile::
        Specifies a path, relative to each repository path, which can be used
        to specify the date and time of the youngest commit in the repository.
        The first line in the file is used as input to the "parse_date"
        function in libgit. Recommended timestamp-format is "yyyy-mm-dd
        hh:mm:ss". Default value: "info/web/last-modified".
  
 -cache-root
 +cache-root::
        Path used to store the cgit cache entries. Default value:
        "/var/cache/cgit".
  
 -cache-dynamic-ttl
 +cache-dynamic-ttl::
        Number which specifies the time-to-live, in minutes, for the cached
        version of repository pages accessed without a fixed SHA1. Default
        value: "5".
  
 -cache-repo-ttl
 +cache-repo-ttl::
        Number which specifies the time-to-live, in minutes, for the cached
        version of the repository summary page. Default value: "5".
  
 -cache-root-ttl
 +cache-root-ttl::
        Number which specifies the time-to-live, in minutes, for the cached
        version of the repository index page. Default value: "5".
  
 -cache-size
 +cache-size::
        The maximum number of entries in the cgit cache. Default value: "0"
        (i.e. caching is disabled).
  
 -cache-static-ttl
 +cache-static-ttl::
        Number which specifies the time-to-live, in minutes, for the cached
        version of repository pages accessed with a fixed SHA1. Default value:
        "5".
  
 -clone-prefix
 +clone-prefix::
        Space-separated list of common prefixes which, when combined with a
        repository url, generates valid clone urls for the repository. This
        setting is only used if `repo.clone-url` is unspecified. Default value:
        none.
  
 -css
 +css::
        Url which specifies the css document to include in all cgit pages.
        Default value: "/cgit.css".
  
 -embedded
++embedded::
+       Flag which, when set to "1", will make cgit generate a html fragment
+       suitable for embedding in other html pages. Default value: none. See
+       also: "noheader".
+       
 -enable-index-links
 +enable-index-links::
        Flag which, when set to "1", will make cgit generate extra links for
        each repo in the repository index (specifically, to the "summary",
        "commit" and "tree" pages). Default value: "0".
  
 -enable-log-filecount
 +enable-log-filecount::
        Flag which, when set to "1", will make cgit print the number of
        modified files for each commit on the repository log page. Default
        value: "0".
  
 -enable-log-linecount
 +enable-log-linecount::
        Flag which, when set to "1", will make cgit print the number of added
        and removed lines for each commit on the repository log page. Default
        value: "0".
  
 -favicon
 +favicon::
        Url used as link to a shortcut icon for cgit. If specified, it is
        suggested to use the value "/favicon.ico" since certain browsers will
        ignore other values. Default value: none.
  
 -footer
 +footer::
        The content of the file specified with this option will be included
        verbatim at the bottom of all pages (i.e. it replaces the standard
        "generated by..." message. Default value: none.
  
 -header
 +head-include::
 +      The content of the file specified with this option will be included
 +      verbatim in the html HEAD section on all pages. Default value: none.
 +
 +header::
        The content of the file specified with this option will be included
        verbatim at the top of all pages. Default value: none.
  
 -include
 +include::
        Name of a configfile to include before the rest of the current config-
        file is parsed. Default value: none.
  
 -index-header
 +index-header::
        The content of the file specified with this option will be included
        verbatim above the repository index. This setting is deprecated, and
        will not be supported by cgit-1.0 (use root-readme instead). Default
        value: none.
  
 -index-info
 +index-info::
        The content of the file specified with this option will be included
        verbatim below the heading on the repository index page. This setting
        is deprecated, and will not be supported by cgit-1.0 (use root-desc
        instead). Default value: none.
  
 -local-time
 +local-time::
        Flag which, if set to "1", makes cgit print commit and tag times in the
        servers timezone. Default value: "0".
  
 -logo
 +logo::
        Url which specifies the source of an image which will be used as a logo
        on all cgit pages.
  
 -logo-link
 +logo-link::
        Url loaded when clicking on the cgit logo image. If unspecified the
        calculated url of the repository index page will be used. Default
        value: none.
  
 -max-commit-count
 +max-commit-count::
        Specifies the number of entries to list per page in "log" view. Default
        value: "50".
  
 -max-message-length
 +max-message-length::
        Specifies the maximum number of commit message characters to display in
        "log" view. Default value: "80".
  
 -max-repo-count
 +max-repo-count::
        Specifies the number of entries to list per page on the repository
        index page. Default value: "50".
  
 -max-repodesc-length
 +max-repodesc-length::
        Specifies the maximum number of repo description characters to display
        on the repository index page. Default value: "80".
  
 -max-stats
 +max-stats::
        Set the default maximum statistics period. Valid values are "week",
        "month", "quarter" and "year". If unspecified, statistics are
        disabled. Default value: none. See also: "repo.max-stats".
  
 -module-link
 +module-link::
        Text which will be used as the formatstring for a hyperlink when a
        submodule is printed in a directory listing. The arguments for the
        formatstring are the path and SHA1 of the submodule commit. Default
        value: "./?repo=%s&page=commit&id=%s"
  
 -nocache
 +nocache::
        If set to the value "1" caching will be disabled. This settings is
        deprecated, and will not be honored starting with cgit-1.0. Default
        value: "0".
  
 -noheader
++noheader::
+       Flag which, when set to "1", will make cgit omit the standard header
+       on all pages. Default value: none. See also: "embedded".
 -renamelimit
 +renamelimit::
        Maximum number of files to consider when detecting renames. The value
         "-1" uses the compiletime value in git (for further info, look at
          `man git-diff`). Default value: "-1".
  
 -repo.group
 +repo.group::
        A value for the current repository group, which all repositories
        specified after this setting will inherit. Default value: none.
  
 -robots
 +robots::
        Text used as content for the "robots" meta-tag. Default value:
        "index, nofollow".
  
 -root-desc
 +root-desc::
        Text printed below the heading on the repository index page. Default
        value: "a fast webinterface for the git dscm".
  
 -root-readme:
 +root-readme::
        The content of the file specified with this option will be included
        verbatim below the "about" link on the repository index page. Default
        value: none.
  
 -root-title
 +root-title::
        Text printed as heading on the repository index page. Default value:
        "Git Repository Browser".
  
 -snapshots
 +snapshots::
        Text which specifies the default (and allowed) set of snapshot formats
        supported by cgit. The value is a space-separated list of zero or more
        of the following values:
                "zip"           zip-file
        Default value: none.
  
 -summary-branches
 +summary-branches::
        Specifies the number of branches to display in the repository "summary"
        view. Default value: "10".
  
 -summary-log
 +summary-log::
        Specifies the number of log entries to display in the repository
        "summary" view. Default value: "10".
  
 -summary-tags
 +summary-tags::
        Specifies the number of tags to display in the repository "summary"
        view. Default value: "10".
  
 -virtual-root
 +virtual-root::
        Url which, if specified, will be used as root for all cgit links. It
        will also cause cgit to generate 'virtual urls', i.e. urls like
        '/cgit/tree/README' as opposed to '?r=cgit&p=tree&path=README'. Default
  
  REPOSITORY SETTINGS
  -------------------
 -repo.clone-url
 +repo.clone-url::
        A list of space-separated urls which can be used to clone this repo.
        Default value: none.
  
 -repo.defbranch
 +repo.defbranch::
        The name of the default branch for this repository. If no such branch
        exists in the repository, the first branch name (when sorted) is used
        as default instead. Default value: "master".
  
 -repo.desc
 +repo.desc::
        The value to show as repository description. Default value: none.
  
 -repo.enable-log-filecount
 +repo.enable-log-filecount::
        A flag which can be used to disable the global setting
        `enable-log-filecount'. Default value: none.
  
 -repo.enable-log-linecount
 +repo.enable-log-linecount::
        A flag which can be used to disable the global setting
        `enable-log-linecount'. Default value: none.
  
 -repo.max-stats
 +repo.max-stats::
        Override the default maximum statistics period. Valid values are equal
        to the values specified for the global "max-stats" setting. Default
        value: none.
  
 -repo.name
 +repo.name::
        The value to show as repository name. Default value: <repo.url>.
  
 -repo.owner
 +repo.owner::
        A value used to identify the owner of the repository. Default value:
        none.
  
 -repo.path
 +repo.path::
        An absolute path to the repository directory. For non-bare repositories
        this is the .git-directory. Default value: none.
  
 -repo.readme
 +repo.readme::
        A path (relative to <repo.path>) which specifies a file to include
        verbatim as the "About" page for this repo. Default value: none.
  
 -repo.snapshots
 +repo.snapshots::
        A mask of allowed snapshot-formats for this repo, restricted by the
        "snapshots" global setting. Default value: <snapshots>.
  
 -repo.url
 +repo.url::
        The relative url used to access the repository. This must be the first
        setting specified for each repo. Default value: none.
  
  EXAMPLE CGITRC FILE
  -------------------
  
 +....
  # Enable caching of up to 1000 output entriess
  cache-size=1000
  
@@@ -373,7 -377,6 +382,7 @@@ repo.enable-log-linecount=
  
  # Restrict the max statistics period for this repo
  repo.max-stats=month
 +....
  
  
  BUGS
diff --combined ui-shared.c
index 66d5b8220de122d69a8398119592f09114c83731,5e03a7a52ef7697f039b684f2fc1779fecbb9270..015c52b6c044f2a280ca7259c68c6d6f5040711b
@@@ -34,17 -34,6 +34,17 @@@ void cgit_print_error(char *msg
        html("</div>\n");
  }
  
 +char *cgit_httpscheme()
 +{
 +      char *https;
 +
 +      https = getenv("HTTPS");
 +      if (https != NULL && strcmp(https, "on") == 0)
 +              return "https://";
 +      else
 +              return "http://";
 +}
 +
  char *cgit_hosturl()
  {
        char *host, *port;
@@@ -467,10 -456,9 +467,13 @@@ void cgit_print_age(time_t t, time_t ma
  
  void cgit_print_http_headers(struct cgit_context *ctx)
  {
 +      const char *method = getenv("REQUEST_METHOD");
 +
+       if (ctx->cfg.embedded)
+               return;
 +      if (ctx->page.status)
 +              htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg);
        if (ctx->page.mimetype && ctx->page.charset)
                htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
                      ctx->page.charset);
                      ctx->page.filename);
        htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
        htmlf("Expires: %s\n", http_date(ctx->page.expires));
 +      if (ctx->page.etag)
 +              htmlf("ETag: \"%s\"\n", ctx->page.etag);
        html("\n");
 +      if (method && !strcmp(method, "HEAD"))
 +              exit(0);
  }
  
  void cgit_print_docstart(struct cgit_context *ctx)
  {
+       if (ctx->cfg.embedded)
+               return;
        char *host = cgit_hosturl();
        html(cgit_doctype);
        html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
                html("'/>\n");
        }
        if (host && ctx->repo) {
 -              html("<link rel='alternate' title='Atom feed' href='http://");
 +              html("<link rel='alternate' title='Atom feed' href='");
 +              html(cgit_httpscheme());
                html_attr(cgit_hosturl());
                html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path,
                                       fmt("h=%s", ctx->qry.head)));
 -              html("' type='application/atom+xml'/>");
 +              html("' type='application/atom+xml'/>\n");
        }
 +      if (ctx->cfg.head_include)
 +              html_include(ctx->cfg.head_include);
        html("</head>\n");
        html("<body>\n");
        if (ctx->cfg.header)
@@@ -537,6 -521,9 +543,9 @@@ void cgit_print_docend(
                cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time);
                html("</div>\n");
        }
+       html("</div>");
+       if (ctx.cfg.embedded)
+               return;
        html("</body>\n</html>\n");
  }
  
@@@ -624,13 -611,8 +633,8 @@@ char *hc(struct cgit_cmd *cmd, const ch
        return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active");
  }
  
void cgit_print_pageheader(struct cgit_context *ctx)
static void print_header(struct cgit_context *ctx)
  {
-       struct cgit_cmd *cmd = cgit_get_cmd(ctx);
-       if (!cmd && ctx->repo)
-               fallback_cmd = "summary";
        html("<table id='header'>\n");
        html("<tr>\n");
        html("<td class='logo' rowspan='2'><a href='");
                        html_include(ctx->cfg.index_info);
        }
        html("</td></tr></table>\n");
+ }
+ void cgit_print_pageheader(struct cgit_context *ctx)
+ {
+       struct cgit_cmd *cmd = cgit_get_cmd(ctx);
+       if (!cmd && ctx->repo)
+               fallback_cmd = "summary";
+       html("<div id='cgit'>");
+       if (!ctx->cfg.noheader)
+               print_header(ctx);
  
        html("<table class='tabs'><tr><td>\n");
        if (ctx->repo) {