Bump version to 0.003006, update Changes and README. 0.003006
Dan Brook [Wed, 19 Oct 2011 18:14:27 +0000 (19:14 +0100)]
Also update MANIFEST.SKIP to ignore more editor droppings.

Changes
MANIFEST.SKIP
README
lib/Gitalist.pm

diff --git a/Changes b/Changes
index ee1f29e..7a696f3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 This file documents the revision history for Perl extension Gitalist.
 
+0.003006 2011-10-18
+  - Fix lies in docs, make config more obvious (Tomas Doran)
+  - Avoid "Use of qw(...) as parentheses is deprecated" warning with
+    perl-5.14 (Gisle Aas)
+
 0.003005 2011-07-13
   - Provide option to disable gravatars.
   - Tweaks to make Gitalist fit for debian (Jonas Genannt).
index 2a6cfcd..e5e145e 100644 (file)
@@ -15,5 +15,7 @@ script/bootstrap.pl
 script/cpan-install
 script/env
 local-lib5
-~$
-[#]$
+~         # Vim
+.sw[p-z]$ # Vim
+[#]$      # Emacs
+\.[#].    # Emacs
diff --git a/README b/README
index 5af42e7..e7e9663 100644 (file)
--- a/README
+++ b/README
@@ -23,8 +23,8 @@ INSTALL
     repositories the directory above the checkout.
 
 DESCRIPTION
-    Gitalist is a web frontend for git repositories based on <gitweb.cgi>
-    and backed by Catalyst.
+    Gitalist is a web frontend for git repositories based on gitweb.cgi
+    <https://git.wiki.kernel.org/index.php/Gitweb> and backed by Catalyst.
 
   History
     This project started off as an attempt to port *gitweb.cgi* to a
@@ -122,8 +122,8 @@ RUNNING
     than using the single threaded developement server.
 
     The recommended deployment method for Gitalist is FastCGI, although
-    Gitalist can also be run under <mod_perl> or as pure Perl with
-    Catalyst::Engine::PreFork.
+    Gitalist can also be run under mod_perl <https://perl.apache.org/> or as
+    pure Perl with Catalyst::Engine::PreFork.
 
     Assuming that you have installed Gitalist's dependencies into a
     local::lib, and you are running from a git checkout, adding a trivial
@@ -152,8 +152,6 @@ CONFIGURATION
         about leaking repo names via the browser referer headers.
 
   Model::CollectionOfRepos
-    git Path to the "git" binary.
-
     repo_dir
         A directory containing the directories to show.
 
@@ -183,11 +181,13 @@ CONFIGURATION
 
   FASTCGI
     Running Gitalist in FastCGI mode requires a webserver with FastCGI
-    support (such as apache with <mod_fcgi> or <mod_fcgid>). Below is a
-    sample configuration using Apache2 with mod_fcgid in a dynamic
-    configuration (as opposed to static or standalone mode). More
-    information on these modes and their configuration can be found at
-    "Standalone server mode" in Catalyst::Engine::FastCGI.
+    support (such as apache with mod_fcgi
+    <http://www.fastcgi.com/drupal/node/3> or mod_fcgid
+    <https://httpd.apache.org/mod_fcgid/>). Below is a sample configuration
+    using Apache2 with mod_fcgid in a dynamic configuration (as opposed to
+    static or standalone mode). More information on these modes and their
+    configuration can be found at "Standalone server mode" in
+    Catalyst::Engine::FastCGI.
 
     In Apache's mime.conf, add "AddHandler fcgid-script .fcgi" (or
     "AddHandler fastcgi-script .fcgi" for mod_fcgi).
@@ -214,7 +214,8 @@ CONFIGURATION
     Now to access your Gitalist instance, you'll go to
     "gitalist.yourdomain.com/gitalist.fcgi/" (do not forget that trailing
     "/"). If you'd like a different URL, of course, you'll likely want to
-    use <mod_rewrite> or equivalent.
+    use mod_rewrite <https://httpd.apache.org/docs/mod/mod_rewrite.html> or
+    equivalent.
 
     If you find the need to do some troubleshooting, you can call
     "http://url_to_gitalist.fcgi?dump_info=1" and/or add export
index 71d6884..f1825e3 100644 (file)
@@ -14,7 +14,7 @@ use Catalyst qw/
                 SubRequest
 /;
 
-our $VERSION = '0.003005';
+our $VERSION = '0.003006';
 $VERSION = eval $VERSION;
 
 __PACKAGE__->config(