Author: cmpilato
Date: 2007-03-09 08:04:31-0800
New Revision: 1536
Added:
trunk/bin/mod_python/query_mp.py
- copied unchanged from r1535, /trunk/bin/mod_python/query.py
trunk/bin/mod_python/viewvc_mp.py
- copied unchanged from r1535, /trunk/bin/mod_python/viewvc.py
Removed:
trunk/bin/mod_python/query.py
trunk/bin/mod_python/viewvc.py
Modified:
trunk/docs/upgrading-howto.html
trunk/viewvc-install
Log:
Rename the Mod_Python stub scripts to avoid triggering an import loop
detection error.
* bin/mod_python/viewvc.py,
* bin/mod_python/query.py
Renamed these ...
* bin/mod_python/viewvc_mp.py,
* bin/mod_python/query_mp.py
... to these.
* viewvc-install
Track the renamed stub scripts.
* docs/upgrading-howto.html
Note the change to the Mod_Python stub script names.
Removed: trunk/bin/mod_python/query.py
Url:
http://viewvc.tigris.org/source/browse/viewvc/trunk/bin/mod_python/query.py?view=auto&rev=1535
Removed: trunk/bin/mod_python/viewvc.py
Url:
http://viewvc.tigris.org/source/browse/viewvc/trunk/bin/mod_python/viewvc.py?view=auto&rev=1535
Modified: trunk/docs/upgrading-howto.html
Url:
http://viewvc.tigris.org/source/browse/viewvc/trunk/docs/upgrading-howto.html?view=diff&rev=1536&p1=trunk/docs/upgrading-howto.html&p2=trunk/docs/upgrading-howto.html&r1=1535&r2=1536
==============================================================================
--- trunk/docs/upgrading-howto.html (original)
+++ trunk/docs/upgrading-howto.html 2007-03-09 08:04:31-0800
@@ -79,6 +79,18 @@
<p>This section discusses how to upgrade ViewCVS 1.0.x to ViewVC 1.1.x.</p>
<div class="h3">
+<h3>Mod_Python Stubs</h3>
+
+<p>The Mod_Python stub scripts haved been renamed from
+ <code>viewvc.py</code> and <code>query.py</code> to
+ <code>viewvc_mp.py</code> and <code>query_mp.py</code>,
+ respectively, to avoid triggering an Exception from Mod_Python's
+ module import loop detection logic. You'll need to update your
+ Apache configuration files to point to the new script names.</p>
+
+</div>
+
+<div class="h3">
<h3>Configuration Options</h3>
<p>In ViewVC 1.1.0, a new "utilities" section was added to the
@@ -195,6 +207,9 @@
changed, so you may need to replace copies of the old scripts you
put in other directories.</p>
+</div>
+
+<div class="h3">
<h3>Checkin Database</h3>
<p>ViewVC 1.0 reads and writes commit times in the MySQL database in
@@ -205,6 +220,9 @@
is also possible to enable a backwards compatibility mode by
setting <code>utc_time = 0</code> at the top of lib/dbi.py</p>
+</div>
+
+<div class="h3">
<h3>"checkout_magic" Option</h3>
<p>In ViewVC 1.0, the <code>checkout_magic</code> option has been
Modified: trunk/viewvc-install
Url:
http://viewvc.tigris.org/source/browse/viewvc/trunk/viewvc-install?view=diff&rev=1536&p1=trunk/viewvc-install&p2=trunk/viewvc-install&r1=1535&r2=1536
==============================================================================
--- trunk/viewvc-install (original)
+++ trunk/viewvc-install 2007-03-09 08:04:31-0800
@@ -49,8 +49,8 @@
FILE_INFO_LIST = [
("bin/cgi/viewvc.cgi", "bin/cgi/viewvc.cgi", 0755, 1, 0, 0),
("bin/cgi/query.cgi", "bin/cgi/query.cgi", 0755, 1, 0, 0),
- ("bin/mod_python/viewvc.py", "bin/mod_python/viewvc.py", 0755, 1, 0, 0),
- ("bin/mod_python/query.py", "bin/mod_python/query.py", 0755, 1, 0, 0),
+ ("bin/mod_python/viewvc_mp.py", "bin/mod_python/viewvc_mp.py", 0755, 1,
0, 0),
+ ("bin/mod_python/query_mp.py", "bin/mod_python/query_mp.py", 0755, 1,
0, 0),
("bin/mod_python/handler.py", "bin/mod_python/handler.py", 0755, 1, 0, 0),
("bin/mod_python/.htaccess", "bin/mod_python/.htaccess", 0755, 0, 0, 0),
("bin/standalone.py", "bin/standalone.py", 0755, 1, 0, 0),
|