From a2951de95424744bd2cf9266841c4c788fdb7f3b Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Sun, 23 Feb 2025 13:15:14 +0000 Subject: Changed to fit my website --- example_create.sh | 54 ----------------------------------------------- example_post-receive.sh | 2 ++ htmldir/example_create.sh | 54 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+), 54 deletions(-) delete mode 100755 example_create.sh create mode 100755 htmldir/example_create.sh diff --git a/example_create.sh b/example_create.sh deleted file mode 100755 index d6e2a1c..0000000 --- a/example_create.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -# This script is ment to initialize your stagit website - -# - Makes index for repositories in a single directory. -# - Makes static pages for each repository directory. -# -# NOTE, things to do manually (once) before running this script: -# - 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. -# - write owner of repo to the "owner" file. -# - write description in "description" file. -# -# How to use -# - mkdir -p htmldir && cd htmldir -# - sh example_create.sh - -# path must be absolute. - -# Repodir is where your git repos are located -reposdir="/srv/git" - -#curdir is the current directory but I suggest switching it to your website directory -# Current -#curdir="$(pwd)" - -# Absolute -curdir="/var/www/git/htmldir" - -# make index. -stagit-index "${reposdir}/"*/ > "${curdir}/index.html" - -# make files per repo. -for dir in "${reposdir}/"*/; do - # strip .git suffix. - r=$(basename "${dir}") - d=$(basename "${dir}" ".git") - printf "%s... " "${d}" - - mkdir -p "${curdir}/${d}" - cd "${curdir}/${d}" || continue - stagit -c ".cache" -u "https://git.codemadness.nl/$d/" "${reposdir}/${r}" - - # 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 - - echo "done" -done diff --git a/example_post-receive.sh b/example_post-receive.sh index 6a91057..02c6f71 100755 --- a/example_post-receive.sh +++ b/example_post-receive.sh @@ -5,6 +5,8 @@ # Add this file to your git repo # /srv/git/.git/hooks/post-receive # +# Make sure the Git user has access to your website files so the hook will work! +# # usage: $0 [name] # # if name is not set the basename of the current directory is used, diff --git a/htmldir/example_create.sh b/htmldir/example_create.sh new file mode 100755 index 0000000..d6e2a1c --- /dev/null +++ b/htmldir/example_create.sh @@ -0,0 +1,54 @@ +#!/bin/sh + +# This script is ment to initialize your stagit website + +# - Makes index for repositories in a single directory. +# - Makes static pages for each repository directory. +# +# NOTE, things to do manually (once) before running this script: +# - 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. +# - write owner of repo to the "owner" file. +# - write description in "description" file. +# +# How to use +# - mkdir -p htmldir && cd htmldir +# - sh example_create.sh + +# path must be absolute. + +# Repodir is where your git repos are located +reposdir="/srv/git" + +#curdir is the current directory but I suggest switching it to your website directory +# Current +#curdir="$(pwd)" + +# Absolute +curdir="/var/www/git/htmldir" + +# make index. +stagit-index "${reposdir}/"*/ > "${curdir}/index.html" + +# make files per repo. +for dir in "${reposdir}/"*/; do + # strip .git suffix. + r=$(basename "${dir}") + d=$(basename "${dir}" ".git") + printf "%s... " "${d}" + + mkdir -p "${curdir}/${d}" + cd "${curdir}/${d}" || continue + stagit -c ".cache" -u "https://git.codemadness.nl/$d/" "${reposdir}/${r}" + + # 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 + + echo "done" +done -- cgit v1.2.3