diff options
-rw-r--r-- | assets/css/cgit.css | 7 | ||||
-rw-r--r-- | cgitrc | 6 | ||||
-rwxr-xr-x | html-converters/rst2html | 2 | ||||
-rw-r--r-- | theme.cgitrc | 2 |
4 files changed, 14 insertions, 3 deletions
diff --git a/assets/css/cgit.css b/assets/css/cgit.css index 10ea9d8..22b7958 100644 --- a/assets/css/cgit.css +++ b/assets/css/cgit.css @@ -55,6 +55,13 @@ ul > li { margin-left: -17px; padding-top: 0.5em; } +div.content:after { + content: "."; + visibility: hidden; + display: block; + height: 0; + clear: both; +} div#cgit select, div#cgit input { margin: 0; @@ -1,5 +1,5 @@ include=/home/ymf/repo/cgit/theme.cgitrc -#cache-size=1000 +cache-size=1000 enable-blame=1 robots=noindex, nofollow @@ -22,6 +22,10 @@ repo.url=salticidae repo.desc=Minimal C++ asynchronous network library. repo.path=/home/ymf/repo/salticidae.git +repo.url=salticidae-go +repo.desc=Go bindings for Salticidae network library. +repo.path=/home/ymf/repo/salticidae-go.git + repo.url=cppromise repo.desc=Lightweight C++14/17 implementation of Promise modeled Javascript Promise/A+. repo.path=/home/ymf/repo/cppromise.git diff --git a/html-converters/rst2html b/html-converters/rst2html index 0adca0e..442430e 100755 --- a/html-converters/rst2html +++ b/html-converters/rst2html @@ -1,2 +1,2 @@ #!/bin/bash -exec rst2html5 --template <(echo -e "%(body_pre_docinfo)s\n%(docinfo)s\n%(body)s") --syntax-highlight=short +exec rst2html5.py --template <(echo -e "%(body_pre_docinfo)s\n%(docinfo)s\n%(body)s") --syntax-highlight=short diff --git a/theme.cgitrc b/theme.cgitrc index e3cfbde..2056664 100644 --- a/theme.cgitrc +++ b/theme.cgitrc @@ -1,6 +1,6 @@ css= logo= -virtual-root=/git +virtual-root=/ head-include=/home/ymf/repo/cgit/head.html footer=/home/ymf/repo/cgit/footer.html source-filter=/home/ymf/repo/cgit/syntax-highlighting.py |