2015-12-26 19:46:33 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# - Makes index for repositories in a single directory.
|
|
|
|
# - Makes static pages for each repository directory.
|
|
|
|
#
|
|
|
|
# NOTE, things to do manually (once):
|
|
|
|
# - copy style.css, logo.png and favicon.png manually, a style.css example
|
|
|
|
# is included.
|
|
|
|
# - write clone url, for example "git://git.codemadness.org/dir" to the "url"
|
|
|
|
# file for each repo.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# - mkdir -p htmldir && cd htmldir
|
2015-12-27 18:05:45 +00:00
|
|
|
# - sh example.sh
|
2015-12-26 19:46:33 +00:00
|
|
|
|
2016-01-08 12:39:23 +00:00
|
|
|
reposdir="/var/www/domains/git.codemadness.nl/home/src"
|
2015-12-26 19:46:33 +00:00
|
|
|
curdir=$(pwd)
|
|
|
|
|
|
|
|
# make index.
|
|
|
|
cd "${reposdir}"
|
2016-04-29 19:52:29 +00:00
|
|
|
find . -maxdepth 1 -type d | grep -v "^.$" | sort | xargs stagit-index > "${curdir}/index.html"
|
2015-12-26 19:46:33 +00:00
|
|
|
|
|
|
|
# make files per repo.
|
2016-01-08 21:17:54 +00:00
|
|
|
cd "${reposdir}"
|
2016-04-29 19:52:29 +00:00
|
|
|
find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
|
2015-12-26 19:46:33 +00:00
|
|
|
d=$(basename "${dir}")
|
2016-04-29 14:38:48 +00:00
|
|
|
printf "%s... " "${d}"
|
2016-01-05 21:32:11 +00:00
|
|
|
|
2016-01-08 21:17:54 +00:00
|
|
|
mkdir -p "${curdir}/${d}"
|
|
|
|
cd "${curdir}/${d}"
|
2016-05-02 19:48:47 +00:00
|
|
|
stagit -c ".cache" "${reposdir}/${d}"
|
2015-12-26 19:46:33 +00:00
|
|
|
|
2016-01-05 20:40:26 +00:00
|
|
|
# symlinks
|
|
|
|
ln -sf log.html index.html
|
|
|
|
ln -sf ../style.css style.css
|
|
|
|
ln -sf ../logo.png logo.png
|
|
|
|
ln -sf ../favicon.png favicon.png
|
2016-01-08 21:17:54 +00:00
|
|
|
|
2016-04-29 14:38:48 +00:00
|
|
|
printf "done\n"
|
2015-12-26 19:46:33 +00:00
|
|
|
done
|