[Python-checkins] r64008 - in sandbox/trunk/ttk-gsoc/Doc/library: tk.rst.diff ttk.rst

guilherme.polo python-checkins at python.org
Sat Jun 7 13:39:29 CEST 2008


Author: guilherme.polo
Date: Sat Jun  7 13:39:29 2008
New Revision: 64008

Log:
Added a new reference;
Updated tk.rst.diff to match current tk.rst at python-trunk.


Modified:
   sandbox/trunk/ttk-gsoc/Doc/library/tk.rst.diff
   sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst

Modified: sandbox/trunk/ttk-gsoc/Doc/library/tk.rst.diff
==============================================================================
--- sandbox/trunk/ttk-gsoc/Doc/library/tk.rst.diff	(original)
+++ sandbox/trunk/ttk-gsoc/Doc/library/tk.rst.diff	Sat Jun  7 13:39:29 2008
@@ -1,23 +1,22 @@
 Index: Doc/library/tk.rst
 ===================================================================
---- Doc/library/tk.rst	(revision 63398)
+--- Doc/library/tk.rst	(revision 64007)
 +++ Doc/library/tk.rst	(working copy)
-@@ -12,8 +12,8 @@
+@@ -12,7 +12,8 @@
  
  Tk/Tcl has long been an integral part of Python.  It provides a robust and
  platform independent windowing toolkit, that is available to Python programmers
--using the :mod:`tkinter` package, and its extension, the :mod:`tkinter.tix` 
--module.
+-using the :mod:`Tkinter` module, and its extension, the :mod:`Tix` module.
 +using the :mod:`tkinter` package, its extension, the :mod:`tkinter.tix` module
 +and the :mod:`ttk` module for using themed widgets.
  
- The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. To
- use :mod:`tkinter`, you don't need to write Tcl code, but you will need to
-@@ -36,6 +36,7 @@
-    tkinter.tix.rst
-    tkinter.scrolledtext.rst
-    tkinter.turtle.rst
+ The :mod:`Tkinter` module is a thin object-oriented layer on top of Tcl/Tk. To
+ use :mod:`Tkinter`, you don't need to write Tcl code, but you will need to
+@@ -32,6 +33,7 @@
+ .. toctree::
+    
+    tkinter.rst
 +   ttk.rst
-    idle.rst
-    othergui.rst
- 
+    tix.rst
+    scrolledtext.rst
+    turtle.rst

Modified: sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst
==============================================================================
--- sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst	(original)
+++ sandbox/trunk/ttk-gsoc/Doc/library/ttk.rst	Sat Jun  7 13:39:29 2008
@@ -53,6 +53,11 @@
 longer present in Ttk widgets, instead you will have to use :class:`ttk.Style`
 to achieve the same (or better) styling.
 
+.. seealso::
+   `Converting existing applications to use the Tile widgets <http://tktable.sourceforge.net/tile/doc/converting.txt>`_
+     A text which talks in Tcl terms about differences typically found when
+     moving applications to use the new widgets.
+
 
 Ttk Widgets
 -----------


More information about the Python-checkins mailing list