Skip to content

Commit 5cc94fa

Browse files
author
Kay Kasemir (ky9)
committed
Update python3 and web links
1 parent 0c0df7b commit 5cc94fa

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For latest snapshot of documentation, see https://controlssoftware.sns.ornl.gov/
1111
To build local copy of documentation from sources, you need to install sphinx, http://sphinx-doc.org/.
1212
To install on Linux (RedHat):
1313

14-
sudo yum install python-sphinx
14+
sudo yum install python3-sphinx
1515

1616
To build documentation from sources:
1717

doc/make_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
print """
2+
print("""
33
Version Info
44
============
55
@@ -9,13 +9,13 @@
99
from scan.version import __version__, version_history
1010
print __version__
1111
print version_history
12-
"""
12+
""")
1313

1414
import sys
1515
sys.path.append("..")
1616
from scan.version import __version__, version_history
1717

18-
print "Version history::"
18+
print("Version history::")
1919

2020
for line in version_history.splitlines():
2121
print (" " + line)

doc/overview.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@ You can assemble new scans, submit them, monitor their progress.
66

77
For a general overview of the scan system see
88
"CSS Scan System", Proceedings of ICALEPCS2013, San Francisco, CA, USA
9-
( http://accelconf.web.cern.ch/AccelConf/ICALEPCS2013/papers/frcoaab01.pdf or http://epaper.kek.jp/ICALEPCS2013/papers/frcoaab01.pdf )
9+
( https://accelconf.web.cern.ch/ICALEPCS2013/papers/frcoaab01.pdf
10+
or http://epaper.kek.jp/ICALEPCS2013/papers/frcoaab01.pdf )
11+
1012

1113
Use Case: CS-Studio Displays
1214
----------------------------
1315

1416
For routine execution of the same scan where just a few parameters change,
15-
create a CS-Studio display that allows configuring them.
17+
you can create a CS-Studio display for those parameters.
18+
On the display, local or real PVs then allow users to for example configure
19+
the start, end, and step size of a motor move.
1620
A "Submit" button then invokes a jython script which assembles
17-
a scan.
21+
a scan that moves a motor based on the values in those parameter PVs.
1822

1923

2024
Use Case: Table-Based Scans

0 commit comments

Comments
 (0)