# # # rename "config.py" # to "config.py.example" # # patch "config.py.example" # from [11fcbdb34545f45933e77c0af3feebac841c554f] # to [e98952ba36491228c41f977b07a38e19bf4c3283] # # patch "help.psp" # from [98ca84f3b9ac0904360589b128e5c9b089f7843c] # to [08f9f74ae634f45675834981fb19be7d5b66b9d4] # # patch "index.psp" # from [540c27f70a7e6c5eb2e9a25e920a7809cabc4382] # to [e2874902c6b07d2565e0d0eae12ec350faaa5d82] # # patch "tags.psp" # from [2857513cd8656858bc8ec6e6da69f2fc13c354be] # to [338186dff509e7944a48016fbb87180dbb6a6c76] # ============================================================ --- config.py 11fcbdb34545f45933e77c0af3feebac841c554f +++ config.py.example e98952ba36491228c41f977b07a38e19bf4c3283 @@ -1,7 +1,34 @@ +# +# config.py +# +# This python script is imported by ViewMTN +# Note that changes to the script may not be +# noticed immediately by ViewMTN, as mod_python +# caches imported Python modules. +# +# If config changes are not picked up, reloading +# the web server should solve the issue. +# + import sys +# the path to the 'monotone' binary monotone = '/opt/monotone/bin/monotone' + +# the monotone database to be shared out +# obviously, everything in this database might +# become public if something goes wrong; probably +# a good idea not to leave your private key in it dbfile = '/home/grahame/monotone/db/monotone.db' + +# a directory (must be writable by the web user) +# in which viewmtn can output graph files +# (you should set up a cronjob to delete old ones +# periodically) graphdir = '/home/grahame/public_html/viewmtn/graph/' + +# a URL, relative or absolute, at which the files +# in the 'graphdir' directory can be found. Should +# end in a '/' character graphuri = 'graph/' ============================================================ --- help.psp 98ca84f3b9ac0904360589b128e5c9b089f7843c +++ help.psp 08f9f74ae634f45675834981fb19be7d5b66b9d4 @@ -18,8 +18,9 @@

ViewMTN is a web interface to the Monotone revision control -system. These web pages provide an interface to the data controlled -within a particular Monotone database.

+system. These web pages provide various methods to access the data +controlled within a particular Monotone database. +

To make full use of this web interface, it is recommended that you read @@ -27,9 +28,9 @@ manual.

-Feature suggestions, bug reports, patches, ... are welcome. Please go +Feature suggestions, bug reports and patches are welcome. Please go to the ViewMTN -home page and follow the contact instructions there.

+software page and follow the contact instructions there.

<% req.write(template.footer(info)) ============================================================ --- index.psp 540c27f70a7e6c5eb2e9a25e920a7809cabc4382 +++ index.psp e2874902c6b07d2565e0d0eae12ec350faaa5d82 @@ -33,10 +33,10 @@ %>

There are <%=len(branches)%> branches in this Monotone database. -Select a branch to view the files contained within it in the current -head revision. If there are multiple head revisions, you will be -presented with a choice. -

+Select a branch to view its current head revision. If there are multiple +head revisions, you will be presented with a choice. The list of tagged revisions could be helpful if you are looking +for a particular revision.

============================================================ --- tags.psp 2857513cd8656858bc8ec6e6da69f2fc13c354be +++ tags.psp 338186dff509e7944a48016fbb87180dbb6a6c76 @@ -31,8 +31,9 @@ else: %>

-To view a particular tag, select it from the list of tags contained -in this Monotone database. +A tag marks a particular revision that is in some way significant. A +common use of tags is to mark public release of a piece of software. +To view a particular tag, select it from the list below.

Branch