[Pkg-bugzilla-commits] r117 - in bugzilla/trunk/debian: . examples

Alexis Sukrieh sukria-guest at costa.debian.org
Mon Sep 12 21:39:25 UTC 2005


Author: sukria-guest
Date: 2005-09-12 21:39:25 +0000 (Mon, 12 Sep 2005)
New Revision: 117

Modified:
   bugzilla/trunk/debian/changelog
   bugzilla/trunk/debian/examples/vh-basic.conf
   bugzilla/trunk/debian/examples/vh-custom-static.conf
Log:
patch for closing 252076

Modified: bugzilla/trunk/debian/changelog
===================================================================
--- bugzilla/trunk/debian/changelog	2005-09-12 21:27:56 UTC (rev 116)
+++ bugzilla/trunk/debian/changelog	2005-09-12 21:39:25 UTC (rev 117)
@@ -1,11 +1,14 @@
 bugzilla (2.18.3-2) unstable; urgency=low
 
   * Postinst script now uses temporary files in an safe way, with mktemp
-    rather than using a non-changing path. Thanks to Javier 
-    Fernández-Sanguino Peña.
+    rather than using a non-changing path. Thanks to Javier
+    Fernández-Sanguino Peña.
     (closes: #321567)
+  * Added a RewriteRule in the virtual hosts examples for correctly handling
+    the %urlbase% tokens in the templates. Thanks to Yann Dirson.
+    (closes: #252076)
 
- -- Alexis Sukrieh <sukria at sukria.net>  Mon, 12 Sep 2005 22:28:04 +0200
+ -- Alexis Sukrieh <sukria at sukria.net>  Mon, 12 Sep 2005 23:38:21 +0200
 
 bugzilla (2.18.3-1) unstable; urgency=low
 

Modified: bugzilla/trunk/debian/examples/vh-basic.conf
===================================================================
--- bugzilla/trunk/debian/examples/vh-basic.conf	2005-09-12 21:27:56 UTC (rev 116)
+++ bugzilla/trunk/debian/examples/vh-basic.conf	2005-09-12 21:39:25 UTC (rev 117)
@@ -7,4 +7,8 @@
     SetEnv X_BUGZILLA_SITE "basic"
     SetEnv X_BUGZILLA_WEBPATH "/"
 
+    # This is needed for keeping a good url in lots of links
+    RewriteEngine On
+    RewriteRule ^(.*/cgi-bin/bugzilla)/?$ $1/index.cgi [R]
+
 </VirtualHost>

Modified: bugzilla/trunk/debian/examples/vh-custom-static.conf
===================================================================
--- bugzilla/trunk/debian/examples/vh-custom-static.conf	2005-09-12 21:27:56 UTC (rev 116)
+++ bugzilla/trunk/debian/examples/vh-custom-static.conf	2005-09-12 21:39:25 UTC (rev 117)
@@ -7,4 +7,9 @@
     
     SetEnv X_BUGZILLA_SITE "custom"
     SetEnv X_BUGZILLA_WEBPATH "/"
+    
+    # This is needed for keeping a good url in lots of links
+    RewriteEngine On
+    RewriteRule ^(.*/cgi-bin/bugzilla)/?$ $1/index.cgi [R]
+
 </VirtualHost>




More information about the Pkg-bugzilla-commits mailing list