]>
git.madduck.net Git - code/myrepos.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
d8426f3 )
appropriate for that repository (git, svn, etc).
The information about the repositories is embedded in the web page using
appropriate for that repository (git, svn, etc).
The information about the repositories is embedded in the web page using
-the rel=vcs microformat, which is documented at
+the rel=vcs-* microformat, which is documented at
<http://kitenet.net/~joey/rfc/rel-vcs/>.
If the optional destdir parameter is specified, VCS programs will be asked
<http://kitenet.net/~joey/rfc/rel-vcs/>.
If the optional destdir parameter is specified, VCS programs will be asked
# Controls whether to perfer repos that use authentication.
my $want_auth=0;
# Controls whether to perfer repos that use authentication.
my $want_auth=0;
-# Controls where to check out to. If not set, the vcs is allowed to
+# Controls where to check out to. If not set, the VCS is allowed to
$parser->handler(start => sub {
my $tagname=shift;
my $attr=shift;
$parser->handler(start => sub {
my $tagname=shift;
my $attr=shift;
- return if ! exists $attr->{rel} || lc $attr->{rel} ne 'vcs';
return if ! exists $attr->{href} || ! length $attr->{href};
return if ! exists $attr->{href} || ! length $attr->{href};
- return if ! exists $attr->{type} || ! length $attr->{type};
+ return if ! exists $attr->{rel} || $attr->{rel} !~ /^vcs-(.+)/i;
+ $attr->{type}=lc($1);
# need to collect the body of the <a> tag if there is no title
if ($tagname eq "a" && ! exists $attr->{title}) {
# need to collect the body of the <a> tag if there is no title
if ($tagname eq "a" && ! exists $attr->{title}) {