Skip to content

Commit 9c34311

Browse files
authored
Reformat ioc to IOC
1 parent a858814 commit 9c34311

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

docs/user/explanations/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ implementing these features:
102102
- View the current log
103103
- View historical logs (via graylog or other centralized logging system)
104104
- Connect to an IOC and interact with its shell
105-
- debug an ioc by starting a bash shell inside it's container
105+
- debug an IOC by starting a bash shell inside it's container
106106

107107

108108
Kubernetes Alternative
@@ -243,7 +243,7 @@ There are these types of CI:
243243
or other OCI registry
244244

245245
:beamline definition source:
246-
- prepares a helm chart from each ioc instance definition
246+
- prepares a helm chart from each IOC instance definition
247247
- tests that the helm chart is deployable (but does not deploy it)
248248
- locally launches each IOC instance and loads its configuration to
249249
verify that the configuration is valid (no system tests because this

docs/user/reference/environment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Optional Variables
5858
- **EC_LOG_URL**: if you have a centralized logging service with a web UI then
5959
you can set this variable to the URL of the web UI. This will then be
6060
displayed when the command ``ec ioc log-history <ioc-name>`` is run. The
61-
ioc name is added to the URL using ``{ioc-name}`` as a placeholder e.g.
61+
IOC name is added to the URL using ``{ioc-name}`` as a placeholder e.g.
6262

6363
- ``EC_LOG_URL='https://graylog2.diamond.ac.uk/search?rangetype=relative&fields``
6464
``=message%2Csource&width=1489&highlightMessage=&relative=172800&q=pod_name%3A``

docs/user/reference/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ engineering screens. TODO: more details will be added to a new section.
1212
Why have ioc-XXX repositories?
1313
------------------------------
1414
Why not put the Dockerfile and image generating in the support module itself
15-
instead of creating a separate Generic ioc module for each image we
15+
instead of creating a separate Generic IOC module for each image we
1616
generate?
1717

1818
Answers:

docs/user/tutorials/create_beamline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Steps
104104

105105
#. edit ``environment.sh``
106106

107-
#. change the name of the example ioc from ``iocs/blxxi-ea-ioc-01`` to
107+
#. change the name of the example IOC from ``iocs/blxxi-ea-ioc-01`` to
108108
``iocs/bl01t-ea-ioc-01``
109109

110110
#. change the beamline name in the two bash scripts in the ``services``

docs/user/tutorials/deploy_example.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ To stop / start the example IOC try the following commands. Note that
183183
Monitoring and interacting with an IOC shell
184184
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
185185

186-
To attach to the ioc shell you can use the following command. HOWEVER, this
186+
To attach to the IOC shell you can use the following command. HOWEVER, this
187187
will attach you to nothing in the case of this example IOC as it has no
188188
shell. In the next tutorial we will use this command to interact with
189189
iocShell.

docs/user/tutorials/dev_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ See ``/epics/ioc-adsimdetector/ioc/iocApp/src/Makefile``
188188

189189
You will note that the ``ioc`` folder is greyed out in the VSCode explorer. This
190190
is because it is in ``.gitignore`` and it is purely generated code. If you
191-
particularly needed to customize the contents of the ioc source tree then
191+
particularly needed to customize the contents of the IOC source tree then
192192
you can remove it from ``.gitignore`` and commit your changes to the repo. These
193193
changes would then always get loaded for every instance of the Generic IOC.
194194

docs/user/tutorials/ibek.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ ibek-support
4242
can be found and how to build it.
4343
- exists to avoid duplication of support module definitions in Generic IOCs
4444
- and to avoid working on multiple support modules while kicking off epics-containers
45-
- the ibek-support repo is added as a git-submodule to every Generic ioc
46-
(ioc-xxx) repo and in this ensures that a rebuild of a Generic ioc will be
45+
- the ibek-support repo is added as a git-submodule to every Generic IOC
46+
(ioc-xxx) repo and in this ensures that a rebuild of a Generic IOC will be
4747
with a consistent set of YAML files and install.sh files until a developer
4848
explicitly updates the submodule.
4949

5050
How to work on ibek-support
5151
---------------------------
5252

53-
Building a new Generic ioc and making it compatible with ibek means creating
53+
Building a new Generic IOC and making it compatible with ibek means creating
5454
ibek support YAML for all of its dependent support modules
5555
(where they do not already exist)
5656

57-
These steps assume you have a Generic ioc for ADUrl based on ioc_template as discussed in `generic_ioc`.
58-
Your Generic ioc has a default ioc instance used for testing.
57+
These steps assume you have a Generic IOC for ADUrl based on ioc_template as discussed in `generic_ioc`.
58+
Your Generic IOC has a default IOC instance used for testing.
5959
In ioc/config/st.cmd we have a default startup script for the example IOC.
6060
To work on ibek support we will remove this file and replace it with ``ioc.yaml``.
6161
We already have a git submodule for ibek-defs which we used for accessing patch files
@@ -64,7 +64,7 @@ during build, this will also be used for creating and editing support yaml files
6464
TODO: this will become a concrete example for walking through as a tutorial with ioc-adurl.
6565

6666
NOTE: these steps are for building and testing the example IOC that comes with
67-
the Generic ioc template. This will break the system test and that would need
67+
the Generic IOC template. This will break the system test and that would need
6868
to be updated accordingly. To just work on ibek support files using an external
6969
ioc instance YAML file see `../how-to/ibek-support` (I probably need to combine
7070
these two pages into something coherent).
@@ -78,7 +78,7 @@ STEPS:
7878
- cd ..
7979
- add useful yaml definitions to ibek-defs/<a support module>/<a support module>.yaml
8080
- add some entities that use those definitions to ioc/config/ioc.yaml
81-
- TODO need to make dev launch mount ioc folder into the container - avoiding build step and giving us a tight inner dev loop
81+
- TODO need to make dev launch mount IOC folder into the container - avoiding build step and giving us a tight inner dev loop
8282
- (whereas dev ioc-launch mounts in the config of an IOC instance - MAYBE this is confusing or these commands need better names?)
8383
- ec dev build
8484
- ec dev launch

docs/user/tutorials/ioc_changes1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ If you see the value 1 then your change is working.
8787

8888
Because of the symlink between ``/epics/ioc/config`` and
8989
``/repos/bl01t/iocs/bl01t-ea-ioc-02/config`` the same files you are testing
90-
by launching the ioc inside of the devcontainer are also ready to be
90+
by launching the IOC inside of the devcontainer are also ready to be
9191
committed and pushed to the bl01t repo. i.e.:
9292

9393
.. code-block:: bash

0 commit comments

Comments
 (0)