# # # patch ".htaccess" # from [21143b11977f7a6c554e97c6270ffd6a9207febb] # to [e3915658cb464d05f21332e03d30dca5d94fe776] # # patch "README" # from [ef5f29695488ecc1a20ecf8d0626bbcece1baee4] # to [440eec971e7bb61ccbb61634deb2729bb25931cd] # ============================================================ --- .htaccess 21143b11977f7a6c554e97c6270ffd6a9207febb +++ .htaccess e3915658cb464d05f21332e03d30dca5d94fe776 @@ -1,5 +1,4 @@ AddHandler mod_python .psp -#PythonHandler mod_python.psp PythonHandler wrapper PythonInterpreter viewmtn AddHandler mod_python .py ============================================================ --- README ef5f29695488ecc1a20ecf8d0626bbcece1baee4 +++ README 440eec971e7bb61ccbb61634deb2729bb25931cd @@ -5,7 +5,7 @@ A web interface to monotone. See "LICENSE" for distribution terms. ViewMTN is Copyright 2005 Grahame Bowland. -The minimum version of monotone required is: 0.19 +The minimum version of monotone required is: 0.21 For the graphs to work you'll need dotty installed. @@ -14,7 +14,26 @@ When installing be sure to copy config.py.example to config.py, and then edit config.py (paying attention to the comments!) -Bugs, suggestions, feedback to: +Common issues +------------- + +If you are getting a 404 error for "getfile.py", make sure that you have +updated ".htacess" to include the following line. + PythonHandler wrapper +"wrapper.py" contains several Python functions which are called +for various pages that do not need to go through mod_python's PSP +framework. The above line causes all page requests to go through +wrapper.py, which decides which function (or PSP file) should be called +to handle the request. + +Bugs, suggestions, feedback +--------------------------- + +Send any bugs, suggestions or feedback to: Grahame Bowland PO BOX 3105, Broadway, Nedlands WA 6009 Australia +In particular, please look at the TODO file. If you're interested in +fixing any of the issues listed (or just adding extra TODO entries) +please go ahead. +