基本的に
id
hashb
gitweb urlがを使用する場合はからhashb
、それ以外の場合はから取得しhash
ます。
id2
if the gitweb url uses
hashpbhashpbhashp`から来てい, otherwise from
ます。
- 残りはかなり簡単です。
これが私が今使用しているスクリプトです(シェルがうまくいかない場合は外部コマンドは呼び出されません):
#!/bin/sh
q=$QUERY_STRING
repo=
action=
hash=
hashp=
file=
while test "$q" ; do
x=${q%%;*}
case "$x" in
p=*) repo=${x#p=} ;;
a=*commit*) action=commit ;;
a=*plain*) action=plain ;;
a=*summary*) action= ;;
a=*log*) action=log ;;
a=*) action=${x#a=} ;;
h=*) hash=${x#h=} ;;
hb=*) hashb=${x#hb=} ;;
hp=*) hashp=${x#hp=} ;;
hpb=*) hashpb=${x#hpb=} ;;
f=*) file=${x#f=} ;;
esac
t=${q#*;}
test "$t" = "$q" && break
q=$t
done
test "$hashb" && hash=$hashb
test "$hashpb" && hashp=$hashpb
loc=/cgit
if test "$repo" ; then
loc=$loc/$repo
if test "$action" ; then
loc=$loc/$action
if test "$file" ; then
loc=$loc/$file
fi
fi
if test "$hash" ; then
loc=$loc/\?id=$hash
if test "$hashp" ; then
loc=$loc\&id2=$hashp
fi
fi
fi
printf 'Status: 301 Moved Permanently\nLocation: %s\n\n' "$loc"