[PyCrust-cvs] PyCrust/wxd wxPython.txt,1.1,1.2
Brought to you by:
pobrien
From: <po...@us...> - 2003-03-22 16:03:50
|
Update of /cvsroot/pycrust/PyCrust/wxd In directory sc8-pr-cvs1:/tmp/cvs-serv21211 Modified Files: wxPython.txt Log Message: Rearranged the order of stuff. Index: wxPython.txt =================================================================== RCS file: /cvsroot/pycrust/PyCrust/wxd/wxPython.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wxPython.txt 22 Mar 2003 15:58:49 -0000 1.1 --- wxPython.txt 22 Mar 2003 16:03:47 -0000 1.2 *************** *** 34,61 **** ! Source Document ! =============== ! The source document is named wxPython.txt and is located in the ! PyCrust/wxd directory. It is written using a fantastic formatting ! convention called reStructuredText. The wxPython.html file is created ! using the Docutils utilities, which can turn reStructuredText ! documents into html, xml, pdf, and even OpenOffice files. ! Some items in the source text file look like this:: ! .. This is text from the wxWindows documentation that needs to be ! translated into something appropriate for the wxPython version. ! The two dots followed by uniformly indented text turns this ! paragraph into a reStructuredText comment, so it doesn't appear ! in any output file, such as the html file. ! They have been commented out and are awaiting editorial review and a ! rewrite so that they make sense in the context of wxPython. Feel free ! to send me suggestions for rewording these, or any other parts of this ! document that you think need improving. I will be eternally grateful ! to you and will show my gratitude by adding your name to the list of ! contributors. (Contributors who also send me gifts of coffee, ! chocolate, or currency will have their names listed in bold.) --- 34,85 ---- ! What is wxPython? ! ================= ! wxPython is a GUI toolkit for the Python programming language. It ! allows Python programmers to create programs with a robust, highly ! functional graphical user interface, simply and easily. It is ! implemented as a Python extension module (native code) that wraps the ! popular wxWindows cross platform GUI library, which is written in C++. ! Like Python and wxWindows, wxPython is Open Source, which means that ! it is free for anyone to use and the source code is available for ! anyone to look at and modify. And anyone can contribute fixes or ! enhnacments to the project. ! wxPython is a cross-platform toolkit. This means that the same ! program will run on multiple platforms without modification. ! Currently supported platforms are 32-bit Microsoft Windows, most Unix ! or unix-like systems, and Macintosh OS X. ! Since the language is Python, wxPython programs are simple, easy to ! write and easy to understand. ! ! ! wxPython requirements ! ===================== ! ! To make use of wxPython, you currently need one of the following ! setups. ! ! MS-Windows ! ---------- ! ! * A 486 or higher PC running MS Windows. ! * At least ?? MB of disk space. ! ! Linux or Unix ! ------------- ! ! * Almost any C++ compiler, including GNU C++ (EGCS 1.1.1 or above). ! * Almost any Unix workstation, and one of: GTK+ 1.2, GTK+ 2.0, Motif ! 1.2 or higher, Lesstif. ! * At least ?? MB of disk space. ! ! Mac OS X ! -------- ! ! * A PowerPC Mac running Mac OS X 10.x. ! * At least ?? MB of disk space. *************** *** 111,115 **** toolkits such as Motif, GTK+ and MFC. - The importance of using a platform-independent class library cannot be overstated, since GUI application development is very time-consuming, --- 135,138 ---- *************** *** 160,213 **** - What is wxPython? - ================= - - wxPython is a GUI toolkit for the Python programming language. It - allows Python programmers to create programs with a robust, highly - functional graphical user interface, simply and easily. It is - implemented as a Python extension module (native code) that wraps the - popular wxWindows cross platform GUI library, which is written in C++. - - Like Python and wxWindows, wxPython is Open Source, which means that - it is free for anyone to use and the source code is available for - anyone to look at and modify. And anyone can contribute fixes or - enhnacments to the project. - - wxPython is a cross-platform toolkit. This means that the same - program will run on multiple platforms without modification. - Currently supported platforms are 32-bit Microsoft Windows, most Unix - or unix-like systems, and Macintosh OS X. - - Since the language is Python, wxPython programs are simple, easy to - write and easy to understand. - - - wxPython requirements - ===================== - - To make use of wxPython, you currently need one of the following - setups. - - MS-Windows - ---------- - - * A 486 or higher PC running MS Windows. - * At least ?? MB of disk space. - - Linux or Unix - ------------- - - * Almost any C++ compiler, including GNU C++ (EGCS 1.1.1 or above). - * Almost any Unix workstation, and one of: GTK+ 1.2, GTK+ 2.0, Motif - 1.2 or higher, Lesstif. - * At least ?? MB of disk space. - - Mac OS X - -------- - - * A PowerPC Mac running Mac OS X 10.x. - * At least ?? MB of disk space. - - wxPython Overview ================= --- 183,186 ---- *************** *** 926,929 **** --- 899,928 ---- Not done yet. + + + Source Document + =============== + + The source document is named wxPython.txt and is located in the + PyCrust/wxd directory. It is written using a fantastic formatting + convention called reStructuredText. The wxPython.html file is created + using the Docutils utilities, which can turn reStructuredText + documents into html, xml, pdf, and even OpenOffice files. + + Some items in the source text file look like this:: + + .. This is text from the wxWindows documentation that needs to be + translated into something appropriate for the wxPython version. + The two dots followed by uniformly indented text turns this + paragraph into a reStructuredText comment, so it doesn't appear + in any output file, such as the html file. + + They have been commented out and are awaiting editorial review and a + rewrite so that they make sense in the context of wxPython. Feel free + to send me suggestions for rewording these, or any other parts of this + document that you think need improving. I will be eternally grateful + to you and will show my gratitude by adding your name to the list of + contributors. (Contributors who also send me gifts of coffee, + chocolate, or currency will have their names listed in bold.) |