@@ -135,9 +135,9 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
135
135
===================================================================
136
136
--- code-server.orig/lib/vscode/src/vs/workbench/browser/web.api.ts
137
137
+++ code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
138
- @@ -286 ,6 +286 ,11 @@ export interface IWorkbenchConstructionO
138
+ @@ -291 ,6 +291 ,11 @@ export interface IWorkbenchConstructionO
139
139
*/
140
- readonly isEnabledFileDownloads ?: boolean
140
+ readonly isEnabledFileUploads ?: boolean
141
141
142
142
+ /**
143
143
+ * Whether to use Coder's custom Getting Started text.
@@ -151,8 +151,8 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
151
151
===================================================================
152
152
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
153
153
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
154
- @@ -39 ,6 +39 ,11 @@ export interface IBrowserWorkbenchEnviro
155
- readonly isEnabledFileDownloads ?: boolean;
154
+ @@ -44 ,6 +44 ,11 @@ export interface IBrowserWorkbenchEnviro
155
+ readonly isEnabledFileUploads ?: boolean;
156
156
157
157
/**
158
158
+ * Enable Coder's custom getting started text.
@@ -163,8 +163,8 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
163
163
* Gets whether a resolver extension is expected for the environment.
164
164
*/
165
165
readonly expectsResolverExtension: boolean;
166
- @@ -123 ,6 +128 ,13 @@ export class BrowserWorkbenchEnvironment
167
- return this.options.isEnabledFileDownloads ;
166
+ @@ -135 ,6 +140 ,13 @@ export class BrowserWorkbenchEnvironment
167
+ return this.options.isEnabledFileUploads ;
168
168
}
169
169
170
170
+ get isEnabledCoderGettingStarted(): boolean {
@@ -181,34 +181,40 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
181
181
===================================================================
182
182
--- code-server.orig/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
183
183
+++ code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
184
- @@ -18,6 +18,7 @@ export const serverOptions: OptionDescri
184
+ @@ -18,8 +18,9 @@ export const serverOptions: OptionDescri
185
185
'auth': { type: 'string' },
186
186
'disable-file-downloads': { type: 'boolean' },
187
+ 'disable-file-uploads': { type: 'boolean' },
187
188
'locale': { type: 'string' },
188
189
+ 'disable-getting-started-override': { type: 'boolean' },
189
190
190
191
/* ----- server setup ----- */
191
192
192
- @@ -101,6 +102,7 @@ export interface ServerParsedArgs {
193
+ 'host': { type: 'string', cat: 'o', args: 'ip-address', description: nls.localize('host', "The host name or IP address the server should listen to. If not set, defaults to 'localhost'.") },
194
+ @@ -102,8 +103,9 @@ export interface ServerParsedArgs {
193
195
'auth'?: string
194
196
'disable-file-downloads'?: boolean;
197
+ 'disable-file-uploads'?: boolean;
195
198
'locale'?: string
196
199
+ 'disable-getting-started-override'?: boolean,
197
200
198
201
/* ----- server setup ----- */
199
202
203
+ host?: string;
200
204
Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
201
205
===================================================================
202
206
--- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts
203
207
+++ code-server/lib/vscode/src/vs/server/node/webClientServer.ts
204
- @@ -335,6 +335,7 @@ export class WebClientServer {
208
+ @@ -335,8 +335,9 @@ export class WebClientServer {
205
209
webviewEndpoint: vscodeBase + this._staticRoute + '/out/vs/workbench/contrib/webview/browser/pre',
206
210
userDataPath: this._environmentService.userDataPath,
207
211
isEnabledFileDownloads: !this._environmentService.args['disable-file-downloads'],
212
+ isEnabledFileUploads: !this._environmentService.args['disable-file-uploads'],
208
213
+ isEnabledCoderGettingStarted: !this._environmentService.args['disable-getting-started-override'],
209
214
_wrapWebWorkerExtHostInIframe,
210
215
developmentOptions: { enableSmokeTestDriver: this._environmentService.args['enable-smoke-test-driver'] ? true : undefined, logLevel: this._logService.getLevel() },
211
216
settingsSyncOptions: !this._environmentService.isBuilt && this._environmentService.args['enable-sync'] ? { enabled: true } : undefined,
217
+ enableWorkspaceTrust: !this._environmentService.args['disable-workspace-trust'],
212
218
Index: code-server/lib/vscode/src/vs/workbench/browser/contextkeys.ts
213
219
===================================================================
214
220
--- code-server.orig/lib/vscode/src/vs/workbench/browser/contextkeys.ts
@@ -217,28 +223,32 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/contextkeys.ts
217
223
import { Disposable } from 'vs/base/common/lifecycle';
218
224
import { IContextKeyService, IContextKey, setConstant as setConstantContextKey } from 'vs/platform/contextkey/common/contextkey';
219
225
import { InputFocusedContext, IsMacContext, IsLinuxContext, IsWindowsContext, IsWebContext, IsMacNativeContext, IsDevelopmentContext, IsIOSContext, ProductQualityContext, IsMobileContext } from 'vs/platform/contextkey/common/contextkeys';
220
- -import { SplitEditorsVertically, InEditorZenModeContext, ActiveEditorCanRevertContext, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, AuxiliaryBarVisibleContext, SideBarVisibleContext, PanelAlignmentContext, PanelMaximizedContext, PanelVisibleContext, ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, EmbedderIdentifierContext, EditorTabsVisibleContext, IsCenteredLayoutContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorReadonlyContext, EditorAreaVisibleContext, ActiveEditorAvailableEditorIdsContext, DirtyWorkingCopiesContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, HasWebFileSystemAccess, IsFullscreenContext, OpenFolderWorkspaceSupportContext, RemoteNameContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, PanelPositionContext, TemporaryWorkspaceContext, IsEnabledFileDownloads, ActiveEditorCanToggleReadonlyContext, applyAvailableEditorIds, MaximizedEditorGroupContext, TitleBarVisibleContext, TitleBarStyleContext } from 'vs/workbench/common/contextkeys';
221
- +import { SplitEditorsVertically, InEditorZenModeContext, ActiveEditorCanRevertContext, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, AuxiliaryBarVisibleContext, SideBarVisibleContext, PanelAlignmentContext, PanelMaximizedContext, PanelVisibleContext, ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, EmbedderIdentifierContext, EditorTabsVisibleContext, IsCenteredLayoutContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorReadonlyContext, EditorAreaVisibleContext, ActiveEditorAvailableEditorIdsContext, DirtyWorkingCopiesContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, HasWebFileSystemAccess, IsFullscreenContext, OpenFolderWorkspaceSupportContext, RemoteNameContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, PanelPositionContext, TemporaryWorkspaceContext, IsEnabledFileDownloads, IsEnabledCoderGettingStarted, ActiveEditorCanToggleReadonlyContext, applyAvailableEditorIds, MaximizedEditorGroupContext, TitleBarVisibleContext, TitleBarStyleContext } from 'vs/workbench/common/contextkeys';
226
+ -import { SplitEditorsVertically, InEditorZenModeContext, ActiveEditorCanRevertContext, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, AuxiliaryBarVisibleContext, SideBarVisibleContext, PanelAlignmentContext, PanelMaximizedContext, PanelVisibleContext, ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, EmbedderIdentifierContext, EditorTabsVisibleContext, IsCenteredLayoutContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorReadonlyContext, EditorAreaVisibleContext, ActiveEditorAvailableEditorIdsContext, DirtyWorkingCopiesContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, HasWebFileSystemAccess, IsFullscreenContext, OpenFolderWorkspaceSupportContext, RemoteNameContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, PanelPositionContext, TemporaryWorkspaceContext, ActiveEditorCanToggleReadonlyContext, applyAvailableEditorIds ,MaximizedEditorGroupContext, TitleBarVisibleContext, TitleBarStyleContext, IsEnabledFileDownloads, IsEnabledFileUploads } from 'vs/workbench/common/contextkeys';
227
+ +import { SplitEditorsVertically, InEditorZenModeContext, ActiveEditorCanRevertContext, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext, AuxiliaryBarVisibleContext, SideBarVisibleContext, PanelAlignmentContext, PanelMaximizedContext, PanelVisibleContext, ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, EmbedderIdentifierContext, EditorTabsVisibleContext, IsCenteredLayoutContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorReadonlyContext, EditorAreaVisibleContext, ActiveEditorAvailableEditorIdsContext, DirtyWorkingCopiesContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, HasWebFileSystemAccess, IsFullscreenContext, OpenFolderWorkspaceSupportContext, RemoteNameContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, PanelPositionContext, TemporaryWorkspaceContext, ActiveEditorCanToggleReadonlyContext, applyAvailableEditorIds, MaximizedEditorGroupContext, TitleBarVisibleContext, TitleBarStyleContext, IsEnabledFileDownloads, IsEnabledFileUploads, IsEnabledCoderGettingStarted, } from 'vs/workbench/common/contextkeys';
222
228
import { TEXT_DIFF_EDITOR_ID, EditorInputCapabilities, SIDE_BY_SIDE_EDITOR_ID, EditorResourceAccessor, SideBySideEditor } from 'vs/workbench/common/editor';
223
229
import { trackFocus, addDisposableListener, EventType, onDidRegisterWindow } from 'vs/base/browser/dom';
224
230
import { preferredSideBySideGroupDirection, GroupDirection, IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
225
- @@ -221,6 +221,7 @@ export class WorkbenchContextKeysHandler
231
+ @@ -221,8 +221,9 @@ export class WorkbenchContextKeysHandler
226
232
227
233
// code-server
228
234
IsEnabledFileDownloads.bindTo(this.contextKeyService).set(this.environmentService.isEnabledFileDownloads ?? true)
235
+ IsEnabledFileUploads.bindTo(this.contextKeyService).set(this.environmentService.isEnabledFileUploads ?? true)
229
236
+ IsEnabledCoderGettingStarted.bindTo(this.contextKeyService).set(this.environmentService.isEnabledCoderGettingStarted ?? true)
230
237
231
238
this.registerListeners();
232
239
}
240
+
233
241
Index: code-server/lib/vscode/src/vs/workbench/common/contextkeys.ts
234
242
===================================================================
235
243
--- code-server.orig/lib/vscode/src/vs/workbench/common/contextkeys.ts
236
244
+++ code-server/lib/vscode/src/vs/workbench/common/contextkeys.ts
237
- @@ -40,6 +40,7 @@ export const HasWebFileSystemAccess = ne
245
+ @@ -40,8 +40,9 @@ export const HasWebFileSystemAccess = ne
238
246
export const EmbedderIdentifierContext = new RawContextKey<string | undefined>('embedderIdentifier', undefined, localize('embedderIdentifier', 'The identifier of the embedder according to the product service, if one is defined'));
239
247
240
248
export const IsEnabledFileDownloads = new RawContextKey<boolean>('isEnabledFileDownloads', true, true);
249
+ export const IsEnabledFileUploads = new RawContextKey<boolean>('isEnabledFileUploads', true, true);
241
250
+ export const IsEnabledCoderGettingStarted = new RawContextKey<boolean>('isEnabledCoderGettingStarted', true, true);
242
251
243
252
//#endregion
244
253
254
+
0 commit comments