基本上
id
hashb
如果 gitweb url 使用,则来自hashb
,否则来自hash
。
id2
来自 hashb if the gitweb url uses
hashb , otherwise from
hashp`。
- 其余的非常简单。
这是我现在使用的脚本(如果你的 shell 不糟糕,就不会调用外部命令):
#!/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"