Index: /tools/gformat.py
===================================================================
--- /tools/gformat.py	(revision 13983)
+++ /tools/gformat.py	(revision 13984)
@@ -33,4 +33,5 @@
 
 SVN = filter(os.path.isfile, ('/usr/local/bin/svn', '/usr/bin/svn'))[0]
+SVNVERSION = filter(os.path.isfile, ('/usr/local/bin/svnversion', '/usr/bin/svnversion'))[0]
 
 import argparse
@@ -372,5 +373,8 @@
 def generate_title(nodelist):
   """ Main overview page """
-  items = {'root' : "." }
+  items = { \
+        'root'      :   ".",
+        'version'   :   subprocess.Popen([SVNVERSION, "%s/.." % NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0]
+        }
   def fl(spaces, line):
     return (' ' * spaces) + line + '\n'
@@ -394,5 +398,5 @@
     </form>
     <table>
-      <caption><h3>Wireless Leiden Configurator</h3></caption>
+      <caption><h3>Wireless Leiden Configurator  - Revision %(version)s</h3></caption>
   """ % items
 
