ref: fb491d7a747b26f17caf11aca82be4d9e611c56d
dir: /info/
#!/bin/rc -e . /sys/lib/shithub/common.rc cd $1 shift rfork ne nl=' ' gituser=$1 repo=$2 refname=$3 repons $gituser $repo repodir=/mnt/$repo/.git if(! ref=`{resolveref $refname}){ echo '<b>invalid ref '$refname'</b>' exit } if(test -f $gitfs/$ref/hash) hash=`{cat $gitfs/$ref/hash} if not hash=$ref user_prelude $gituser $repo $hash echo ' <h3>Clone</h3> <div> <b>clone:</b> git://shithub.us/'$gituser/$repo' gits://shithub.us/'$gituser/$repo'<br> <b>push:</b> hjgit://shithub.us/'$gituser/$repo'<br>' if(test -f $repodir/contact) echo ' <b>patches to: </b>'^`$nl{cat $repodir/contact}^'<br>' echo ' </div>' if(test -f $gitfs/object/$hash/msg){ echo ' <h3>Last commit</h3>' formatcommit $gituser $repo $hash } cd $gitfs/object/$hash/tree echo ' <h3>About</h3> <pre id="desc">' if(test -f $repodir/README) htcat $repodir/README if not if(test -f README) htcat README if not if (test -f README.md) htcat README.md if not if(test -f $repodir/desc) htcat $repodir/desc if not if(test -f $repodir/description) htcat $repodir/description if not echo 'this repo has no description' echo ' </pre> </body> </html> '