diff --git a/docs/sphinx/_templates/main.html b/docs/sphinx/_templates/main.html index 2f1405ca..9ee7dd22 100644 --- a/docs/sphinx/_templates/main.html +++ b/docs/sphinx/_templates/main.html @@ -1,11 +1,11 @@ {% extends "layout.html" %} {% set title = 'Documentation' %} {% block body %} -

Welcome to wxPython (Phoenix)'s documentation!

+

wxPython-Phoenix Reference Documentation

Welcome! This is the documentation for wxPython {{ release }}, last updated |TODAY| from - Subversion revision |SVN|. + revision |VCSREV|.

@@ -47,14 +47,14 @@

Documentation

- - +
+ -
- + - + @@ -75,7 +75,7 @@ Widget and supporting classes for displaying and editing tabular data

+ @@ -83,8 +83,7 @@ Classes for embedding OpenGL views in a window

+ A generic, ground-up implementation of a text control capable of showing multiple text styles and images.

diff --git a/sphinxtools/postprocess.py b/sphinxtools/postprocess.py index 426eb1c4..0d213945 100644 --- a/sphinxtools/postprocess.py +++ b/sphinxtools/postprocess.py @@ -708,9 +708,9 @@ def PostProcess(folder): # ----------------------------------------------------------------------- # def ChangeSVNRevision(text): - SVN_REVISION = getVcsRev() + REVISION = getVcsRev() text = text.replace('|TODAY|', TODAY) - text = text.replace('|SVN|', SVN_REVISION) + text = text.replace('|VCSREV|', REVISION) return text