X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FGitalist.pm;h=89e7d1f3bb6aba96aaa4ac30a58723713345dfee;hb=2db4bce7abf77be479a6a6c62c8e08c5067d0c6d;hp=a2bf1a59e3284112064c9644442f65b50af5322b;hpb=8bf1f7813e7a11f9b32a887cd5af9c2d4c07a4a6;p=catagits%2FGitalist.git diff --git a/lib/Gitalist.pm b/lib/Gitalist.pm index a2bf1a5..89e7d1f 100644 --- a/lib/Gitalist.pm +++ b/lib/Gitalist.pm @@ -14,7 +14,7 @@ use Catalyst qw/ SubRequest /; -our $VERSION = '0.003001'; +our $VERSION = '0.003005'; $VERSION = eval $VERSION; __PACKAGE__->config( @@ -29,8 +29,13 @@ __PACKAGE__->setup(); after prepare_path => sub { my ($ctx) = @_; + my $path = $ctx->req->uri->path; if ($ctx->req->param('a')) { - $ctx->request->uri->path('/legacy' . $ctx->request->uri->path); + $ctx->req->uri->path("/legacy$path"); + } + + if($path =~ s/[.]json$// && $ctx->req->content_type eq 'application/json') { + $ctx->req->uri->path($path); } }; @@ -199,11 +204,28 @@ This example can be seen live here: http://example.gitalist.com +=head2 Plack + +If you would like to run Gitalist under L then one need only +make use of L and the +C<.psgi> found under C: + + plackup script/gitalist_app.psgi + =head1 CONFIGURATION The Gitalist config is loaded with L and the available config options are: +=over + +=item no_gravatars + +If true don't display gravatars. May be desirable if you are worried about +leaking repo names via the browser referer headers. + +=back + =head2 Model::CollectionOfRepos =over @@ -292,9 +314,16 @@ If you find the need to do some troubleshooting, you can call C and/or add export C to the top of your F file (just below the shebang line). -Also, note that Apache will refuse C<%2F> in Gitalist URLs -unless configured otherwise. Make sure C -is in your F file in order for this to run smoothly. +=head2 Apache config + +Apache will refuse C<%2F> in Gitalist URLs unless configured otherwise. Make +sure C is in your F file in order for +this to run smoothly. + +To have the static content served statically by Apache, instead of +Gitalist, then add something like following line to your F: + + Alias /static /usr/local/share/perl/5.10.1/Gitalist/root/static =head1 CONTRIBUTING