summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Makefile64
-rw-r--r--cgit.css14
-rw-r--r--cgitrc.5.txt10
3 files changed, 76 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index be1d796..fe4b10e 100644
--- a/Makefile
+++ b/Makefile
@@ -6,2 +6,9 @@ CGIT_CONFIG = /etc/cgitrc
6CACHE_ROOT = /var/cache/cgit 6CACHE_ROOT = /var/cache/cgit
7prefix = /usr
8libdir = $(prefix)/lib
9filterdir = $(libdir)/cgit/filters
10docdir = $(prefix)/share/doc/cgit
11htmldir = $(docdir)
12pdfdir = $(docdir)
13mandir = $(prefix)/share/man
7SHA1_HEADER = <openssl/sha.h> 14SHA1_HEADER = <openssl/sha.h>
@@ -10,2 +17,7 @@ GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
10INSTALL = install 17INSTALL = install
18MAN5_TXT = $(wildcard *.5.txt)
19MAN_TXT = $(MAN5_TXT)
20DOC_MAN5 = $(patsubst %.txt,%,$(MAN5_TXT))
21DOC_HTML = $(patsubst %.txt,%.html,$(MAN_TXT))
22DOC_PDF = $(patsubst %.txt,%.pdf,$(MAN_TXT))
11 23
@@ -112,3 +124,4 @@ endif
112.PHONY: all libgit test install uninstall clean force-version get-git \ 124.PHONY: all libgit test install uninstall clean force-version get-git \
113 doc man-doc html-doc clean-doc 125 doc clean-doc install-doc install-man install-html install-pdf \
126 uninstall-doc uninstall-man uninstall-html uninstall-pdf
114 127
@@ -168,2 +181,18 @@ install: all
168 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png 181 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
182 $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir)
183 $(INSTALL) -m 0755 filters/* $(DESTDIR)$(filterdir)
184
185install-doc: install-man install-html install-pdf
186
187install-man: doc-man
188 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
189 $(INSTALL) -m 0644 $(DOC_MAN5) $(DESTDIR)$(mandir)/man5
190
191install-html: doc-html
192 $(INSTALL) -m 0755 -d $(DESTDIR)$(htmldir)
193 $(INSTALL) -m 0644 $(DOC_HTML) $(DESTDIR)$(htmldir)
194
195install-pdf: doc-pdf
196 $(INSTALL) -m 0755 -d $(DESTDIR)$(pdfdir)
197 $(INSTALL) -m 0644 $(DOC_PDF) $(DESTDIR)$(pdfdir)
169 198
@@ -174,11 +203,32 @@ uninstall:
174 203
175doc: man-doc html-doc pdf-doc 204uninstall-doc: uninstall-man uninstall-html uninstall-pdf
205
206uninstall-man:
207 @for i in $(DOC_MAN5); do \
208 rm -fv $(DESTDIR)$(mandir)/man5/$$i; \
209 done
210
211uninstall-html:
212 @for i in $(DOC_HTML); do \
213 rm -fv $(DESTDIR)$(htmldir)/$$i; \
214 done
215
216uninstall-pdf:
217 @for i in $(DOC_PDF); do \
218 rm -fv $(DESTDIR)$(pdfdir)/$$i; \
219 done
220
221doc: doc-man doc-html doc-pdf
222doc-man: doc-man5
223doc-man5: $(DOC_MAN5)
224doc-html: $(DOC_HTML)
225doc-pdf: $(DOC_PDF)
176 226
177man-doc: cgitrc.5.txt 227%.5 : %.5.txt
178 a2x -f manpage cgitrc.5.txt 228 a2x -f manpage $<
179 229
180html-doc: cgitrc.5.txt 230$(DOC_HTML): %.html : %.txt
181 a2x -f xhtml --stylesheet=cgit-doc.css cgitrc.5.txt 231 a2x -f xhtml --stylesheet=cgit-doc.css $<
182 232
183pdf-doc: cgitrc.5.txt 233$(DOC_PDF): %.pdf : %.txt
184 a2x -f pdf cgitrc.5.txt 234 a2x -f pdf cgitrc.5.txt
diff --git a/cgit.css b/cgit.css
index 0c88b65..a2a685b 100644
--- a/cgit.css
+++ b/cgit.css
@@ -745 +745,15 @@ table.ssdiff td.space div {
745} \ No newline at end of file 745} \ No newline at end of file
746
747/* Syntax highlighting */
748table.blob .num { color:#2928ff; }
749table.blob .esc { color:#ff00ff; }
750table.blob .str { color:#ff0000; }
751table.blob .dstr { color:#818100; }
752table.blob .slc { color:#838183; font-style:italic; }
753table.blob .com { color:#838183; font-style:italic; }
754table.blob .dir { color:#008200; }
755table.blob .sym { color:#000000; }
756table.blob .kwa { color:#000000; font-weight:bold; }
757table.blob .kwb { color:#830000; }
758table.blob .kwc { color:#000000; font-weight:bold; }
759table.blob .kwd { color:#010181; }
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 75b6584..8e51ca5 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -433,3 +433,3 @@ cache-size=1000
433# Specify some default clone prefixes 433# Specify some default clone prefixes
434clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git 434clone-prefix=git://example.com ssh://example.com/pub/git http://example.com/git
435 435
@@ -464,3 +464,3 @@ max-stats=quarter
464# Set the title and heading of the repository index page 464# Set the title and heading of the repository index page
465root-title=foobar.com git repositories 465root-title=example.com git repositories
466 466
@@ -471,3 +471,3 @@ root-desc=tracking the foobar development
471 471
472# Include some more info about foobar.com on the index page 472# Include some more info about example.com on the index page
473root-readme=/var/www/htdocs/about.html 473root-readme=/var/www/htdocs/about.html
@@ -505,3 +505,3 @@ repo.path=/pub/git/foo.git
505repo.desc=the master foo repository 505repo.desc=the master foo repository
506repo.owner=fooman@foobar.com 506repo.owner=fooman@example.com
507repo.readme=info/web/about.html 507repo.readme=info/web/about.html
@@ -512,3 +512,3 @@ repo.path=/pub/git/bar.git
512repo.desc=the bars for your foo 512repo.desc=the bars for your foo
513repo.owner=barman@foobar.com 513repo.owner=barman@example.com
514repo.readme=info/web/about.html 514repo.readme=info/web/about.html