]> gitweb.ps.run Git - ps-cgit/blobdiff - shared.c
Use TTL-settings even in nocache mode
[ps-cgit] / shared.c
index 18b795b6cdec641b6e429bf9ba4ca6a274567488..e4595fabe0cd2f1650fa1566adfb67c1568b60e3 100644 (file)
--- a/shared.c
+++ b/shared.c
@@ -36,6 +36,7 @@ char *cgit_querystring  = NULL;
 char *cgit_query_repo   = NULL;
 char *cgit_query_page   = NULL;
 char *cgit_query_head   = NULL;
+char *cgit_query_search = NULL;
 char *cgit_query_sha1   = NULL;
 char *cgit_query_sha2   = NULL;
 int   cgit_query_ofs    = 0;
@@ -86,6 +87,8 @@ void cgit_querystring_cb(const char *name, const char *value)
                cgit_query_repo = xstrdup(value);
        } else if (!strcmp(name, "p")) {
                cgit_query_page = xstrdup(value);
+       } else if (!strcmp(name, "q")) {
+               cgit_query_search = xstrdup(value);
        } else if (!strcmp(name, "h")) {
                cgit_query_head = xstrdup(value);
                cgit_query_has_symref = 1;
@@ -110,3 +113,16 @@ void *cgit_free_commitinfo(struct commitinfo *info)
        free(info);
        return NULL;
 }
+
+int hextoint(char c)
+{
+       if (c >= 'a' && c <= 'f')
+               return 10 + c - 'a';
+       else if (c >= 'A' && c <= 'F')
+               return 10 + c - 'A';
+       else if (c >= '0' && c <= '9')
+               return c - '0';
+       else
+               return -1;
+}
+