+
|
- wx Core Classes
- The classes which appear in the wx namespace
+ Core wx Classes
+ The classes which appear in the main wx namespace
- wx Core Functions
- Standalone functions
+ Core Functions
+ Standalone functions in the main wx namespace
wx.adv
Less commonly used or more advanced classes
@@ -75,7 +75,7 @@
Widget and supporting classes for displaying and editing tabular data
|
-
+ |
wx.lib
Our pure-Python library of widgets
@@ -83,8 +83,7 @@
Classes for embedding OpenGL views in a window
wx.richtext
- A generic, ground-up implementation of a text control capable of showing multiple styles and images.
-
+ A generic, ground-up implementation of a text control capable of showing multiple text styles and images.
wx.xrc
Classes for loading widgets and layout from XML
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
|