You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ServerSide.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Next create a workspace for editing code direct on the server:
46
46
"folders": [
47
47
{
48
48
"name": "test:USER",
49
-
"uri": "isfs://test/?ns=USER"
49
+
"uri": "isfs://test:user/"
50
50
}
51
51
],
52
52
"settings": {}
@@ -62,11 +62,11 @@ An example of a two-folder workspace in which the second folder gives read-only
62
62
"folders": [
63
63
{
64
64
"name": "test:USER",
65
-
"uri": "isfs://test/?ns=USER"
65
+
"uri": "isfs://test:user/"
66
66
},
67
67
{
68
68
"name": "test:%SYS (read-only)",
69
-
"uri": "isfs-readonly://test/?ns=%SYS"
69
+
"uri": "isfs-readonly://test:%sys/"
70
70
}
71
71
],
72
72
"settings": {}
@@ -79,25 +79,25 @@ Root folders can be re-sequenced using drag/drop in the Explorer view, or by edi
79
79
80
80
## Web Application (CSP) Files
81
81
82
-
To edit web application files (also known as CSP files) on a server, configure the uri as `isfs://myserver{csp_application}?ns=XXX&csp`
82
+
To edit web application files (also known as CSP files) on a server, configure the uri as `isfs://myserver:xxx{csp_application}?csp`
83
83
84
-
For example, the following uri gives you access to the server-side files of the `/csp/user` application. The `csp` query parameter is mandatory and the `ns` parameter must specify the correct namespace for the web application.
84
+
For example, the following uri gives you access to the server-side files of the `/csp/user` application. The `csp` query parameter is mandatory and the suffix on the server name must specify the correct namespace for the web application.
85
85
86
86
```
87
-
"uri": "isfs://myserver/csp/user?ns=USER&csp"
87
+
"uri": "isfs://myserver:user/csp/user?csp"
88
88
```
89
89
90
90
Changes you make to files opened from this root folder of your VS Code workspace will be saved onto the server.
91
91
92
92
## Filters and Display Options
93
93
94
-
The query string of the `uri` property accepts several parameters that control filtering and display of the server-side entities.
94
+
The query string of the `uri` property accepts several parameters that control filtering and display of the server-side entities. The examples below access the USER namespace on the server whose definition is named 'myserver'.
95
95
96
-
-`isfs://myserver?ns=USER&type=cls`, shows only classes
97
-
-`isfs://myserver?ns=USER&type=rtn`, shows only routines, mac, int and inc files
98
-
-`isfs://myserver?ns=USER&generated=1`, shows generated files as well as not generated
99
-
-`isfs://myserver?ns=USER&filter=%Z*.cls,%z*.cls,%Z*.mac`, comma-delimited list of search options, ignores `type`
100
-
-`isfs://myserver?ns=USER&flat=1`, a flat list of files does not split packages as folders.
96
+
-`isfs://myserver:user?type=cls`, shows only classes
97
+
-`isfs://myserver:user?type=rtn`, shows only routines, mac, int and inc files
98
+
-`isfs://myserver:user?generated=1`, shows generated files as well as not generated
99
+
-`isfs://myserver:user?filter=%Z*.cls,%z*.cls,%Z*.mac`, comma-delimited list of search options, ignores `type`
100
+
-`isfs://myserver:user?flat=1`, a flat list of files does not split packages as folders.
101
101
102
102
The options `flat` and `generated` can be combined with each other, and with `type` or `filter`. If `filter` is specified, `type` is ignored.
103
103
@@ -142,16 +142,16 @@ Example with connection to different namespaces on the same server.
0 commit comments