Skip to content

Commit e1d77cb

Browse files
committed
Replaced remaining 'python-qwt' occurences
1 parent 35b1853 commit e1d77cb

File tree

5 files changed

+26
-15
lines changed

5 files changed

+26
-15
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.spyderproject
22
qwt-6.1.2
33
qwt/tests/demo.png
4-
python-qwt.chm
4+
PythonQwt.chm
55
doc.zip
66

77
# Created by https://www.gitignore.io/api/python

LICENSE

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
python-qwt License Agreement
2-
----------------------------
1+
PythonQwt License Agreement
2+
---------------------------
33

44
[1] Software licensed under the terms of Qwt License
55

@@ -21,7 +21,7 @@ terms of the GPL License from which the PyQwt License 1.0 is derived from
2121
(see [****] for more details).
2222

2323

24-
[*] python-qwt License Agreement for new and exclusive Python material (MIT)
24+
[*] PythonQwt License Agreement for new and exclusive Python material (MIT)
2525

2626
Copyright (c) 2015 Pierre Raybaut
2727

@@ -77,7 +77,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
7777
OTHER DEALINGS IN THE SOFTWARE.
7878

7979

80-
[***] python-qwt License Agreement for code translated from C++ (Qwt License)
80+
[***] PythonQwt License Agreement for code translated from C++ (Qwt License)
8181

8282
Copyright (c) 2002 Uwe Rathmann, for the original C++ code
8383
Copyright (c) 2015 Pierre Raybaut, for the Python translation and optimization
@@ -630,7 +630,7 @@ That's all there is to it!
630630

631631
Copyright (C) 2003-2009 Gerard Vermeulen, for the original PyQwt code
632632
Copyright (c) 2015 Pierre Raybaut, for the PyQt5/PySide port and further
633-
developments (e.g. ported to python-qwt API)
633+
developments (e.g. ported to PythonQwt API)
634634

635635
PyQwt LICENSE
636636
Version 3, March 2006

build_chm.bat

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
sphinx-build -b htmlhelp doc doctmp
2-
"C:\Program Files\HTML Help Workshop\hhc.exe" doctmp\python-qwt.hhp
3-
"C:\Program Files (x86)\HTML Help Workshop\hhc.exe" doctmp\python-qwt.hhp
4-
copy doctmp\python-qwt.chm .
5-
7z a python-qwt.chm.zip python-qwt.chm
6-
del doctmp\python-qwt.chm
2+
"C:\Program Files\HTML Help Workshop\hhc.exe" doctmp\PythonQwt.hhp
3+
"C:\Program Files (x86)\HTML Help Workshop\hhc.exe" doctmp\PythonQwt.hhp
4+
copy doctmp\PythonQwt.chm .
5+
7z a PythonQwt.chm.zip PythonQwt.chm
6+
del doctmp\PythonQwt.chm
77
del doc.zip
88
sphinx-build -b html doc doctmp
99
cd doctmp
1010
7z a -r ..\doc.zip *.*
1111
cd ..
1212
rmdir /S /Q doctmp
13-
del python-qwt.chm.zip
13+
del PythonQwt.chm.zip

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@
113113

114114
# The name for this set of Sphinx documents. If None, it defaults to
115115
# "<project> v<release> documentation".
116-
#html_title = None
116+
html_title = '%s %s Manual' % (project, version)
117117

118118
# A shorter title for the navigation bar. Default is the same as html_title.
119-
#html_short_title = None
119+
html_short_title = '%s Manual' % project
120120

121121
# The name of an image file (relative to this directory) to place at the top
122122
# of the sidebar.

doc/index.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
.. automodule:: qwt
22

3-
Download :download:`CHM Documentation (unzip and open) <../PythonQwt.chm.zip>`.
3+
.. note::
4+
5+
Download :download:`CHM Manual <../PythonQwt.chm.zip>`.
6+
7+
After downloading this file, you may see blank pages in the documentation.
8+
That's because Windows is blocking CHM files for security reasons.
9+
Fixing this problem is easy:
10+
11+
* Right-click the CHM file, select properties, then click “Unblock”.
12+
* Or compress the CHM file into a zip archive and decompress it in
13+
another directory.
14+
* Do not open the CHM file on a network drive.
415

516
Contents:
617

0 commit comments

Comments
 (0)