Skip to content

Commit fbdd6fe

Browse files
authored
Merge pull request #619 from intersystems-community/revise-serverside-fixes
add John fixes from pr 618 convo
2 parents b41b550 + 53f98dc commit fbdd6fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/ServerSide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,25 @@ Next create a workspace for editing code directly on the server:
4242
![Choose an access type.](../assets/images/ss-access-type.png "choose an access type")
4343
1. If you want to reopen this workspace in the future, use the command **File > Save Workspace As...** to save it as a `.code-workspace` file.
4444

45-
Note that the ObjectScript button is not vivible in the Activity Bar, because the files listed in the Explorer view are all on the server, so it is not needed for this configuration.
45+
Note that the ObjectScript button is not visible in the Activity Bar, because the files listed in the Explorer view are all on the server, so it is not needed for this configuration.
4646

4747
The `.code-workspace` file is a JSON file which you can edit directly, as described in the section [VS Code Workspaces](#code-workspaces). A simple example looks like this:
4848
```json
4949
{
5050
"folders": [
5151
{
5252
"name": "iris184:USER",
53-
"uri": "isfs://iris184/user"
53+
"uri": "isfs://iris184:user/"
5454
}
5555
],
5656
"settings": {}
5757
}
5858
```
59-
- The `name` property provides a name for this server-side workspace.
59+
- The `name` property provides a name for this server-side folder.
6060
- The `uri` property indicates the location of resources on the server. The supplied value has three components:
6161
- The first component can be either `isfs` or `isfs-readonly`. These values specify that this folder is on an InterSystems IRIS server. `isfs-readonly` specifies read-only access.
6262
- The value following `://` specifies the name of the server.
63-
- The value follosing `/` specifies the namespace.
63+
- The value following the next `:` specifies the namespace (lowercase).
6464

6565
To add more root folders to your workspace, giving you access to code in a different namespace, or on a different server, use the context menu on your existing root folder to invoke the `Add Server Namespace to Workspace...` command. This command is also available on the Command Palette.
6666

@@ -70,11 +70,11 @@ An example of a two-folder workspace in which the second folder gives read-only
7070
"folders": [
7171
{
7272
"name": "iris184:USER",
73-
"uri": "isfs://iris184/user"
73+
"uri": "isfs://iris184:user/"
7474
},
7575
{
7676
"name": "iris184:%SYS (read-only)",
77-
"uri": "isfs-readonly://iris184/%sys"
77+
"uri": "isfs-readonly://iris184:%sys/"
7878
}
7979
],
8080
"settings": {}

0 commit comments

Comments
 (0)