This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
forked from eclipse-che/che-theia
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- move modal dialogs to classic notification - add missing no option in redirect dialog - handle internal endpoints (private ports) - Add ports widget in addition to dialog popup of port plug-in - display public and private ports - allow to open in a new tab or preview url - filtering plugin's endpoints (default = true) Fixes eclipse-che/che#17972 Fixes eclipse-che/che#17993 Change-Id: I5dd802ea51d6a10be525a169e03632f37480a5ac Signed-off-by: Florent Benoit <[email protected]>
- Loading branch information
Showing
34 changed files
with
2,527 additions
and
491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright (c) 2019 Red Hat, Inc. | ||
* All rights reserved. This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* Contributors: | ||
* Red Hat, Inc. - initial API and implementation | ||
*/ | ||
|
||
/** | ||
* Mock of @theia/plugin module | ||
* @author Florent Benoit | ||
*/ | ||
const theia: any = {}; | ||
export class EventEmitter { | ||
constructor() { | ||
|
||
} | ||
fire() { | ||
|
||
} | ||
} | ||
|
||
export enum TreeItemCollapsibleState { | ||
None, | ||
Collapsed, | ||
Expanded | ||
} | ||
|
||
theia.EventEmitter = EventEmitter; | ||
theia.TreeItemCollapsibleState = TreeItemCollapsibleState; | ||
module.exports = theia; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.