diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html
index 13c99b0d18..c4829af165 100644
--- a/wxPython/docs/CHANGES.html
+++ b/wxPython/docs/CHANGES.html
@@ -5,295 +5,53 @@
Recent Changes for wxPython
-
+
+
+
Patch [ 1583183 ] Fixes printing/print preview inconsistencies
+
Add events API to wxHtmlWindow (patch #1504493 by Francesco Montorsi)
+
Added wxTB_RIGHT style for right-aligned toolbars (Igor Korot)
+
Added New Zealand NZST and NZDT timezone support to wx.DateTime.
+
wx.Window.GetAdjustedBestSize is deprecated. In every conceivable
+scenario GetEffectiveMinSize is probably what you want to use instead.
+
wx.Image: Gained support for TGA image file format.
+
wx.aui: The classes in the wx.aui module have been renamed to be more
+consistent with each other, and make it easier to recognize in the
+docs and etc. that they belong together.
+
+FrameManager --> AuiManager
+FrameManagerEvent --> AuiManagerEvent
+PaneInfo --> AuiPaneInfo
+FloatingPane --> AuiFloatingPane
+DockArt --> AuiDockArt
+TabArt --> AuiTabArt
+AuiMultiNotebook --> AuiNotebook
+AuiNotebookEvent --> AuiNotebookEvent
+
wx.lib.customtreectrl: A patch from Frame Niessink which adds an
+additional style (TR_AUTO_CHECK_PARENT) that (un)checks a parent when
+all children are (un)checked.
+
wx.animate.AnimationCtrl fixed to display inactive bitmap at start
+(patch 1590192)
+
Patch from Dj Gilcrease adding the FNB_HIDE_ON_SINGLE_TAB style flag
+for wx.lib.flatnotebook.
+
wx.Window.GetBestFittingSize has been renamed to GetEffectiveMinSize.
+SetBestFittingSize has been renamed to SetInitialSize, since it is
+most often used only to set the initial (and minimal) size of a
+widget.
+
The QuickTime backend for wx.media.MediaCtrl on MS Windows works
+again. Just pass szBackend=wx.media.MEDIABACKEND_QUICKTIME to the
+constructor to use it instead of the default ActiveMovie backend,
+(assuming the quicktime DLLs are available on the system.)
+
+
+
@@ -313,7 +71,7 @@ SystemOption to zero. In a future release this will be the default.
the new wx.GraphicsContext and wx.GraphicsPath classes.
-
+
@@ -340,7 +98,7 @@ correctly with this.
Fixed refcount leak in wx.Window.GetChildren.
-
+
@@ -603,7 +361,7 @@ wx.PaintDC or wx.BufferedPaintDC. This uses the new
wx.Window.IsDoubleBuffered method.
-
+
@@ -640,7 +398,7 @@ machines, but at least all compile errors and warnings related to it
have been resolved.
-
+
@@ -674,7 +432,7 @@ already shown.
is selected only with the keyboard.
-
+
@@ -736,7 +494,7 @@ zoomed plot and move it around with a mouse drag.
Added wx.StandardPaths.GetDocumentsDir() (patch 1214360)
-
+
@@ -905,7 +663,7 @@ be easy to accommodate, all you need to do is add a parenthesis
pair: (...x, y, ...) ---> (...(x,y), ...)
-
+
@@ -933,7 +691,7 @@ calls.
change will get written at the next flush.
-
+
@@ -1046,7 +804,7 @@ there is a range of allowed values (so a wx.SpinCtrl is used instead
of a wx.TextCtrl.)
-
+
@@ -1124,7 +882,7 @@ EVT_KEY_UP and EVT_TEXT events from its embedded text control.
-
+
@@ -1193,7 +951,7 @@ folks.
Added the ActiveGrid IDE as a sample application.
-
+
@@ -1427,7 +1185,7 @@ wx.Image.
-
+
@@ -1584,7 +1342,7 @@ it.
version installs, and comes with an uninstaller script.
-
+
@@ -1616,7 +1374,7 @@ wxCheckListBox.
-
+
@@ -1800,7 +1558,7 @@ MigrationGuide for more details on using the new module.
Floats are allowed again as function parameters where ints are expected.
-
+
@@ -1813,7 +1571,7 @@ demonstrated in the Threads sample in the demo.
Added Chris Barker's FloatCanvas.
-
+
@@ -1868,7 +1626,7 @@ and Spacers can be specified with a wxSize (or 2-tuple) parameter
Added wxCursorFromBits.
-
+
@@ -1908,7 +1666,7 @@ think I am testing in the future...
Updated to 0.9b of PyCrust.
-
+
@@ -1969,7 +1727,7 @@ doesn't have a standard place for them.
Updated to the 0.9a version of PyCrust
-
+
@@ -1978,7 +1736,7 @@ doesn't have a standard place for them.
Added wxPyColourChooser by Michael Gilfix.
-
+
@@ -1988,14 +1746,14 @@ enhancements.
wxPython/lib/dialogs.py for more details.
-
+
@@ -2053,7 +1811,7 @@ HTMLHelp viewer does. Changed how the wxPythonDocs tarball is built
and added a script to launch the doc viewer.
-
+
@@ -2199,7 +1957,7 @@ example.
Added wxTimeCtrl from Will Sadkin.
-
+
@@ -2209,7 +1967,7 @@ without barfing and is also still compatible with Python debuggers.
Added some patches from library contributors.
-
+
@@ -2295,7 +2053,7 @@ wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more
details.
-
+
@@ -2312,7 +2070,7 @@ subclass wxXmlResourceHandler, etc...
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
-
+
@@ -2412,7 +2170,7 @@ by having smaller functional apps to play with. They can be found in
wxPython/samples.
-
+
@@ -2420,7 +2178,7 @@ wxPython/samples.
changes and fixes in the wxWindows library.
-
+
diff --git a/wxPython/docs/INSTALL.html b/wxPython/docs/INSTALL.html
index 9c3570c25b..f7fcb9e9da 100644
--- a/wxPython/docs/INSTALL.html
+++ b/wxPython/docs/INSTALL.html
@@ -5,289 +5,7 @@
Installing wxPython 2.7 from Source
-
+
diff --git a/wxPython/docs/MigrationGuide.html b/wxPython/docs/MigrationGuide.html
index 8c00b5a60a..bb00eb5674 100644
--- a/wxPython/docs/MigrationGuide.html
+++ b/wxPython/docs/MigrationGuide.html
@@ -5,289 +5,7 @@
wxPython 2.6 Migration Guide
-
+
diff --git a/wxPython/docs/PyManual.html b/wxPython/docs/PyManual.html
index 94783053a0..1a1199e639 100644
--- a/wxPython/docs/PyManual.html
+++ b/wxPython/docs/PyManual.html
@@ -8,289 +8,7 @@
-
+
diff --git a/wxPython/docs/README.html b/wxPython/docs/README.html
index cbb71134d9..8b3b9c6b93 100644
--- a/wxPython/docs/README.html
+++ b/wxPython/docs/README.html
@@ -5,289 +5,7 @@
-
+
diff --git a/wxPython/docs/default.css b/wxPython/docs/default.css
index 7343b12bc9..e94df15464 100644
--- a/wxPython/docs/default.css
+++ b/wxPython/docs/default.css
@@ -1,26 +1,50 @@
/*
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
-:date: $Date$
-:version: $Revision$
-:copyright: This stylesheet has been placed in the public domain.
+:Date: $Date$
+:Revision: $Revision$
+:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
+
+See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
+customize this style sheet.
*/
-.first {
- margin-top: 0 }
+/* used to remove borders from tables and images */
+.borderless, table.borderless td, table.borderless th {
+ border: 0 }
-.last {
- margin-bottom: 0 }
+table.borderless td, table.borderless th {
+ /* Override padding for "table.docutils td" with "! important".
+ The right padding separates the table cells. */
+ padding: 0 0.5em 0 0 ! important }
+
+.first {
+ /* Override more specific margin styles with "! important". */
+ margin-top: 0 ! important }
+
+.last, .with-subtitle {
+ margin-bottom: 0 ! important }
+
+.hidden {
+ display: none }
a.toc-backref {
text-decoration: none ;
color: black }
-dd {
+blockquote.epigraph {
+ margin: 2em 5em ; }
+
+dl.docutils dd {
margin-bottom: 0.5em }
+/* Uncomment (and remove this text!) to get bold-faced definition list terms
+dl.docutils dt {
+ font-weight: bold }
+*/
+
div.abstract {
margin: 2em 5em }
@@ -28,12 +52,18 @@ div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
-div.attention, div.caution, div.danger, div.error, div.hint,
-div.important, div.note, div.tip, div.warning {
+div.admonition, div.attention, div.caution, div.danger, div.error,
+div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
+div.admonition p.admonition-title, div.hint p.admonition-title,
+div.important p.admonition-title, div.note p.admonition-title,
+div.tip p.admonition-title {
+ font-weight: bold ;
+ font-family: sans-serif }
+
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title {
@@ -41,10 +71,14 @@ div.warning p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
-div.hint p.admonition-title, div.important p.admonition-title,
-div.note p.admonition-title, div.tip p.admonition-title {
- font-weight: bold ;
- font-family: sans-serif }
+/* Uncomment (and remove this text!) to get reduced vertical space in
+ compound paragraphs.
+div.compound .compound-first, div.compound .compound-middle {
+ margin-bottom: 0.5em }
+
+div.compound .compound-last, div.compound .compound-middle {
+ margin-top: 0.5em }
+*/
div.dedication {
margin: 2em 5em ;
@@ -56,18 +90,35 @@ div.dedication p.topic-title {
font-style: normal }
div.figure {
- margin-left: 2em }
+ margin-left: 2em ;
+ margin-right: 2em }
div.footer, div.header {
+ clear: both;
font-size: smaller }
+div.line-block {
+ display: block ;
+ margin-top: 1em ;
+ margin-bottom: 1em }
+
+div.line-block div.line-block {
+ margin-top: 0 ;
+ margin-bottom: 0 ;
+ margin-left: 1.5em }
+
div.sidebar {
margin-left: 1em ;
border: medium outset ;
- padding: 0em 1em ;
+ padding: 1em ;
background-color: #ffffee ;
width: 40% ;
- float: right }
+ float: right ;
+ clear: right }
+
+div.sidebar p.rubric {
+ font-family: sans-serif ;
+ font-size: medium }
div.system-messages {
margin: 5em }
@@ -86,15 +137,25 @@ div.system-message p.system-message-title {
div.topic {
margin: 2em }
+h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
+h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
+ margin-top: 0.4em }
+
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
-hr {
+hr.docutils {
width: 75% }
+img.align-left {
+ clear: left }
+
+img.align-right {
+ clear: right }
+
ol.simple, ul.simple {
margin-bottom: 1em }
@@ -113,6 +174,10 @@ ol.lowerroman {
ol.upperroman {
list-style: upper-roman }
+p.attribution {
+ text-align: right ;
+ margin-left: 50% }
+
p.caption {
font-style: italic }
@@ -123,6 +188,12 @@ p.credits {
p.label {
white-space: nowrap }
+p.rubric {
+ font-weight: bold ;
+ font-size: larger ;
+ color: maroon ;
+ text-align: center }
+
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
@@ -141,10 +212,6 @@ pre.address {
font-family: serif ;
font-size: 100% }
-pre.line-block {
- font-family: serif ;
- font-size: 100% }
-
pre.literal-block, pre.doctest-block {
margin-left: 2em ;
margin-right: 2em ;
@@ -164,44 +231,48 @@ span.interpreted {
span.option {
white-space: nowrap }
-span.option-argument {
- font-style: italic }
-
span.pre {
white-space: pre }
span.problematic {
color: red }
-table {
- margin-top: 0.5em ;
- margin-bottom: 0.5em }
+span.section-subtitle {
+ /* font-size relative to parent (h1..h6 element) */
+ font-size: 80% }
table.citation {
- border-left: solid thin gray ;
- padding-left: 0.5ex }
+ border-left: solid 1px gray;
+ margin-left: 1px }
table.docinfo {
margin: 2em 4em }
-table.footnote {
- border-left: solid thin black ;
- padding-left: 0.5ex }
+table.docutils {
+ margin-top: 0.5em ;
+ margin-bottom: 0.5em }
-td, th {
+table.footnote {
+ border-left: solid 1px black;
+ margin-left: 1px }
+
+table.docutils td, table.docutils th,
+table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
-th.docinfo-name, th.field-name {
+table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
- white-space: nowrap }
+ white-space: nowrap ;
+ padding-left: 0 }
-h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
+h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
+h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
-tt {
+tt.docutils {
background-color: #eeeeee }
ul.auto-toc {
diff --git a/wxPython/docs/docutils.conf b/wxPython/docs/docutils.conf
index ffe24c2e7d..87e6b28c02 100644
--- a/wxPython/docs/docutils.conf
+++ b/wxPython/docs/docutils.conf
@@ -2,3 +2,6 @@
output_encoding: iso-8859-1
source_link: 0
generator: 0
+
+embed_stylesheet: 0
+stylesheet_path: default.css
diff --git a/wxPython/docs/wxPackage.html b/wxPython/docs/wxPackage.html
index 303e1b20fa..4cf2f7af55 100644
--- a/wxPython/docs/wxPackage.html
+++ b/wxPython/docs/wxPackage.html
@@ -9,289 +9,7 @@
-
+
diff --git a/wxPython/docs/wxPythonManual.html b/wxPython/docs/wxPythonManual.html
index 02459a305b..fbd5d1488c 100644
--- a/wxPython/docs/wxPythonManual.html
+++ b/wxPython/docs/wxPythonManual.html
@@ -8,289 +8,7 @@
-
+