X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FGitalist.pm;h=276e386c2ea6ca34abd7e49eedc5de9f3e472cce;hb=1e19ad67eb3b16fa57999f8160d20c98c67b857f;hp=b149782906588e905cc781b44577e9835b68b6e1;hpb=5111a8abac4a2ebace393327e51599f4fbd213ff;p=catagits%2FGitalist.git diff --git a/lib/Gitalist.pm b/lib/Gitalist.pm index b149782..276e386 100644 --- a/lib/Gitalist.pm +++ b/lib/Gitalist.pm @@ -14,7 +14,7 @@ use Catalyst qw/ SubRequest /; -our $VERSION = '0.002008'; +our $VERSION = '0.003006'; $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); } }; @@ -41,19 +46,12 @@ around uri_for => sub { return $uri; }; -around uri_for_action => sub { - my ($orig, $c) = (shift, shift); - my $uri = $c->$orig(@_); - $$uri =~ s[/fragment\b][] if defined $uri; - return $uri; -}; - sub uri_with { my ($self, @args) = @_; my $uri = $self->request->uri_with(@args); # Wow this awful. $uri =~ s[/fragment\b][]; - return $uri; + return $uri; } 1; @@ -206,25 +204,39 @@ 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: -=head2 Model::CollectionOfRepos - =over -=item git +=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 -Path to the C binary. +=head2 Model::CollectionOfRepos + +=over =item repo_dir A directory containing the directories to show. -If no repositories are found in this directory then Gitalist will -search recursively in that directory for repositories. +=item repos + +A list of directories containing repositories to show. =item search_recursively @@ -254,7 +266,7 @@ visible. This is similar to C's functionality. =item log -The number of commits to show in the +The number of commits to show in the summary, shortlog and longlog views. =back @@ -298,9 +310,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