mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
Rename some doc files --> *.rst for editor support and for GitHub visibility.
This commit is contained in:
19
.gitignore
vendored
19
.gitignore
vendored
@@ -6,29 +6,26 @@
|
||||
.waf-*
|
||||
.waf3-*
|
||||
.lock-waf*
|
||||
wingdbstub.py*
|
||||
mydbstub.py*
|
||||
|
||||
.idea
|
||||
|
||||
# /
|
||||
/.hg
|
||||
/.hgignore
|
||||
/build
|
||||
/build_waf
|
||||
/tmp
|
||||
/dist
|
||||
/license
|
||||
/*.egg-info
|
||||
/REV.txt
|
||||
|
||||
# /bin/
|
||||
/bin/sip-*
|
||||
/bin/waf-*
|
||||
/bin/waf3-*
|
||||
/bin/doxygen-*
|
||||
|
||||
# /docs/sphinx/
|
||||
/docs/html
|
||||
/docs/sphinx/*.txt
|
||||
/docs/sphinx/*.rst
|
||||
/docs/sphinx/*.pkl
|
||||
/docs/sphinx/*.inc
|
||||
/docs/sphinx/*.lst
|
||||
@@ -38,20 +35,14 @@
|
||||
/docs/sphinx/build
|
||||
|
||||
|
||||
# /sip/cpp/
|
||||
/sip/cpp/sip.signature
|
||||
/sip/cpp/*.sbf
|
||||
/sip/cpp/*.h
|
||||
/sip/cpp/*.cpp
|
||||
/sip/cpp-*
|
||||
|
||||
# /sip/gen/
|
||||
/sip/gen/*.sip
|
||||
|
||||
# /sip/siplib/
|
||||
/sip/siplib/.update
|
||||
|
||||
# /wx/
|
||||
/wx/*.py
|
||||
/wx/*.pyc
|
||||
/wx/*.pi
|
||||
@@ -61,6 +52,6 @@
|
||||
/wx/*.dylib
|
||||
/wx/libwx_*
|
||||
/wx/locale
|
||||
/unittests/lib_pubsub_provider_actual.py
|
||||
wingdbstub.py*
|
||||
|
||||
/unittests/lib_pubsub_provider_actual.py
|
||||
|
||||
|
||||
@@ -196,8 +196,8 @@ Other Dev Stuff
|
||||
|
||||
* Add meaningful __hash__ methods for wx.Colour, wx.Point, etc.?
|
||||
|
||||
* Double-check wx.PyEvent and wx.PyCommandEvent, does the
|
||||
__getattr__ etc. work with properties? See:
|
||||
* Double-check wx.PyEvent and wx.PyCommandEvent, does the __getattr__,
|
||||
etc. work with properties? See:
|
||||
https://groups.google.com/d/msg/wxpython-dev/dMrpaKs_d0U/nVMY7lMvAwAJ
|
||||
|
||||
|
||||
13
b
13
b
@@ -2,16 +2,13 @@
|
||||
|
||||
##set -o xtrace
|
||||
|
||||
#PYVER=2.7
|
||||
#PYVER2=27
|
||||
PYVER=3.4
|
||||
PYVER2=34
|
||||
|
||||
if [ "$OSTYPE" = "cygwin" ]; then
|
||||
$TOOLS/python$PYVER2/python.exe -u build.py "$@"
|
||||
PYTHON=`which python.exe`
|
||||
echo $PYTHON
|
||||
$PYTHON -u build.py "$@"
|
||||
else
|
||||
PATH=/usr/local/bin:$PATH
|
||||
PYTHON=`which python$PYVER`
|
||||
PYTHON=`which python`
|
||||
echo $PYTHON
|
||||
$PYTHON -u build.py "$@"
|
||||
fi
|
||||
|
||||
|
||||
11
build.py
11
build.py
@@ -888,11 +888,12 @@ def cmd_sphinx(options, args):
|
||||
SphinxIndexes(sphinxDir)
|
||||
GenGallery()
|
||||
|
||||
todo = os.path.join(phoenixDir(), 'TODO.txt')
|
||||
copyIfNewer(todo, sphinxDir)
|
||||
txtFiles = glob.glob(os.path.join(phoenixDir(), 'docs', '*.txt'))
|
||||
for txtFile in txtFiles:
|
||||
copyIfNewer(txtFile, sphinxDir)
|
||||
# Copy the hand-edited top level doc files too
|
||||
rstFiles = [os.path.join(phoenixDir(), 'TODO.rst')] + \
|
||||
glob.glob(os.path.join(phoenixDir(), 'docs', '*.rst'))
|
||||
for rst in rstFiles:
|
||||
txt = os.path.join(sphinxDir, os.path.splitext(os.path.basename(rst))[0] + '.txt')
|
||||
copyIfNewer(rst, txt)
|
||||
|
||||
MakeHeadings()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user