SVN Commit by dpage: r4941 - trunk/www

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by dpage: r4941 - trunk/www
Date: 2006-01-20 10:12:08
Message-ID: 200601201012.k0KAC8P5032097@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: dpage
Date: 2006-01-20 10:12:08 +0000 (Fri, 20 Jan 2006)
New Revision: 4941

Modified:
trunk/www/.htaccess
Log:
More regexp fixes for finicky old Ferengi.

Modified: trunk/www/.htaccess
===================================================================
--- trunk/www/.htaccess 2006-01-20 09:46:15 UTC (rev 4940)
+++ trunk/www/.htaccess 2006-01-20 10:12:08 UTC (rev 4941)
@@ -34,8 +34,8 @@
RewriteRule ^docs/1\.4/(.*)\.png$ /svnrepo/pgadmin3-1\.4/docs/en_US/$1\.png [QSA,L]

# Requests like /docs/xx/yy need to be rewritten to /include/page.php?docset=xx&docpage=yy
-RewriteRule ^docs/(.[a-zA-Z0-9.]*)/(.*)$ /include/doc.php?docset=$1&docpage=$2 [QSA,L]
+RewriteRule ^docs/([a-zA-Z0-9\.]+)/(.+)$ /include/doc.php?docset=$1&docpage=$2 [QSA,L]

# Similarly for the archives
-RewriteRule ^archives/(.[-a-zA-Z0-9.]*)/(.*)\.php$ /include/archives.php?list=$1&msg=$2\.php [QSA,L]
+RewriteRule ^archives/([0-9a-zA-Z-]+)/(.+)\.php$ /include/archives.php?list=$1&msg=$2\.php [QSA,L]

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2006-01-20 10:24:42 SVN Commit by dpage: r4942 - trunk/www/pgadmin3
Previous Message svn 2006-01-20 09:46:15 SVN Commit by dpage: r4940 - in trunk/www: . development include support