Skip to content

Commit b5c5b87

Browse files
Merge pull request #40 from intersystems-community/registration-mark
fix reg mark use and sync w objectscript ext
2 parents f6f91ee + 78f5ad2 commit b5c5b87

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# InterSystems® Server Manager
1+
# InterSystems Server Manager
22

3-
This is a VS Code helper extension for defining connections to [InterSystems](https://www.intersystems.com/) servers. These connection definitions can used by other VS Code extensions when they make connections. One example is the [ObjectScript extension](https://github.com/intersystems-community/vscode-objectscript).
3+
This is a VS Code helper extension for defining connections to [InterSystems®](https://www.intersystems.com/) servers. These connection definitions can used by other VS Code extensions when they make connections. One example is the [ObjectScript extension](https://github.com/intersystems-community/vscode-objectscript).
44

55
In common with the rest of VS Code, Server Manager stores your connection settings in JSON files. VS Code settings are arranged in a hierarchy that you can learn more about [here](https://code.visualstudio.com/docs/getstarted/settings).
66

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "servermanager",
3-
"displayName": "InterSystems® Server Manager",
3+
"displayName": "InterSystems Server Manager",
44
"version": "0.9.2-SNAPSHOT",
55
"preview": true,
66
"publisher": "intersystems-community",
@@ -64,12 +64,12 @@
6464
],
6565
"contributes": {
6666
"configuration": {
67-
"title": "InterSystems® Server Manager",
67+
"title": "InterSystems Server Manager",
6868
"properties": {
6969
"intersystems.servers": {
7070
"type": "object",
71-
"description": "InterSystems® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it.",
72-
"markdownDescription": "[InterSystems](https://www.intersystems.com)® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
71+
"description": "InterSystems servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it.",
72+
"markdownDescription": "[InterSystems](https://www.intersystems.com) servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
7373
"scope": "resource",
7474
"default": {
7575
"default~iris": {
@@ -86,15 +86,15 @@
8686
"host": "127.0.0.1",
8787
"port": 57772
8888
},
89-
"description": "Connection to local InterSystems Caché® installed with default settings."
89+
"description": "Connection to local InterSystems Caché installed with default settings."
9090
},
9191
"default~ensemble": {
9292
"webServer": {
9393
"scheme": "http",
9494
"host": "127.0.0.1",
9595
"port": 57772
9696
},
97-
"description": "Connection to local InterSystems Ensemble® installed with default settings."
97+
"description": "Connection to local InterSystems Ensemble installed with default settings."
9898
},
9999
"/default": "default~iris"
100100
},
@@ -105,7 +105,7 @@
105105
"properties": {
106106
"webServer": {
107107
"type": "object",
108-
"description": "Web server publishing an InterSystems® server's web services.",
108+
"description": "Web server publishing an InterSystems server's web services.",
109109
"properties": {
110110
"scheme": {
111111
"type": "string",
@@ -118,7 +118,7 @@
118118
},
119119
"host": {
120120
"type": "string",
121-
"description": "Hostname or IP address of the web server. Often the same as the InterSystems® server host.",
121+
"description": "Hostname or IP address of the web server. Often the same as the InterSystems server host.",
122122
"anyOf": [
123123
{
124124
"format": "hostname"
@@ -141,7 +141,7 @@
141141
},
142142
"pathPrefix": {
143143
"type": "string",
144-
"description": "Optional prefix for the path to the resource. Only needed when one web server publishes services on behalf of multiple InterSystems® servers."
144+
"description": "Optional prefix for the path to the resource. Only needed when one web server publishes services on behalf of multiple InterSystems servers."
145145
}
146146
},
147147
"required": [

0 commit comments

Comments
 (0)