]> gitweb.ps.run Git - ps-cgit/blobdiff - cgit.h
Cleanup handling of environment variables
[ps-cgit] / cgit.h
diff --git a/cgit.h b/cgit.h
index b8557ace3912b4b62c59eb709fc37dea2f1f506c..893231df84f091ad5e53f316d94d01205480e35d 100644 (file)
--- a/cgit.h
+++ b/cgit.h
@@ -74,6 +74,7 @@ struct cgit_repo {
        int enable_log_linecount;
        int max_stats;
        time_t mtime;
+       struct cgit_filter *about_filter;
        struct cgit_filter *commit_filter;
        struct cgit_filter *source_filter;
 };
@@ -188,6 +189,7 @@ struct cgit_config {
        int summary_log;
        int summary_tags;
        struct string_list mimetypes;
+       struct cgit_filter *about_filter;
        struct cgit_filter *commit_filter;
        struct cgit_filter *source_filter;
 };
@@ -205,7 +207,20 @@ struct cgit_page {
        char *statusmsg;
 };
 
+struct cgit_environment {
+       char *cgit_config;
+       char *http_host;
+       char *https;
+       char *path_info;
+       char *query_string;
+       char *request_method;
+       char *script_name;
+       char *server_name;
+       char *server_port;
+};
+
 struct cgit_context {
+       struct cgit_environment env;
        struct cgit_query qry;
        struct cgit_config cfg;
        struct cgit_repo *repo;