Skip to content

Commit 446aec1

Browse files
abrudzMaxCan-Code
authored andcommitted
Merge pull request Dyalog#1243 from Dyalog/1242-docs-ride-spelling
Fix lingering RIDE/Ride issues. Dyalog#1242
2 parents 7ca9c41 + 2b2cdda commit 446aec1

4 files changed

+9
-9
lines changed

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About This Document
22

3-
This document introduces the Remote Integrated Development Environment (Ride). It describes the installation process and Ride's user interface (windows, menus, customisation options, keycode/keystroke mappings, etc.).
3+
This document introduces Dyalog's cross-platform IDE (Ride). It describes the installation process and Ride's user interface (windows, menus, customisation options, keycode/keystroke mappings, etc.).
44

55
Ride can be extensively customised; this document assumes that the default configuration is in use.
66

docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Ride runs separately from the APL interpreter, but can communicate with any loca
99

1010
An interpreter can also provide [Ride's interface as a web page](ride_in_the_browser.md). This makes it possible to control a remote interpreter thorugh a browser, without installing Ride on your machine. For this zero-footprint mode to work on Windows, Ride needs to be installed on the machine where the interpreter is running, however, it comes with the interpreter installation on all other platforms.
1111

12-
On Windows, the interpreter has a built-in IDE, which continues to provide the richest environment, however, Ride the recommended interface on all other platforms.
12+
On Windows, the interpreter has a built-in IDE, which continues to provide the richest environment, however, Ride is the recommended interface on all other platforms.

docs/sample_configuration_file.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A .ini configuration file can be used to define settings for the `RIDE_INIT` con
44

55
Examples of the fields that you might want to include within the .ini configuration file are:
66
```
7-
[Ride]
7+
[RIDE]
88
Direction=Listen
99
Address=
1010
Port=5002
@@ -38,7 +38,7 @@ where:
3838
- `Anonymous` – the connection is secure but no certificate is provided on the client side. The `SSLValidation` and `Priority fields` are valid.
3939
- `PublicCertFile` is the fully-qualified path to, and name of, the file containing the public certificate. Empty by default. Validity depends on the value of the `Secure` field.
4040
- `PrivateKeyFile` is the fully-qualified path to, and name of, the file containing the private key. Empty by default. Validity depends on the value of the `Secure` field.
41-
- `RootCertDir` is the full path to (and name of) the directory that contains Certificate Authority root certificates. Empty by default (on the Microsoft Windows operating system, the Ride uses the Microsoft certicate store).
41+
- `RootCertDir` is the full path to (and name of) the directory that contains Certificate Authority root certificates. Empty by default (on the Microsoft Windows operating system, Ride uses the Microsoft certicate store).
4242
- `Priority` is the GnuTLS priority string (for complete documentation of this, see http://www.gnutls.org/manual/gnutls.html#Priority-Strings). Empty by default. Validity depends on the value of the `Secure` field.
4343
- `AcceptCertDir` is the full path to (and name of) the directory that contains the public certificates of all users that are allowed to connect. Empty by default.
4444

@@ -65,7 +65,7 @@ If `AllowEndPoints` is not included, all IP addresses are allowed to access the
6565

6666
## TLS Flags
6767

68-
TLS flags are employed as part of the certificate checking process; they determine whether a secure client or server can connect with a peer that does not have a valid certificate. When `Direction` is `Connect` or `Poll`, the Ride acts as a server; when `Direction` is `Serve`, the Ride acts as a client.
68+
TLS flags are employed as part of the certificate checking process; they determine whether a secure client or server can connect with a peer that does not have a valid certificate. When `Direction` is `Connect` or `Poll`, Ride acts as a server; when `Direction` is `Serve`, Ride acts as a client.
6969

7070
The code numbers of the TLS flags described below can be added together and passed to the `SSLValidation` field to control the certificate checking process. If you do not require any of these flags, then the `SSLValidation` field should be set to `0`.
7171

@@ -77,10 +77,10 @@ The code numbers of the TLS flags described below can be added together and pass
7777
| 8 | CertAcceptIfExpired | Accept the peer certificate even if it has expired (according to its valid to information). |
7878
| 16 | CertAcceptIfIncorrectHostName | Accept the peer certificate even if its hostname does not match the one it was trying to connect to. |
7979
| 32 | CertAcceptWithoutValidating | Accept the peer certificate without checking it (useful if the certificate is to be checked manually). |
80-
| 64 | RequestClientCertificate | Only valid when the Ride is acting as a server; asks the client for a certificate but allows connections even if the client does not provide one. |
81-
| 128 | RequireClientCertificate | Only valid when the Ride is acting as a server; asks the client for a certificate and refuses the connection if a valid certificate (subject to any other flags) is not provided by the client. |
80+
| 64 | RequestClientCertificate | Only valid when Ride is acting as a server; asks the client for a certificate but allows connections even if the client does not provide one. |
81+
| 128 | RequireClientCertificate | Only valid when Ride is acting as a server; asks the client for a certificate and refuses the connection if a valid certificate (subject to any other flags) is not provided by the client. |
8282

83-
TLS flags have the same meaning irrespective of whether the Ride is acting as a server or a client. However, for a server they are applied each time a new connection is established whereas for a client they are only applied when the client object is created.
83+
TLS flags have the same meaning irrespective of whether Ride is acting as a server or a client. However, for a server they are applied each time a new connection is established whereas for a client they are only applied when the client object is created.
8484

8585

8686

docs/starting_a_dyalog_session.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ When running a Dyalog Session through Ride, the Session can be:
1111

1212
- remote from the machine on which Ride is running.
1313

14-
The Ride can start a Session using an interpreter installed on a remote machine irrespective of whether Dyalog is installed on the machine on which Ride is running. In this situation:
14+
Ride can start a Session using an interpreter installed on a remote machine irrespective of whether Dyalog is installed on the machine on which Ride is running. In this situation:
1515

1616
- The operating system on which the remote interpreter is running is irrelevant – the instructions given in this chapter apply to the operating system on which Ride is running (the two operating systems do not have to be the same).
1717
- The remote machine does not need to have Ride installed but the Dyalog Session must be [Ride-enabled](ridespecific_language_features.md/#ride_init).

0 commit comments

Comments
 (0)