Set eol type to native

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-07-14 19:47:15 +00:00
parent a3f21f8f92
commit d888f0d24d
3 changed files with 46 additions and 46 deletions

View File

@@ -1,17 +1,17 @@
For wxPython users:
The code in this wx/lib/pubsub folder is taken verbatim from the PyPubSub
project on SourceForge.net. Pubsub originated as a wxPython lib, but it is now
a standalone project on SourceForge. It is included as part of your wxPython
installation for convenience to wxPython users and for backward compatiblity.
The source distribution on SF.net tends to be updated more often. If you wish to
install pubsub standalone you can follow the instructions at
http://pubsub.sourceforge.net/installation.html.
The documentation for pubsub is at http://pubsub.sourceforge.net, and some examples
are in wx/lib/pubsub/examples. There are also a couple pages on the WxPython wiki
that discuss usage of pubsub in wxPython.
Oliver Schoenborn
Dec 2011
For wxPython users:
The code in this wx/lib/pubsub folder is taken verbatim from the PyPubSub
project on SourceForge.net. Pubsub originated as a wxPython lib, but it is now
a standalone project on SourceForge. It is included as part of your wxPython
installation for convenience to wxPython users and for backward compatiblity.
The source distribution on SF.net tends to be updated more often. If you wish to
install pubsub standalone you can follow the instructions at
http://pubsub.sourceforge.net/installation.html.
The documentation for pubsub is at http://pubsub.sourceforge.net, and some examples
are in wx/lib/pubsub/examples. There are also a couple pages on the WxPython wiki
that discuss usage of pubsub in wxPython.
Oliver Schoenborn
Dec 2011

View File

@@ -1,9 +1,9 @@
Release Notes: PyPubSub 3.1.2
This is a minor release for small improvements made (see docs/CHANGELOG.txt)
based on feedback from user community. Also extended the documentation. See
pubsub.sourceforge.net for installation and usage. See the examples folder for
some useful examples.
Oliver Schoenborn
Nov 2011
Release Notes: PyPubSub 3.1.2
This is a minor release for small improvements made (see docs/CHANGELOG.txt)
based on feedback from user community. Also extended the documentation. See
pubsub.sourceforge.net for installation and usage. See the examples folder for
some useful examples.
Oliver Schoenborn
Nov 2011

View File

@@ -1,20 +1,20 @@
'''
Sphinx autodoc requires direct import of pubsub.pubsub1.pub.
But in that case, the pub module no longer has access to
sibbling modules from pubsub package. By adding ".." to
sys.path, "import something" in pubsub1/pub.py find the
module in pubsub and sphinx autodoc works as expected.
This module should be used from sphinx's conf.py.
'''
# add the parent folder to sys.path because Sphinx needs to import
# pubsub1 as a module rather than via the mechanism built into pubsub
# module.
import sys, os
sphinxExtPath = os.path.normpath(
os.path.join(
os.path.dirname(__file__),
'..')
)
sys.path.append( sphinxExtPath )
'''
Sphinx autodoc requires direct import of pubsub.pubsub1.pub.
But in that case, the pub module no longer has access to
sibbling modules from pubsub package. By adding ".." to
sys.path, "import something" in pubsub1/pub.py find the
module in pubsub and sphinx autodoc works as expected.
This module should be used from sphinx's conf.py.
'''
# add the parent folder to sys.path because Sphinx needs to import
# pubsub1 as a module rather than via the mechanism built into pubsub
# module.
import sys, os
sphinxExtPath = os.path.normpath(
os.path.join(
os.path.dirname(__file__),
'..')
)
sys.path.append( sphinxExtPath )