summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile4
-rw-r--r--cgit.c2
-rw-r--r--shared.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index faf7b98..c9be8fa 100644
--- a/Makefile
+++ b/Makefile
@@ -21,87 +21,89 @@ GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
21 21
22 22
23EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto 23EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
24OBJECTS = 24OBJECTS =
25OBJECTS += cache.o 25OBJECTS += cache.o
26OBJECTS += cgit.o 26OBJECTS += cgit.o
27OBJECTS += cmd.o 27OBJECTS += cmd.o
28OBJECTS += html.o 28OBJECTS += html.o
29OBJECTS += parsing.o 29OBJECTS += parsing.o
30OBJECTS += shared.o 30OBJECTS += shared.o
31OBJECTS += ui-blob.o 31OBJECTS += ui-blob.o
32OBJECTS += ui-commit.o 32OBJECTS += ui-commit.o
33OBJECTS += ui-diff.o 33OBJECTS += ui-diff.o
34OBJECTS += ui-log.o 34OBJECTS += ui-log.o
35OBJECTS += ui-patch.o 35OBJECTS += ui-patch.o
36OBJECTS += ui-refs.o 36OBJECTS += ui-refs.o
37OBJECTS += ui-repolist.o 37OBJECTS += ui-repolist.o
38OBJECTS += ui-shared.o 38OBJECTS += ui-shared.o
39OBJECTS += ui-snapshot.o 39OBJECTS += ui-snapshot.o
40OBJECTS += ui-summary.o 40OBJECTS += ui-summary.o
41OBJECTS += ui-tag.o 41OBJECTS += ui-tag.o
42OBJECTS += ui-tree.o 42OBJECTS += ui-tree.o
43 43
44ifdef NEEDS_LIBICONV 44ifdef NEEDS_LIBICONV
45 EXTLIBS += -liconv 45 EXTLIBS += -liconv
46endif 46endif
47 47
48 48
49.PHONY: all git test install clean distclean emptycache force-version get-git 49.PHONY: all git test install clean distclean emptycache force-version get-git
50 50
51all: cgit git 51all: cgit git
52 52
53VERSION: force-version 53VERSION: force-version
54 @./gen-version.sh "$(CGIT_VERSION)" 54 @./gen-version.sh "$(CGIT_VERSION)"
55-include VERSION 55-include VERSION
56 56
57 57
58CFLAGS += -g -Wall -Igit 58CFLAGS += -g -Wall -Igit
59CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 59CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
60CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 60CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
61CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 61CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
62CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 62CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
63CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 63CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
64 64
65 65
66cgit: $(OBJECTS) 66cgit: $(OBJECTS)
67 $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 67 $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
68 68
69$(OBJECTS): git/xdiff/lib.a git/libgit.a VERSION 69$(OBJECTS): git/xdiff/lib.a git/libgit.a
70
71cgit.o: VERSION
70 72
71-include $(OBJECTS:.o=.d) 73-include $(OBJECTS:.o=.d)
72 74
73git/xdiff/lib.a: | git 75git/xdiff/lib.a: | git
74 76
75git/libgit.a: | git 77git/libgit.a: | git
76 78
77git: 79git:
78 cd git && $(MAKE) xdiff/lib.a 80 cd git && $(MAKE) xdiff/lib.a
79 cd git && $(MAKE) libgit.a 81 cd git && $(MAKE) libgit.a
80 82
81test: all 83test: all
82 $(MAKE) -C tests 84 $(MAKE) -C tests
83 85
84install: all 86install: all
85 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 87 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
86 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 88 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
87 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 89 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
88 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 90 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
89 91
90uninstall: 92uninstall:
91 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 93 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
92 rm -f $(CGIT_SCRIPT_PATH)/cgit.css 94 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
93 rm -f $(CGIT_SCRIPT_PATH)/cgit.png 95 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
94 96
95clean: 97clean:
96 rm -f cgit VERSION *.o *.d 98 rm -f cgit VERSION *.o *.d
97 cd git && $(MAKE) clean 99 cd git && $(MAKE) clean
98 100
99distclean: clean 101distclean: clean
100 git clean -d -x 102 git clean -d -x
101 cd git && git clean -d -x 103 cd git && git clean -d -x
102 104
103emptycache: 105emptycache:
104 rm -rf $(DESTDIR)$(CACHE_ROOT)/* 106 rm -rf $(DESTDIR)$(CACHE_ROOT)/*
105 107
106get-git: 108get-git:
107 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 109 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git
diff --git a/cgit.c b/cgit.c
index b3dd119..3943a0f 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,60 +1,62 @@
1/* cgit.c: cgi for the git scm 1/* cgit.c: cgi for the git scm
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10#include "cmd.h" 10#include "cmd.h"
11#include "ui-shared.h" 11#include "ui-shared.h"
12 12
13const char *cgit_version = CGIT_VERSION;
14
13void config_cb(const char *name, const char *value) 15void config_cb(const char *name, const char *value)
14{ 16{
15 if (!strcmp(name, "root-title")) 17 if (!strcmp(name, "root-title"))
16 ctx.cfg.root_title = xstrdup(value); 18 ctx.cfg.root_title = xstrdup(value);
17 else if (!strcmp(name, "css")) 19 else if (!strcmp(name, "css"))
18 ctx.cfg.css = xstrdup(value); 20 ctx.cfg.css = xstrdup(value);
19 else if (!strcmp(name, "logo")) 21 else if (!strcmp(name, "logo"))
20 ctx.cfg.logo = xstrdup(value); 22 ctx.cfg.logo = xstrdup(value);
21 else if (!strcmp(name, "index-header")) 23 else if (!strcmp(name, "index-header"))
22 ctx.cfg.index_header = xstrdup(value); 24 ctx.cfg.index_header = xstrdup(value);
23 else if (!strcmp(name, "index-info")) 25 else if (!strcmp(name, "index-info"))
24 ctx.cfg.index_info = xstrdup(value); 26 ctx.cfg.index_info = xstrdup(value);
25 else if (!strcmp(name, "logo-link")) 27 else if (!strcmp(name, "logo-link"))
26 ctx.cfg.logo_link = xstrdup(value); 28 ctx.cfg.logo_link = xstrdup(value);
27 else if (!strcmp(name, "module-link")) 29 else if (!strcmp(name, "module-link"))
28 ctx.cfg.module_link = xstrdup(value); 30 ctx.cfg.module_link = xstrdup(value);
29 else if (!strcmp(name, "virtual-root")) { 31 else if (!strcmp(name, "virtual-root")) {
30 ctx.cfg.virtual_root = trim_end(value, '/'); 32 ctx.cfg.virtual_root = trim_end(value, '/');
31 if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) 33 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
32 ctx.cfg.virtual_root = ""; 34 ctx.cfg.virtual_root = "";
33 } else if (!strcmp(name, "nocache")) 35 } else if (!strcmp(name, "nocache"))
34 ctx.cfg.nocache = atoi(value); 36 ctx.cfg.nocache = atoi(value);
35 else if (!strcmp(name, "snapshots")) 37 else if (!strcmp(name, "snapshots"))
36 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); 38 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
37 else if (!strcmp(name, "enable-index-links")) 39 else if (!strcmp(name, "enable-index-links"))
38 ctx.cfg.enable_index_links = atoi(value); 40 ctx.cfg.enable_index_links = atoi(value);
39 else if (!strcmp(name, "enable-log-filecount")) 41 else if (!strcmp(name, "enable-log-filecount"))
40 ctx.cfg.enable_log_filecount = atoi(value); 42 ctx.cfg.enable_log_filecount = atoi(value);
41 else if (!strcmp(name, "enable-log-linecount")) 43 else if (!strcmp(name, "enable-log-linecount"))
42 ctx.cfg.enable_log_linecount = atoi(value); 44 ctx.cfg.enable_log_linecount = atoi(value);
43 else if (!strcmp(name, "cache-root")) 45 else if (!strcmp(name, "cache-root"))
44 ctx.cfg.cache_root = xstrdup(value); 46 ctx.cfg.cache_root = xstrdup(value);
45 else if (!strcmp(name, "cache-root-ttl")) 47 else if (!strcmp(name, "cache-root-ttl"))
46 ctx.cfg.cache_root_ttl = atoi(value); 48 ctx.cfg.cache_root_ttl = atoi(value);
47 else if (!strcmp(name, "cache-repo-ttl")) 49 else if (!strcmp(name, "cache-repo-ttl"))
48 ctx.cfg.cache_repo_ttl = atoi(value); 50 ctx.cfg.cache_repo_ttl = atoi(value);
49 else if (!strcmp(name, "cache-static-ttl")) 51 else if (!strcmp(name, "cache-static-ttl"))
50 ctx.cfg.cache_static_ttl = atoi(value); 52 ctx.cfg.cache_static_ttl = atoi(value);
51 else if (!strcmp(name, "cache-dynamic-ttl")) 53 else if (!strcmp(name, "cache-dynamic-ttl"))
52 ctx.cfg.cache_dynamic_ttl = atoi(value); 54 ctx.cfg.cache_dynamic_ttl = atoi(value);
53 else if (!strcmp(name, "max-message-length")) 55 else if (!strcmp(name, "max-message-length"))
54 ctx.cfg.max_msg_len = atoi(value); 56 ctx.cfg.max_msg_len = atoi(value);
55 else if (!strcmp(name, "max-repodesc-length")) 57 else if (!strcmp(name, "max-repodesc-length"))
56 ctx.cfg.max_repodesc_len = atoi(value); 58 ctx.cfg.max_repodesc_len = atoi(value);
57 else if (!strcmp(name, "max-commit-count")) 59 else if (!strcmp(name, "max-commit-count"))
58 ctx.cfg.max_commit_count = atoi(value); 60 ctx.cfg.max_commit_count = atoi(value);
59 else if (!strcmp(name, "summary-log")) 61 else if (!strcmp(name, "summary-log"))
60 ctx.cfg.summary_log = atoi(value); 62 ctx.cfg.summary_log = atoi(value);
diff --git a/shared.c b/shared.c
index cd60da5..48002ac 100644
--- a/shared.c
+++ b/shared.c
@@ -1,64 +1,62 @@
1/* shared.c: global vars + some callback functions 1/* shared.c: global vars + some callback functions
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11struct cgit_repolist cgit_repolist; 11struct cgit_repolist cgit_repolist;
12struct cgit_context ctx; 12struct cgit_context ctx;
13int cgit_cmd; 13int cgit_cmd;
14 14
15const char *cgit_version = CGIT_VERSION;
16
17int chk_zero(int result, char *msg) 15int chk_zero(int result, char *msg)
18{ 16{
19 if (result != 0) 17 if (result != 0)
20 die("%s: %s", msg, strerror(errno)); 18 die("%s: %s", msg, strerror(errno));
21 return result; 19 return result;
22} 20}
23 21
24int chk_positive(int result, char *msg) 22int chk_positive(int result, char *msg)
25{ 23{
26 if (result <= 0) 24 if (result <= 0)
27 die("%s: %s", msg, strerror(errno)); 25 die("%s: %s", msg, strerror(errno));
28 return result; 26 return result;
29} 27}
30 28
31int chk_non_negative(int result, char *msg) 29int chk_non_negative(int result, char *msg)
32{ 30{
33 if (result < 0) 31 if (result < 0)
34 die("%s: %s",msg, strerror(errno)); 32 die("%s: %s",msg, strerror(errno));
35 return result; 33 return result;
36} 34}
37 35
38struct cgit_repo *cgit_add_repo(const char *url) 36struct cgit_repo *cgit_add_repo(const char *url)
39{ 37{
40 struct cgit_repo *ret; 38 struct cgit_repo *ret;
41 39
42 if (++cgit_repolist.count > cgit_repolist.length) { 40 if (++cgit_repolist.count > cgit_repolist.length) {
43 if (cgit_repolist.length == 0) 41 if (cgit_repolist.length == 0)
44 cgit_repolist.length = 8; 42 cgit_repolist.length = 8;
45 else 43 else
46 cgit_repolist.length *= 2; 44 cgit_repolist.length *= 2;
47 cgit_repolist.repos = xrealloc(cgit_repolist.repos, 45 cgit_repolist.repos = xrealloc(cgit_repolist.repos,
48 cgit_repolist.length * 46 cgit_repolist.length *
49 sizeof(struct cgit_repo)); 47 sizeof(struct cgit_repo));
50 } 48 }
51 49
52 ret = &cgit_repolist.repos[cgit_repolist.count-1]; 50 ret = &cgit_repolist.repos[cgit_repolist.count-1];
53 ret->url = trim_end(url, '/'); 51 ret->url = trim_end(url, '/');
54 ret->name = ret->url; 52 ret->name = ret->url;
55 ret->path = NULL; 53 ret->path = NULL;
56 ret->desc = "[no description]"; 54 ret->desc = "[no description]";
57 ret->owner = NULL; 55 ret->owner = NULL;
58 ret->group = ctx.cfg.repo_group; 56 ret->group = ctx.cfg.repo_group;
59 ret->defbranch = "master"; 57 ret->defbranch = "master";
60 ret->snapshots = ctx.cfg.snapshots; 58 ret->snapshots = ctx.cfg.snapshots;
61 ret->enable_log_filecount = ctx.cfg.enable_log_filecount; 59 ret->enable_log_filecount = ctx.cfg.enable_log_filecount;
62 ret->enable_log_linecount = ctx.cfg.enable_log_linecount; 60 ret->enable_log_linecount = ctx.cfg.enable_log_linecount;
63 ret->module_link = ctx.cfg.module_link; 61 ret->module_link = ctx.cfg.module_link;
64 ret->readme = NULL; 62 ret->readme = NULL;