diff options
-rw-r--r-- | Makefile | 66 | ||||
-rw-r--r-- | cgit.css | 14 | ||||
-rw-r--r-- | cgitrc.5.txt | 10 | ||||
m--------- | git | 0 | ||||
-rw-r--r-- | ui-stats.c | 2 |
5 files changed, 77 insertions, 15 deletions
@@ -4,10 +4,22 @@ CGIT_SCRIPT_PATH = /var/www/htdocs/cgit | |||
4 | CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH) | 4 | CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH) |
5 | CGIT_CONFIG = /etc/cgitrc | 5 | CGIT_CONFIG = /etc/cgitrc |
6 | CACHE_ROOT = /var/cache/cgit | 6 | CACHE_ROOT = /var/cache/cgit |
7 | prefix = /usr | ||
8 | libdir = $(prefix)/lib | ||
9 | filterdir = $(libdir)/cgit/filters | ||
10 | docdir = $(prefix)/share/doc/cgit | ||
11 | htmldir = $(docdir) | ||
12 | pdfdir = $(docdir) | ||
13 | mandir = $(prefix)/share/man | ||
7 | SHA1_HEADER = <openssl/sha.h> | 14 | SHA1_HEADER = <openssl/sha.h> |
8 | GIT_VER = 1.7.3 | 15 | GIT_VER = 1.7.4 |
9 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 | 16 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 |
10 | INSTALL = install | 17 | INSTALL = install |
18 | MAN5_TXT = $(wildcard *.5.txt) | ||
19 | MAN_TXT = $(MAN5_TXT) | ||
20 | DOC_MAN5 = $(patsubst %.txt,%,$(MAN5_TXT)) | ||
21 | DOC_HTML = $(patsubst %.txt,%.html,$(MAN_TXT)) | ||
22 | DOC_PDF = $(patsubst %.txt,%.pdf,$(MAN_TXT)) | ||
11 | 23 | ||
12 | # Define NO_STRCASESTR if you don't have strcasestr. | 24 | # Define NO_STRCASESTR if you don't have strcasestr. |
13 | # | 25 | # |
@@ -111,7 +123,8 @@ endif | |||
111 | 123 | ||
112 | 124 | ||
113 | .PHONY: all libgit test install uninstall clean force-version get-git \ | 125 | .PHONY: all libgit test install uninstall clean force-version get-git \ |
114 | doc man-doc html-doc clean-doc | 126 | doc clean-doc install-doc install-man install-html install-pdf \ |
127 | uninstall-doc uninstall-man uninstall-html uninstall-pdf | ||
115 | 128 | ||
116 | all: cgit | 129 | all: cgit |
117 | 130 | ||
@@ -167,21 +180,58 @@ install: all | |||
167 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) | 180 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) |
168 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css | 181 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css |
169 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png | 182 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png |
183 | $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir) | ||
184 | $(INSTALL) -m 0755 filters/* $(DESTDIR)$(filterdir) | ||
185 | |||
186 | install-doc: install-man install-html install-pdf | ||
187 | |||
188 | install-man: doc-man | ||
189 | $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5 | ||
190 | $(INSTALL) -m 0644 $(DOC_MAN5) $(DESTDIR)$(mandir)/man5 | ||
191 | |||
192 | install-html: doc-html | ||
193 | $(INSTALL) -m 0755 -d $(DESTDIR)$(htmldir) | ||
194 | $(INSTALL) -m 0644 $(DOC_HTML) $(DESTDIR)$(htmldir) | ||
195 | |||
196 | install-pdf: doc-pdf | ||
197 | $(INSTALL) -m 0755 -d $(DESTDIR)$(pdfdir) | ||
198 | $(INSTALL) -m 0644 $(DOC_PDF) $(DESTDIR)$(pdfdir) | ||
170 | 199 | ||
171 | uninstall: | 200 | uninstall: |
172 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 201 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
173 | rm -f $(CGIT_DATA_PATH)/cgit.css | 202 | rm -f $(CGIT_DATA_PATH)/cgit.css |
174 | rm -f $(CGIT_DATA_PATH)/cgit.png | 203 | rm -f $(CGIT_DATA_PATH)/cgit.png |
175 | 204 | ||
176 | doc: man-doc html-doc pdf-doc | 205 | uninstall-doc: uninstall-man uninstall-html uninstall-pdf |
206 | |||
207 | uninstall-man: | ||
208 | @for i in $(DOC_MAN5); do \ | ||
209 | rm -fv $(DESTDIR)$(mandir)/man5/$$i; \ | ||
210 | done | ||
211 | |||
212 | uninstall-html: | ||
213 | @for i in $(DOC_HTML); do \ | ||
214 | rm -fv $(DESTDIR)$(htmldir)/$$i; \ | ||
215 | done | ||
216 | |||
217 | uninstall-pdf: | ||
218 | @for i in $(DOC_PDF); do \ | ||
219 | rm -fv $(DESTDIR)$(pdfdir)/$$i; \ | ||
220 | done | ||
221 | |||
222 | doc: doc-man doc-html doc-pdf | ||
223 | doc-man: doc-man5 | ||
224 | doc-man5: $(DOC_MAN5) | ||
225 | doc-html: $(DOC_HTML) | ||
226 | doc-pdf: $(DOC_PDF) | ||
177 | 227 | ||
178 | man-doc: cgitrc.5.txt | 228 | %.5 : %.5.txt |
179 | a2x -f manpage cgitrc.5.txt | 229 | a2x -f manpage $< |
180 | 230 | ||
181 | html-doc: cgitrc.5.txt | 231 | $(DOC_HTML): %.html : %.txt |
182 | a2x -f xhtml --stylesheet=cgit-doc.css cgitrc.5.txt | 232 | a2x -f xhtml --stylesheet=cgit-doc.css $< |
183 | 233 | ||
184 | pdf-doc: cgitrc.5.txt | 234 | $(DOC_PDF): %.pdf : %.txt |
185 | a2x -f pdf cgitrc.5.txt | 235 | a2x -f pdf cgitrc.5.txt |
186 | 236 | ||
187 | clean: clean-doc | 237 | clean: clean-doc |
@@ -761,3 +761,17 @@ table.ssdiff td.space { | |||
761 | table.ssdiff td.space div { | 761 | table.ssdiff td.space div { |
762 | min-height: 3em; | 762 | min-height: 3em; |
763 | } | 763 | } |
764 | |||
765 | /* Syntax highlighting */ | ||
766 | table.blob .num { color:#2928ff; } | ||
767 | table.blob .esc { color:#ff00ff; } | ||
768 | table.blob .str { color:#ff0000; } | ||
769 | table.blob .dstr { color:#818100; } | ||
770 | table.blob .slc { color:#838183; font-style:italic; } | ||
771 | table.blob .com { color:#838183; font-style:italic; } | ||
772 | table.blob .dir { color:#008200; } | ||
773 | table.blob .sym { color:#000000; } | ||
774 | table.blob .kwa { color:#000000; font-weight:bold; } | ||
775 | table.blob .kwb { color:#830000; } | ||
776 | table.blob .kwc { color:#000000; font-weight:bold; } | ||
777 | table.blob .kwd { color:#010181; } | ||
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index b45c46b..3c20fe1 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -440,7 +440,7 @@ cache-size=1000 | |||
440 | 440 | ||
441 | 441 | ||
442 | # Specify some default clone prefixes | 442 | # Specify some default clone prefixes |
443 | clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git | 443 | clone-prefix=git://example.com ssh://example.com/pub/git http://example.com/git |
444 | 444 | ||
445 | # Specify the css url | 445 | # Specify the css url |
446 | css=/css/cgit.css | 446 | css=/css/cgit.css |
@@ -475,14 +475,14 @@ max-stats=quarter | |||
475 | 475 | ||
476 | 476 | ||
477 | # Set the title and heading of the repository index page | 477 | # Set the title and heading of the repository index page |
478 | root-title=foobar.com git repositories | 478 | root-title=example.com git repositories |
479 | 479 | ||
480 | 480 | ||
481 | # Set a subheading for the repository index page | 481 | # Set a subheading for the repository index page |
482 | root-desc=tracking the foobar development | 482 | root-desc=tracking the foobar development |
483 | 483 | ||
484 | 484 | ||
485 | # Include some more info about foobar.com on the index page | 485 | # Include some more info about example.com on the index page |
486 | root-readme=/var/www/htdocs/about.html | 486 | root-readme=/var/www/htdocs/about.html |
487 | 487 | ||
488 | 488 | ||
@@ -516,14 +516,14 @@ mimetype.svg=image/svg+xml | |||
516 | repo.url=foo | 516 | repo.url=foo |
517 | repo.path=/pub/git/foo.git | 517 | repo.path=/pub/git/foo.git |
518 | repo.desc=the master foo repository | 518 | repo.desc=the master foo repository |
519 | repo.owner=fooman@foobar.com | 519 | repo.owner=fooman@example.com |
520 | repo.readme=info/web/about.html | 520 | repo.readme=info/web/about.html |
521 | 521 | ||
522 | 522 | ||
523 | repo.url=bar | 523 | repo.url=bar |
524 | repo.path=/pub/git/bar.git | 524 | repo.path=/pub/git/bar.git |
525 | repo.desc=the bars for your foo | 525 | repo.desc=the bars for your foo |
526 | repo.owner=barman@foobar.com | 526 | repo.owner=barman@example.com |
527 | repo.readme=info/web/about.html | 527 | repo.readme=info/web/about.html |
528 | 528 | ||
529 | 529 | ||
diff --git a/git b/git | |||
Subproject 87b50542a08ac6caa083ddc376e674424e37940 | Subproject 7ed863a85a6ce2c4ac4476848310b8f917ab41f | ||
@@ -1,5 +1,3 @@ | |||
1 | #include <string-list.h> | ||
2 | |||
3 | #include "cgit.h" | 1 | #include "cgit.h" |
4 | #include "html.h" | 2 | #include "html.h" |
5 | #include "ui-shared.h" | 3 | #include "ui-shared.h" |