]> git.plutz.net Git - busy/blob - pages/Subversion.sh
improvements in subversion browser
[busy] / pages / Subversion.sh
1 #!/bin/sh
2
3 # Copyright 2014 Paul Hänsch
4 #
5 # This file is part of Busy
6
7 # Busy is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # Busy is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with Busy. If not, see <http://www.gnu.org/licenses/>. 
19
20 url="$(echo "$_GET[\"i\"]" |sed -rn '1{s:\t: :g;s:\r::g;s:\\:\\\\:g;s:/+:/:g;p}')"
21 rev="$(echo "$_GET[\"r\"]" |sed -rn '1{/^[0-9]+$/p}')"
22
23 baseuri=$(sed -rn 's:^svnRepo=(.*)$:\1:p' project.meta)
24 lastrev=$(svn info "$baseuri" |sed -rn 's;^Revision: *([0-9]+);\1;p')
25 [ -z "$rev" ] && rev="$lastrev"
26
27 svn_path(){
28   tmp="${url%/*}" 
29   until [ "$tmp" = "${tmp#/}" ]; do
30     echo "<a href='?p=Subversion&amp;i=$tmp/&amp;r=$rev'>${tmp##*/}/</a> "
31     tmp="${tmp%/*}"
32   done \
33   | tac
34   echo "${url##*/}"
35 }
36
37 svn_revisions(){
38   for i in {1.."$lastrev"}; do
39     echo "<a href='?p=Subversion&amp;i=$url&amp;r=$i'>$i</a>"
40   done
41 }
42
43 svn_changelog(){
44   svn log "${baseuri}/${url}" \
45   | sed -rn '2,${s:^-+$:</div>:g;
46                  s:^r([0-9]+) \| ([a-zA-Z0-9]+) \| ([0-9: -]+) .+$:<div class="changelog"><h2>Revision \1 by \2<br>at \3</h2>:g;p}'
47 }
48
49 svn_showurl(){
50   if [ -z "$url" -o "${url%/}" != "$url" ]; then
51     # we are showing a directory
52     svn propget svn:externals -r "$rev" "${baseuri}/${url}" \
53     | sed -rn "s;^([^ ]+) (.+)$;<span class='extern'>\2/</span> [external include from <a href='\1'>\1</a>]<br>;p"
54
55     svn ls -r "$rev" "${baseuri}/${url}" \
56     | sed -r "s:^.*$:<a href='?p=Subversion\&amp;i=$url&\&amp;r=$rev'>&</a><br>:g"
57   else
58     # we are showing a file
59     if [ "$url" = "${url#*.}" ] && \
60        lang=txt \
61     || lang="$(source-highlight --lang-list |grep -o "^${url##*.} ")"
62     lang="${lang:-sh}"
63     lang="${lang% }"
64     svn cat -r "$rev" "${baseuri}/${url}" \
65     | source-highlight -s "$lang"
66   fi
67 }
68
69 case "$1" in
70   title)
71     echo "Code"
72   ;;
73   css)
74     cat ${_EXEC}/templates/Subversion.css
75   ;;
76   body)
77     #. ${_EXEC}/templates/text_subversion.sh
78     . ${_EXEC}/templates/Subversion.page
79   ;;
80 esac
81