├── .devfile.yaml ├── .dockerignore ├── .github ├── CODEOWNERS ├── build-container-matrix.sh └── workflows │ ├── next-build.yml │ ├── pr.yml │ ├── rebase-projector-sources.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── asset-required-rpms.txt ├── che-plugin ├── .dockerignore ├── Dockerfile ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ └── main │ ├── kotlin │ └── io │ │ └── github │ │ └── che_incubator │ │ └── plugin │ │ ├── PluginExtension.kt │ │ ├── PluginHelpProvider.kt │ │ ├── dashboard │ │ ├── DashboardBundle.kt │ │ ├── DashboardExtension.kt │ │ ├── DashboardIcons.kt │ │ └── GoToDashboardAction.kt │ │ ├── endpoint │ │ ├── Endpoint.kt │ │ ├── EndpointBundle.kt │ │ ├── EndpointCategory.kt │ │ ├── EndpointDataKeys.kt │ │ ├── EndpointExposure.kt │ │ ├── EndpointExtension.kt │ │ ├── EndpointIcons.kt │ │ ├── EndpointUtil.kt │ │ ├── action │ │ │ ├── CopyEndpointUrlAction.kt │ │ │ └── OpenEndpointInBrowserAction.kt │ │ ├── filter │ │ │ └── HidePluginEndpointsFilter.kt │ │ ├── forward │ │ │ ├── ForwardServer.kt │ │ │ └── ForwardedPort.kt │ │ ├── provider │ │ │ ├── CachingEndpointProvider.kt │ │ │ └── EndpointProvider.kt │ │ ├── scanner │ │ │ ├── IPConverter.kt │ │ │ ├── InternalScanner.kt │ │ │ ├── InternalScannerDelegator.kt │ │ │ ├── ListeningPort.kt │ │ │ ├── PortChangesDetector.kt │ │ │ ├── PortScanner.kt │ │ │ ├── PortUtil.kt │ │ │ └── imp │ │ │ │ ├── DumbInternalScanner.kt │ │ │ │ └── SystemInternalScanner.kt │ │ ├── tree │ │ │ ├── EndpointTreeElement.kt │ │ │ ├── WorkspaceTreeElement.kt │ │ │ └── structure │ │ │ │ ├── EndpointStructureViewModel.kt │ │ │ │ └── EndpointTreeActionsOwner.kt │ │ ├── ui │ │ │ ├── EndpointsPanel.kt │ │ │ ├── EndpointsToolWindow.kt │ │ │ └── EndpointsToolWindowFactory.kt │ │ └── util │ │ │ ├── OpenEndpointUtil.kt │ │ │ └── SpecTemplateObjectUtil.kt │ │ ├── execution │ │ ├── Command.kt │ │ ├── CommandBundle.kt │ │ ├── CommandDataKeys.kt │ │ ├── CommandExtension.kt │ │ ├── CommandGroupKind.kt │ │ ├── CommandIcons.kt │ │ ├── action │ │ │ ├── ExecuteAnyCommandAction.kt │ │ │ ├── ExecuteCommandAction.kt │ │ │ └── ExecuteSelectedCommandAction.kt │ │ ├── filter │ │ │ ├── BuildCommandFilter.kt │ │ │ ├── DebugCommandFilter.kt │ │ │ ├── DeployCommandFilter.kt │ │ │ ├── RunCommandFilter.kt │ │ │ └── TestCommandFilter.kt │ │ ├── provider │ │ │ ├── CommandListActionProvider.kt │ │ │ ├── CommandProvider.kt │ │ │ ├── CommandRunAnythingProvider.kt │ │ │ └── RuntimeListProvider.kt │ │ ├── run │ │ │ ├── CommandRunConfiguration.kt │ │ │ ├── CommandRunConfigurationEditor.kt │ │ │ ├── CommandRunConfigurationType.kt │ │ │ ├── CommandRunProfileState.kt │ │ │ ├── NullComponent.kt │ │ │ ├── process │ │ │ │ ├── ExecProcess.kt │ │ │ │ └── PipedStreamHandler.kt │ │ │ ├── terminal │ │ │ │ └── ExecTerminalRunner.kt │ │ │ └── websocket │ │ │ │ ├── AtomicExecutionID.kt │ │ │ │ ├── MachineExec.kt │ │ │ │ ├── ResizeParam.kt │ │ │ │ ├── Utils.kt │ │ │ │ └── WebSockets.kt │ │ ├── tree │ │ │ ├── CommandTreeElement.kt │ │ │ ├── ComponentGroup.kt │ │ │ ├── ComponentGrouper.kt │ │ │ ├── TerminalTreeElement.kt │ │ │ ├── TreeElementWeighedSorter.kt │ │ │ ├── WorkspaceTreeElement.kt │ │ │ └── structure │ │ │ │ ├── CommandStructureViewModel.kt │ │ │ │ └── CommandTreeActionsOwner.kt │ │ ├── ui │ │ │ ├── CommandPanel.kt │ │ │ ├── CommandToolWindow.kt │ │ │ └── CommandToolWindowFactory.kt │ │ └── util │ │ │ ├── CommandLineUtil.kt │ │ │ ├── CommandUtil.kt │ │ │ └── SpecTemplateObjectUtil.kt │ │ ├── internal │ │ └── Util.kt │ │ └── spec │ │ ├── SpecTemplateProvider.kt │ │ ├── SpecTemplateProviderDelegator.kt │ │ └── imp │ │ ├── ApiSpecTemplateProvider.kt │ │ └── DumbSpecTemplateProvider.kt │ └── resources │ ├── META-INF │ ├── plugin.xml │ └── pluginIcon.svg │ ├── dev │ ├── devfile │ │ └── flattened.devfile.yaml │ └── port-scanner │ │ ├── port-scanner-listen-ipv4.stdout │ │ └── port-scanner-listen-ipv6.stdout │ ├── icons │ ├── dashboard │ │ └── goTo.svg │ ├── endpoint │ │ ├── browseEndpoint.svg │ │ ├── copyEndpointUrl.svg │ │ ├── devMode.svg │ │ ├── endpoint.svg │ │ ├── internalPluginEndpoint.svg │ │ ├── internalUserEndpoint.svg │ │ ├── panel.svg │ │ ├── pluginEndpoint.svg │ │ ├── togglePluginEndpoints.svg │ │ ├── userEndpoint.svg │ │ └── workspace.svg │ └── execution │ │ ├── command.svg │ │ ├── componentGroup.svg │ │ ├── devfile.svg │ │ ├── executeAnyCommand.svg │ │ ├── executeCommand.svg │ │ ├── filterBuildCommand.svg │ │ ├── filterDebugCommand.svg │ │ ├── filterDeployCommand.svg │ │ ├── filterRunCommand.svg │ │ ├── filterTestCommand.svg │ │ ├── panel.svg │ │ ├── sortByType.svg │ │ ├── terminalNode.svg │ │ └── workspaceGroup.svg │ └── messages │ ├── CommandBundle.properties │ ├── DashboardBundle.properties │ └── EndpointBundle.properties ├── compatible-ide.json ├── devfiles ├── README.md ├── latest │ ├── che-idea │ │ └── latest.yaml │ └── che-pycharm │ │ └── latest.yaml ├── next │ ├── che-idea │ │ ├── 2020.3-next.yaml │ │ ├── 2021.1-next.yaml │ │ ├── 2021.2-next.yaml │ │ ├── 2021.3-next.yaml │ │ └── 2022.1-next.yaml │ └── che-pycharm │ │ ├── 2020.3-next.yaml │ │ ├── 2021.1-next.yaml │ │ ├── 2021.2-next.yaml │ │ ├── 2021.3-next.yaml │ │ └── 2022.1-next.yaml └── released │ ├── che-idea │ ├── 2020.3.yaml │ ├── 2021.1.yaml │ ├── 2021.2.yaml │ ├── 2021.3.yaml │ └── 2022.1.yaml │ └── che-pycharm │ ├── 2020.3.yaml │ ├── 2021.1.yaml │ ├── 2021.2.yaml │ ├── 2021.3.yaml │ └── 2022.1.yaml ├── doc ├── Developer-Guide.md ├── End-User-Guide.md └── aarch64_support.md ├── kubernetes └── offline-activation-secret.yaml ├── make-release.sh ├── projector-client ├── .editorconfig ├── .github │ └── workflows │ │ ├── build.yml │ │ ├── gh-pages.yml │ │ ├── license-year-check.yml │ │ ├── master-code-scanning.yml │ │ ├── pr-code-canning.yml │ │ ├── publish-on-space.yml │ │ ├── release-launcher.yml │ │ ├── release.yml │ │ └── test.yml ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── copyright │ │ ├── MIT.xml │ │ └── profiles_settings.xml │ └── runConfigurations │ │ ├── Build_development_projector_client_web___browserDevelopmentWebpack_.xml │ │ ├── Build_everything___build_.xml │ │ ├── Build_production_projector_client_web___browserProductionWebpack_.xml │ │ ├── Test_everything___check_.xml │ │ └── Test_integration___integrationTest_.xml ├── .jitpack.yml ├── LICENSE.txt ├── README.md ├── build.gradle.kts ├── buildSrc │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Inline.kt │ │ ├── jacocoReport.kt │ │ └── publishOnSpace.kt ├── docSrc │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── doc │ │ ├── docs │ │ │ ├── about │ │ │ │ ├── coc.md │ │ │ │ ├── comparison.md │ │ │ │ ├── contributing.md │ │ │ │ ├── usecases.md │ │ │ │ └── versions.md │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── adb_settings.png │ │ │ ├── dev_guide │ │ │ │ ├── classloader.md │ │ │ │ ├── ecosystem.md │ │ │ │ └── works.md │ │ │ ├── favicon.svg │ │ │ ├── ij_user_guide │ │ │ │ ├── accessing.md │ │ │ │ ├── android.md │ │ │ │ ├── jetbrains.md │ │ │ │ ├── running.md │ │ │ │ └── server_customization.md │ │ │ ├── index.md │ │ │ └── swing_user_guide │ │ │ │ └── arbitrary.md │ │ └── mkdocs.yml │ │ └── index.html ├── docs │ ├── CODE_OF_CONDUCT.md │ └── CONTRIBUTING.md ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── intellij.yaml ├── kotlin-js-store │ └── yarn.lock ├── projector-agent-common │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── agent │ │ │ └── common │ │ │ ├── Misc.kt │ │ │ └── transformation │ │ │ ├── BatchTransformer.kt │ │ │ ├── ProjectorClassTransformer.kt │ │ │ ├── TransformationResult.kt │ │ │ └── TransformerSetup.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── agent │ │ └── common │ │ └── DummyTest.kt ├── projector-agent-ij-injector │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── agent │ │ │ └── ijInjector │ │ │ ├── IdeTransformerSetup.kt │ │ │ ├── IjAwtTransformer.kt │ │ │ ├── IjBrowserUtilTransformer.kt │ │ │ ├── IjFastNodeCellRendererTransformer.kt │ │ │ ├── IjInjector.kt │ │ │ ├── IjInjectorAgent.kt │ │ │ ├── IjLigaturesDisablerTransformer.kt │ │ │ ├── IjMdTransformer.kt │ │ │ ├── IjRestartDisablerTransformer.kt │ │ │ ├── IjUiUtilsTransformer.kt │ │ │ └── ProjectorBatchTransformer.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── agent │ │ └── ijInjector │ │ └── DummyTest.kt ├── projector-client-common │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── client │ │ │ └── common │ │ │ ├── DrawEvent.kt │ │ │ ├── Renderer.kt │ │ │ ├── RenderingQueue.kt │ │ │ ├── SingleRenderingSurfaceProcessor.kt │ │ │ ├── canvas │ │ │ ├── Canvas.kt │ │ │ ├── CanvasFactory.kt │ │ │ ├── Context2d.kt │ │ │ ├── Extensions.kt │ │ │ ├── PaintColor.kt │ │ │ └── buffering │ │ │ │ ├── DoubleBufferedRenderingSurface.kt │ │ │ │ ├── RenderingSurface.kt │ │ │ │ └── UnbufferedRenderingSurface.kt │ │ │ ├── misc │ │ │ ├── ImageCacher.kt │ │ │ ├── ParamsProvider.kt │ │ │ └── TimeStamp.kt │ │ │ ├── protocol │ │ │ ├── KotlinxJsonToClientHandshakeDecoder.kt │ │ │ ├── KotlinxJsonToServerHandshakeEncoder.kt │ │ │ ├── KotlinxProtoBufToClientMessageDecoder.kt │ │ │ └── SerializationToServerMessageEncoder.kt │ │ │ └── window │ │ │ ├── Window.kt │ │ │ └── WindowManager.kt │ │ ├── commonTest │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── client │ │ │ └── common │ │ │ ├── SingleRenderingSurfaceProcessorTest.kt │ │ │ └── misc │ │ │ ├── DummyCanvasFactory.kt │ │ │ └── ImageCacherTest.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── client │ │ │ └── common │ │ │ ├── canvas │ │ │ ├── DomCanvas.kt │ │ │ ├── DomCanvasFactory.kt │ │ │ └── DomContext2d.kt │ │ │ └── misc │ │ │ ├── ParamsProvider.kt │ │ │ └── TimeStamp.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── client │ │ └── common │ │ └── misc │ │ ├── ParamsProvider.kt │ │ └── TimeStamp.kt ├── projector-client-web │ ├── README.md │ ├── build.gradle.kts │ ├── karma.config.d │ │ └── main.js │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── jetbrains │ │ │ │ └── projector │ │ │ │ └── client │ │ │ │ └── web │ │ │ │ ├── Application.kt │ │ │ │ ├── ClipboardHandler.kt │ │ │ │ ├── Main.kt │ │ │ │ ├── ServerEventsProcessor.kt │ │ │ │ ├── UriHandler.kt │ │ │ │ ├── WindowSizeController.kt │ │ │ │ ├── component │ │ │ │ └── MarkdownPanelManager.kt │ │ │ │ ├── debug │ │ │ │ ├── PingShower.kt │ │ │ │ └── SentReceivedBadgeShower.kt │ │ │ │ ├── externalDeclarartion │ │ │ │ ├── CssProperties.kt │ │ │ │ ├── KeyboardApi.kt │ │ │ │ ├── PermissionsApi.kt │ │ │ │ ├── ProcessApi.kt │ │ │ │ ├── npm-radium.kt │ │ │ │ └── npm-react-loading-indicator.kt │ │ │ │ ├── input │ │ │ │ ├── InputController.kt │ │ │ │ ├── JsKey.kt │ │ │ │ ├── SpecialKeysState.kt │ │ │ │ ├── key │ │ │ │ │ ├── ImeInputMethod.kt │ │ │ │ │ ├── InputMethod.kt │ │ │ │ │ ├── LegacyInputMethod.kt │ │ │ │ │ ├── MobileInputMethod.kt │ │ │ │ │ └── Util.kt │ │ │ │ └── layout │ │ │ │ │ ├── FrAzerty.kt │ │ │ │ │ ├── KeyboardApiLayout.kt │ │ │ │ │ ├── KeyboardLayout.kt │ │ │ │ │ └── UsQwerty.kt │ │ │ │ ├── misc │ │ │ │ ├── ClientStats.kt │ │ │ │ ├── ClientUtil.kt │ │ │ │ ├── CloseBlocker.kt │ │ │ │ ├── ConnectionWatcher.kt │ │ │ │ ├── Convert.kt │ │ │ │ ├── FontFaceAppender.kt │ │ │ │ ├── JsUtil.kt │ │ │ │ ├── PingStatistics.kt │ │ │ │ └── SelectionBlocker.kt │ │ │ │ ├── protocol │ │ │ │ ├── GZipToClientMessageDecompressor.kt │ │ │ │ ├── KotlinxJsonToClientMessageDecoder.kt │ │ │ │ ├── ManualJsonToClientMessageDecoder.kt │ │ │ │ └── SupportedTypesProvider.kt │ │ │ │ ├── speculative │ │ │ │ ├── Typing.kt │ │ │ │ └── TypingUtils.kt │ │ │ │ ├── state │ │ │ │ ├── ClientAction.kt │ │ │ │ ├── ClientState.kt │ │ │ │ ├── ClientStateMachine.kt │ │ │ │ ├── MessagingPolicy.kt │ │ │ │ └── ProjectorUI.kt │ │ │ │ ├── ui │ │ │ │ └── ReconnectionMessage.kt │ │ │ │ ├── window │ │ │ │ ├── DragEventsInterceptor.kt │ │ │ │ ├── OnScreenMessenger.kt │ │ │ │ ├── WebWindow.kt │ │ │ │ ├── WebWindowManager.kt │ │ │ │ ├── WindowBorder.kt │ │ │ │ ├── WindowDataEventsProcessor.kt │ │ │ │ └── WindowHeader.kt │ │ │ │ └── wrapper │ │ │ │ └── npm-react-loading-indicator.kt │ │ └── resources │ │ │ ├── apple-touch-icon.png │ │ │ ├── close.svg │ │ │ ├── closeHover.svg │ │ │ ├── index.html │ │ │ ├── manifest.webmanifest │ │ │ ├── pj.svg │ │ │ ├── pj192px.png │ │ │ ├── pj512px.png │ │ │ ├── serviceworker.js │ │ │ └── styles.css │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── client │ │ └── web │ │ ├── input │ │ └── key │ │ │ ├── ImeTest.kt │ │ │ └── util │ │ │ ├── AssertEqualsWithoutTimeStamp.kt │ │ │ └── StringToEvent.kt │ │ └── speculative │ │ └── TypingTest.kt ├── projector-common │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── common │ │ │ ├── misc │ │ │ ├── CompatibilityHash.kt │ │ │ ├── Defaults.kt │ │ │ ├── KotlinExtensions.kt │ │ │ └── misc.kt │ │ │ ├── protocol │ │ │ ├── MessageDecoder.kt │ │ │ ├── MessageEncoder.kt │ │ │ ├── compress │ │ │ │ ├── MessageCompressor.kt │ │ │ │ ├── MessageDecompressor.kt │ │ │ │ ├── NotCompressor.kt │ │ │ │ └── NotDecompressor.kt │ │ │ ├── data │ │ │ │ ├── CommonComposite.kt │ │ │ │ ├── CommonShape.kt │ │ │ │ ├── CursorType.kt │ │ │ │ ├── Font.kt │ │ │ │ ├── ImageData.kt │ │ │ │ ├── ImageEventInfo.kt │ │ │ │ ├── ImageId.kt │ │ │ │ ├── PaintType.kt │ │ │ │ ├── PaintValue.kt │ │ │ │ ├── PathSegment.kt │ │ │ │ ├── Point.kt │ │ │ │ ├── Size.kt │ │ │ │ ├── StrokeData.kt │ │ │ │ ├── UserKeymap.kt │ │ │ │ └── VK.kt │ │ │ ├── handshake │ │ │ │ ├── CompressionType.kt │ │ │ │ ├── Constant.kt │ │ │ │ ├── KotlinxJsonHandshakeEventSerializer.kt │ │ │ │ ├── ProtocolType.kt │ │ │ │ ├── ToClientHandshakeEvent.kt │ │ │ │ └── ToServerHandshakeEvent.kt │ │ │ ├── toClient │ │ │ │ ├── Coder.kt │ │ │ │ ├── KotlinxJsonServerEventSerializer.kt │ │ │ │ ├── KotlinxProtoBufServerEventSerializer.kt │ │ │ │ ├── MainWindowsEndpoint.kt │ │ │ │ ├── ServerEvent.kt │ │ │ │ ├── ServerWindowEvent.kt │ │ │ │ ├── WindowData.kt │ │ │ │ └── data │ │ │ │ │ └── idea │ │ │ │ │ └── CaretInfo.kt │ │ │ └── toServer │ │ │ │ ├── ClientEvent.kt │ │ │ │ ├── Coder.kt │ │ │ │ ├── KotlinxJsonClientEventSerializer.kt │ │ │ │ └── RelayControlEvent.kt │ │ │ └── statistics │ │ │ ├── Average.kt │ │ │ ├── Rate.kt │ │ │ ├── RoundingStrategy.kt │ │ │ └── StatsValue.kt │ │ ├── commonTest │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── common │ │ │ ├── misc │ │ │ └── CompatibilityHashTest.kt │ │ │ ├── protocol │ │ │ ├── CommonVersionPresenceTest.kt │ │ │ └── SerialNamesTest.kt │ │ │ └── statistics │ │ │ ├── AverageTest.kt │ │ │ └── RoundingStrategyTest.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── common │ │ │ └── misc │ │ │ └── misc.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── common │ │ └── misc │ │ └── toString.kt ├── projector-ij-common │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ ├── agent │ │ │ └── init │ │ │ │ └── IjArgs.kt │ │ │ └── ij │ │ │ └── md │ │ │ └── Markdown.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── agent │ │ └── init │ │ └── IjArgsTest.kt ├── projector-launcher │ ├── CHANGELOG.md │ ├── README.md │ ├── build.gradle.kts │ ├── src │ │ └── main │ │ │ ├── kotlin │ │ │ ├── ElectronApp.kt │ │ │ ├── ElectronUtil.kt │ │ │ ├── GlobalSettings.kt │ │ │ ├── KElectron.kt │ │ │ ├── Logger.kt │ │ │ └── app.kt │ │ │ └── resources │ │ │ ├── assets │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ ├── img │ │ │ │ ├── electron-icon.icns │ │ │ │ ├── electron-icon.ico │ │ │ │ ├── electron-icon.png │ │ │ │ └── pj512px.png │ │ │ └── js │ │ │ │ ├── main.js │ │ │ │ ├── modules │ │ │ │ └── urlcache.js │ │ │ │ ├── preload.js │ │ │ │ └── toolboxinfo.js │ │ │ ├── openurl.html │ │ │ └── toolboxinfo.html │ └── webpack.config.d │ │ └── webpack.config.js ├── projector-server-core │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── intTest │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── intTest │ │ │ ├── ConnectionUtil.kt │ │ │ ├── headless │ │ │ ├── CloseBlockingTest.kt │ │ │ ├── IdeWindowParameterTest.kt │ │ │ ├── NoMessagesFromServerTest.kt │ │ │ ├── NotSecureAlertTest.kt │ │ │ ├── ProjectorHttpWsServerTest.kt │ │ │ ├── SeleniumUtils.kt │ │ │ └── keyboard │ │ │ │ ├── AbstractKeyboardTest.kt │ │ │ │ ├── DesktopKeyboardUtil.kt │ │ │ │ ├── ImeKeyboardTest.kt │ │ │ │ ├── LegacyKeyboardTest.kt │ │ │ │ ├── MobileKeyboardTest.kt │ │ │ │ ├── MobileKeyboardUtil.kt │ │ │ │ └── MobileOnlyButtonsKeyboardTest.kt │ │ │ └── lowLevelKeyboard │ │ │ ├── LowLevelClipboardTest.kt │ │ │ └── LowLevelKeyboardTest.kt │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── server │ │ │ └── core │ │ │ ├── ClientEventHandler.kt │ │ │ ├── ClientSettings.kt │ │ │ ├── ClientWrapper.kt │ │ │ ├── ServerTransport.kt │ │ │ ├── convert │ │ │ ├── toAwt │ │ │ │ ├── ClientEventExtensions.kt │ │ │ │ ├── Key.kt │ │ │ │ ├── Mouse.kt │ │ │ │ └── codesMap.kt │ │ │ └── toClient │ │ │ │ ├── Convert.kt │ │ │ │ ├── Shift.kt │ │ │ │ └── Transform.kt │ │ │ ├── ij │ │ │ ├── IdeColors.kt │ │ │ ├── IjInjectorAgentInitializer.kt │ │ │ ├── KeymapSetter.kt │ │ │ ├── SettingsInitializer.kt │ │ │ ├── log │ │ │ │ ├── DelegatingJvmLogger.kt │ │ │ │ └── IjJvmLogger.kt │ │ │ └── md │ │ │ │ ├── CssProcessor.kt │ │ │ │ ├── LocalImagesInliner.kt │ │ │ │ ├── PanelComponent.kt │ │ │ │ ├── PanelDelegate.kt │ │ │ │ ├── PanelUpdater.kt │ │ │ │ └── ProjectorMarkdownPanel.kt │ │ │ ├── protocol │ │ │ ├── GZipMessageCompressor.kt │ │ │ ├── HandshakeTypesSelector.kt │ │ │ ├── KotlinxJsonToClientHandshakeEncoder.kt │ │ │ ├── KotlinxJsonToClientMessageEncoder.kt │ │ │ ├── KotlinxJsonToServerHandshakeDecoder.kt │ │ │ ├── KotlinxJsonToServerMessageDecoder.kt │ │ │ └── KotlinxProtoBufToClientMessageEncoder.kt │ │ │ ├── util │ │ │ ├── AbstractWindowDrawInterestManager.kt │ │ │ ├── Awt.kt │ │ │ ├── HostAddress.kt │ │ │ ├── HostName.kt │ │ │ ├── LaterInvokator.kt │ │ │ ├── ObjectIdCacher.kt │ │ │ ├── SizeAware.kt │ │ │ ├── Ssl.kt │ │ │ └── distinctUpdatedOnscreenSurfaces.kt │ │ │ └── websocket │ │ │ ├── HttpWsClient.kt │ │ │ ├── HttpWsClientBuilder.kt │ │ │ ├── HttpWsServer.kt │ │ │ ├── HttpWsServerBuilder.kt │ │ │ ├── HttpWsTransport.kt │ │ │ ├── WsClientWrapper.kt │ │ │ └── WsTransportBuilder.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── server │ │ └── core │ │ ├── convert │ │ ├── ToAwtTest.kt │ │ └── ToClientTransformShrinkEvents.kt │ │ ├── ij │ │ └── md │ │ │ └── MarkdownPanelTest.kt │ │ └── util │ │ ├── AbstractWindowInterestManagerTest.kt │ │ └── DistinctUpdatedOnscreenSurfacesTest.kt ├── projector-util-agent │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── util │ │ │ └── agent │ │ │ └── Misc.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── utill │ │ └── agent │ │ └── DummyTest.kt ├── projector-util-loading │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── util │ │ │ └── loading │ │ │ ├── Option.kt │ │ │ ├── ProjectorClassLoader.kt │ │ │ ├── ProjectorClassLoaderSetup.kt │ │ │ ├── Reflect.kt │ │ │ ├── UseProjectorLoader.kt │ │ │ └── state │ │ │ ├── IdeState.kt │ │ │ ├── IdeStateListener.kt │ │ │ └── IdeStateUtils.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── util │ │ └── loading │ │ └── ReflectionTest.kt ├── projector-util-logging │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── util │ │ │ └── logging │ │ │ ├── Logger.kt │ │ │ ├── LoggerFunction.kt │ │ │ └── ReifiedLogger.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── util │ │ │ └── logging │ │ │ └── Logger.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── util │ │ └── logging │ │ └── Logger.kt ├── qodana.sarif.json ├── qodana.yaml └── settings.gradle.kts ├── projector-server ├── .editorconfig ├── .github │ └── workflows │ │ ├── build.yml │ │ ├── license-year-check.yml │ │ ├── master-code-scanning.yml │ │ ├── pr-code-canning.yml │ │ ├── projector-demo-check.yml │ │ ├── publish-on-space.yml │ │ ├── release-agent.yml │ │ ├── release.yml │ │ └── test.yml ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── copyright │ │ ├── GPLv2_CPE.xml │ │ ├── MIT.xml │ │ └── profiles_settings.xml │ ├── runConfigurations │ │ ├── Build_everything___build_.xml │ │ ├── Build_projector_server___distZip_.xml │ │ ├── Run_IDEA___runIdeaServer_.xml │ │ ├── Run_Server___runServer_.xml │ │ └── Test_everything___check_.xml │ └── scopes │ │ └── projector_client.xml ├── .jitpack.yml ├── GPLv2+CPE.txt ├── LICENSE.txt ├── README-JETBRAINS.md ├── README.md ├── build.gradle.kts ├── buildSrc │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Inline.kt │ │ ├── JvmArgs.kt │ │ ├── ProductInfo.kt │ │ ├── ServerConfiguration.kt │ │ ├── Testing.kt │ │ ├── publishToSpace.kt │ │ ├── runIdeaTaskBase.kt │ │ ├── runServerTaskBase.kt │ │ └── runTaskBase.kt ├── docs │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── Projector.md ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── intellij.yaml ├── local.properties.example ├── projector-agent │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── agent │ │ ├── AgentInitializer.kt │ │ ├── AgentLauncher.kt │ │ ├── CommandsHandler.kt │ │ ├── GraphicsInterceptor.kt │ │ ├── GraphicsState.kt │ │ ├── GraphicsTransformer.kt │ │ └── MainAgent.kt ├── projector-awt-common │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── awt │ │ │ ├── PClipboard.kt │ │ │ ├── PInputMethod.kt │ │ │ ├── PPeerFactory.kt │ │ │ ├── PToolkitBase.kt │ │ │ ├── PWindow.kt │ │ │ ├── PWindowUtils.kt │ │ │ ├── data │ │ │ ├── AwtImageInfo.kt │ │ │ ├── AwtPaintType.kt │ │ │ └── Direction.kt │ │ │ ├── font │ │ │ ├── PFontConfiguration.kt │ │ │ └── PFontManager.kt │ │ │ ├── image │ │ │ ├── AffineTransformUril.kt │ │ │ ├── PGraphics2D.kt │ │ │ ├── PGraphicsConfiguration.kt │ │ │ ├── PGraphicsDevice.kt │ │ │ ├── PGraphicsEnvironment.kt │ │ │ ├── PVolatileImage.kt │ │ │ └── ShapeUtil.kt │ │ │ ├── peer │ │ │ ├── PCheckboxMenuItemPeer.kt │ │ │ ├── PDesktopPeer.kt │ │ │ ├── PFontPeer.kt │ │ │ ├── PKeyboardFocusManagerPeer.kt │ │ │ ├── PMenuBarPeer.kt │ │ │ ├── PMenuComponentPeer.kt │ │ │ ├── PMenuItemPeer.kt │ │ │ ├── PMouseInfoPeer.kt │ │ │ ├── PTextComponentPeer.kt │ │ │ └── base │ │ │ │ ├── PButtonPeerBase.kt │ │ │ │ ├── PCanvasPeerBase.kt │ │ │ │ ├── PCheckboxPeerBase.kt │ │ │ │ ├── PChoicePeerBase.kt │ │ │ │ ├── PComponentPeerBase.kt │ │ │ │ ├── PContainerPeerBase.kt │ │ │ │ ├── PDialogPeerBase.kt │ │ │ │ ├── PFileDialogPeerBase.kt │ │ │ │ ├── PFramePeerBase.kt │ │ │ │ ├── PLabelPeerBase.kt │ │ │ │ ├── PListPeerBase.kt │ │ │ │ ├── PMenuPeerBase.kt │ │ │ │ ├── PPanelPeerBase.kt │ │ │ │ ├── PPopupMenuPeerBase.kt │ │ │ │ ├── PScrollPanePeerBase.kt │ │ │ │ ├── PScrollbarPeerBase.kt │ │ │ │ ├── PTextAreaPeerBase.kt │ │ │ │ ├── PTextFieldPeerBase.kt │ │ │ │ └── PWindowPeerBase.kt │ │ │ └── service │ │ │ ├── Defaults.kt │ │ │ ├── DrawEventQueue.kt │ │ │ ├── FontProvider.kt │ │ │ └── ImageCacher.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── awt │ │ └── IsWindowHeaderVisibleEnoughTest.kt ├── projector-awt-jdk17 │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── awt │ │ ├── PPeerFactoryJdk17.kt │ │ └── PToolkit.kt ├── projector-awt │ ├── CHANGELOG.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── awt │ │ ├── PPeerFactoryJdk11.kt │ │ ├── PToolkit.kt │ │ └── peer │ │ ├── PComponentJdk11Peer.kt │ │ └── PMenuJdk11Peer.kt ├── projector-plugin │ ├── CHANGELOG.md │ ├── README.md │ ├── build.gradle.kts │ ├── gradle.properties │ ├── images │ │ ├── button.png │ │ └── hello.png │ └── src │ │ └── main │ │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── plugin │ │ │ ├── KeystoreUtils.kt │ │ │ ├── ProjectorInstallStateKeeper.kt │ │ │ ├── ProjectorService.kt │ │ │ ├── ProjectorSettingsConfigurable.kt │ │ │ ├── RegisterPluginInstallerStateListener.kt │ │ │ ├── Session.kt │ │ │ ├── Utils.kt │ │ │ ├── actions │ │ │ ├── ActivateAction.kt │ │ │ ├── DisableAction.kt │ │ │ ├── EnableAction.kt │ │ │ ├── HeadlessProjectorAction.kt │ │ │ ├── SessionAction.kt │ │ │ └── WaitForStartAction.kt │ │ │ └── ui │ │ │ ├── ConnectionPanel.kt │ │ │ ├── HostsList.kt │ │ │ ├── LinearPanelBuilder.kt │ │ │ ├── Messages.kt │ │ │ ├── PortEditor.kt │ │ │ ├── ProjectorSettingsComponent.kt │ │ │ ├── ProjectorStatusWidget.kt │ │ │ ├── SessionDialog.kt │ │ │ └── TokenEditor.kt │ │ └── resources │ │ └── META-INF │ │ ├── activationNeededSign.svg │ │ ├── disabledSign.svg │ │ ├── plugin.xml │ │ ├── pluginIcon.svg │ │ ├── runningSign.svg │ │ ├── startingSign.svg │ │ └── stoppedSign.svg ├── projector-server-common │ ├── .gitignore │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── projector │ │ │ └── server │ │ │ ├── HeadlessInitializer.kt │ │ │ ├── PAwtProvider.kt │ │ │ ├── ProjectorLauncherBase.kt │ │ │ ├── ProjectorServer.kt │ │ │ ├── ProjectorStarter.kt │ │ │ ├── idea │ │ │ ├── CaretInfoUpdater.kt │ │ │ ├── ExtendedTextAttributes.kt │ │ │ └── UpdatesConfig.kt │ │ │ ├── platform │ │ │ ├── Compatibility.kt │ │ │ └── Context.kt │ │ │ ├── service │ │ │ ├── ProjectorAwtInitializer.kt │ │ │ ├── ProjectorDrawEventQueue.kt │ │ │ ├── ProjectorFontProvider.kt │ │ │ └── ProjectorImageCacher.kt │ │ │ ├── util │ │ │ ├── AsyncHostResolver.kt │ │ │ ├── ConfirmConnection.kt │ │ │ ├── Convert.kt │ │ │ ├── FontCacher.kt │ │ │ ├── Network.kt │ │ │ ├── ServerMessages.kt │ │ │ └── WindowDrawInterestManagerImpl.kt │ │ │ └── websocket │ │ │ └── WebsocketServer.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── server │ │ ├── cache │ │ └── ImageCacherTest.kt │ │ ├── idea │ │ └── RangeComparingTest.kt │ │ └── util │ │ ├── DefaultsTest.kt │ │ ├── InterestManagerImplTest.kt │ │ ├── SizeAwareTest.kt │ │ └── TransformTest.kt ├── projector-server-jdk17 │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── server │ │ ├── PAwtProviderJdk17.kt │ │ └── ProjectorLauncher.kt ├── projector-server │ ├── CHANGELOG.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── projector │ │ └── server │ │ ├── PAwtProviderJdk11.kt │ │ └── ProjectorLauncher.kt ├── qodana.sarif.json ├── qodana.yaml └── settings.gradle.kts ├── projector.sh └── static ├── default-configuration-provider.sh ├── entrypoint-init-container.sh ├── entrypoint-volume.sh ├── entrypoint.sh └── ide-projector-launcher.sh /.devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.devfile.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default Owners 2 | * @azatsarynnyy @RomanNikitenko @vitaliy-guliy @l0rd 3 | -------------------------------------------------------------------------------- /.github/build-container-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.github/build-container-matrix.sh -------------------------------------------------------------------------------- /.github/workflows/next-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.github/workflows/next-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/rebase-projector-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.github/workflows/rebase-projector-sources.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/README.md -------------------------------------------------------------------------------- /asset-required-rpms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/asset-required-rpms.txt -------------------------------------------------------------------------------- /che-plugin/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /che-plugin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/Dockerfile -------------------------------------------------------------------------------- /che-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/build.gradle.kts -------------------------------------------------------------------------------- /che-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /che-plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /che-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /che-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/gradlew -------------------------------------------------------------------------------- /che-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/gradlew.bat -------------------------------------------------------------------------------- /che-plugin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/settings.gradle.kts -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/PluginExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/PluginExtension.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/PluginHelpProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/PluginHelpProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardBundle.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardExtension.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/DashboardIcons.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/GoToDashboardAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/dashboard/GoToDashboardAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/Endpoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/Endpoint.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointBundle.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointCategory.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointDataKeys.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointDataKeys.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointExposure.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointExposure.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointExtension.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointIcons.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/EndpointUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/action/CopyEndpointUrlAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/action/CopyEndpointUrlAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/action/OpenEndpointInBrowserAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/action/OpenEndpointInBrowserAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/filter/HidePluginEndpointsFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/filter/HidePluginEndpointsFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/forward/ForwardServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/forward/ForwardServer.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/forward/ForwardedPort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/forward/ForwardedPort.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/provider/CachingEndpointProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/provider/CachingEndpointProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/provider/EndpointProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/provider/EndpointProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/IPConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/IPConverter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/InternalScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/InternalScanner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/InternalScannerDelegator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/InternalScannerDelegator.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/ListeningPort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/ListeningPort.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortChangesDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortChangesDetector.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortScanner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/PortUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/imp/DumbInternalScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/imp/DumbInternalScanner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/imp/SystemInternalScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/scanner/imp/SystemInternalScanner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/EndpointTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/EndpointTreeElement.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/WorkspaceTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/WorkspaceTreeElement.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/structure/EndpointStructureViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/structure/EndpointStructureViewModel.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/structure/EndpointTreeActionsOwner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/tree/structure/EndpointTreeActionsOwner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsPanel.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsToolWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsToolWindow.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsToolWindowFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/ui/EndpointsToolWindowFactory.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/util/OpenEndpointUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/util/OpenEndpointUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/util/SpecTemplateObjectUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/endpoint/util/SpecTemplateObjectUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/Command.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandBundle.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandDataKeys.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandDataKeys.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandExtension.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandGroupKind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandGroupKind.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/CommandIcons.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteAnyCommandAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteAnyCommandAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteCommandAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteCommandAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteSelectedCommandAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/action/ExecuteSelectedCommandAction.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/BuildCommandFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/BuildCommandFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/DebugCommandFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/DebugCommandFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/DeployCommandFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/DeployCommandFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/RunCommandFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/RunCommandFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/TestCommandFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/filter/TestCommandFilter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandListActionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandListActionProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandRunAnythingProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/CommandRunAnythingProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/RuntimeListProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/provider/RuntimeListProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfiguration.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfigurationEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfigurationEditor.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfigurationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunConfigurationType.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunProfileState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/CommandRunProfileState.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/NullComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/NullComponent.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/process/ExecProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/process/ExecProcess.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/process/PipedStreamHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/process/PipedStreamHandler.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/terminal/ExecTerminalRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/terminal/ExecTerminalRunner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/AtomicExecutionID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/AtomicExecutionID.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/MachineExec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/MachineExec.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/ResizeParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/ResizeParam.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/Utils.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/WebSockets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/run/websocket/WebSockets.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/CommandTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/CommandTreeElement.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/ComponentGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/ComponentGroup.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/ComponentGrouper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/ComponentGrouper.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/TerminalTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/TerminalTreeElement.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/TreeElementWeighedSorter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/TreeElementWeighedSorter.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/WorkspaceTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/WorkspaceTreeElement.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/structure/CommandStructureViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/structure/CommandStructureViewModel.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/structure/CommandTreeActionsOwner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/tree/structure/CommandTreeActionsOwner.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandPanel.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandToolWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandToolWindow.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandToolWindowFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/ui/CommandToolWindowFactory.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/CommandLineUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/CommandLineUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/CommandUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/CommandUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/SpecTemplateObjectUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/execution/util/SpecTemplateObjectUtil.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/internal/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/internal/Util.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/SpecTemplateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/SpecTemplateProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/SpecTemplateProviderDelegator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/SpecTemplateProviderDelegator.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/imp/ApiSpecTemplateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/imp/ApiSpecTemplateProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/imp/DumbSpecTemplateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/kotlin/io/github/che_incubator/plugin/spec/imp/DumbSpecTemplateProvider.kt -------------------------------------------------------------------------------- /che-plugin/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /che-plugin/src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/dev/devfile/flattened.devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/dev/devfile/flattened.devfile.yaml -------------------------------------------------------------------------------- /che-plugin/src/main/resources/dev/port-scanner/port-scanner-listen-ipv4.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/dev/port-scanner/port-scanner-listen-ipv4.stdout -------------------------------------------------------------------------------- /che-plugin/src/main/resources/dev/port-scanner/port-scanner-listen-ipv6.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/dev/port-scanner/port-scanner-listen-ipv6.stdout -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/dashboard/goTo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/dashboard/goTo.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/browseEndpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/browseEndpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/copyEndpointUrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/copyEndpointUrl.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/devMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/devMode.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/endpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/endpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/internalPluginEndpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/internalPluginEndpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/internalUserEndpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/internalUserEndpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/panel.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/pluginEndpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/pluginEndpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/togglePluginEndpoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/togglePluginEndpoints.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/userEndpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/userEndpoint.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/endpoint/workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/endpoint/workspace.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/command.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/componentGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/componentGroup.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/devfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/devfile.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/executeAnyCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/executeAnyCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/executeCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/executeCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/filterBuildCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/filterBuildCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/filterDebugCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/filterDebugCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/filterDeployCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/filterDeployCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/filterRunCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/filterRunCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/filterTestCommand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/filterTestCommand.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/panel.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/sortByType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/sortByType.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/terminalNode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/terminalNode.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/icons/execution/workspaceGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/icons/execution/workspaceGroup.svg -------------------------------------------------------------------------------- /che-plugin/src/main/resources/messages/CommandBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/messages/CommandBundle.properties -------------------------------------------------------------------------------- /che-plugin/src/main/resources/messages/DashboardBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/messages/DashboardBundle.properties -------------------------------------------------------------------------------- /che-plugin/src/main/resources/messages/EndpointBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/che-plugin/src/main/resources/messages/EndpointBundle.properties -------------------------------------------------------------------------------- /compatible-ide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/compatible-ide.json -------------------------------------------------------------------------------- /devfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/README.md -------------------------------------------------------------------------------- /devfiles/latest/che-idea/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/latest/che-idea/latest.yaml -------------------------------------------------------------------------------- /devfiles/latest/che-pycharm/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/latest/che-pycharm/latest.yaml -------------------------------------------------------------------------------- /devfiles/next/che-idea/2020.3-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-idea/2020.3-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-idea/2021.1-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-idea/2021.1-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-idea/2021.2-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-idea/2021.2-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-idea/2021.3-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-idea/2021.3-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-idea/2022.1-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-idea/2022.1-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-pycharm/2020.3-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-pycharm/2020.3-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-pycharm/2021.1-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-pycharm/2021.1-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-pycharm/2021.2-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-pycharm/2021.2-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-pycharm/2021.3-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-pycharm/2021.3-next.yaml -------------------------------------------------------------------------------- /devfiles/next/che-pycharm/2022.1-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/next/che-pycharm/2022.1-next.yaml -------------------------------------------------------------------------------- /devfiles/released/che-idea/2020.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-idea/2020.3.yaml -------------------------------------------------------------------------------- /devfiles/released/che-idea/2021.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-idea/2021.1.yaml -------------------------------------------------------------------------------- /devfiles/released/che-idea/2021.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-idea/2021.2.yaml -------------------------------------------------------------------------------- /devfiles/released/che-idea/2021.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-idea/2021.3.yaml -------------------------------------------------------------------------------- /devfiles/released/che-idea/2022.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-idea/2022.1.yaml -------------------------------------------------------------------------------- /devfiles/released/che-pycharm/2020.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-pycharm/2020.3.yaml -------------------------------------------------------------------------------- /devfiles/released/che-pycharm/2021.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-pycharm/2021.1.yaml -------------------------------------------------------------------------------- /devfiles/released/che-pycharm/2021.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-pycharm/2021.2.yaml -------------------------------------------------------------------------------- /devfiles/released/che-pycharm/2021.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-pycharm/2021.3.yaml -------------------------------------------------------------------------------- /devfiles/released/che-pycharm/2022.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/devfiles/released/che-pycharm/2022.1.yaml -------------------------------------------------------------------------------- /doc/Developer-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/doc/Developer-Guide.md -------------------------------------------------------------------------------- /doc/End-User-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/doc/End-User-Guide.md -------------------------------------------------------------------------------- /doc/aarch64_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/doc/aarch64_support.md -------------------------------------------------------------------------------- /kubernetes/offline-activation-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/kubernetes/offline-activation-secret.yaml -------------------------------------------------------------------------------- /make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/make-release.sh -------------------------------------------------------------------------------- /projector-client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.editorconfig -------------------------------------------------------------------------------- /projector-client/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/build.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/license-year-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/license-year-check.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/master-code-scanning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/master-code-scanning.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/pr-code-canning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/pr-code-canning.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/publish-on-space.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/publish-on-space.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/release-launcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/release-launcher.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/release.yml -------------------------------------------------------------------------------- /projector-client/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.github/workflows/test.yml -------------------------------------------------------------------------------- /projector-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.gitignore -------------------------------------------------------------------------------- /projector-client/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /projector-client/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /projector-client/.idea/copyright/MIT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/copyright/MIT.xml -------------------------------------------------------------------------------- /projector-client/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /projector-client/.idea/runConfigurations/Build_development_projector_client_web___browserDevelopmentWebpack_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/runConfigurations/Build_development_projector_client_web___browserDevelopmentWebpack_.xml -------------------------------------------------------------------------------- /projector-client/.idea/runConfigurations/Build_everything___build_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/runConfigurations/Build_everything___build_.xml -------------------------------------------------------------------------------- /projector-client/.idea/runConfigurations/Build_production_projector_client_web___browserProductionWebpack_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/runConfigurations/Build_production_projector_client_web___browserProductionWebpack_.xml -------------------------------------------------------------------------------- /projector-client/.idea/runConfigurations/Test_everything___check_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/runConfigurations/Test_everything___check_.xml -------------------------------------------------------------------------------- /projector-client/.idea/runConfigurations/Test_integration___integrationTest_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.idea/runConfigurations/Test_integration___integrationTest_.xml -------------------------------------------------------------------------------- /projector-client/.jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/.jitpack.yml -------------------------------------------------------------------------------- /projector-client/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/LICENSE.txt -------------------------------------------------------------------------------- /projector-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/README.md -------------------------------------------------------------------------------- /projector-client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/buildSrc/src/main/kotlin/Inline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/buildSrc/src/main/kotlin/Inline.kt -------------------------------------------------------------------------------- /projector-client/buildSrc/src/main/kotlin/jacocoReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/buildSrc/src/main/kotlin/jacocoReport.kt -------------------------------------------------------------------------------- /projector-client/buildSrc/src/main/kotlin/publishOnSpace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/buildSrc/src/main/kotlin/publishOnSpace.kt -------------------------------------------------------------------------------- /projector-client/docSrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/README.md -------------------------------------------------------------------------------- /projector-client/docSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/about/coc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/about/coc.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/about/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/about/comparison.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/about/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/about/contributing.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/about/usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/about/usecases.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/about/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/about/versions.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/assets/images/adb_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/assets/images/adb_settings.png -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/dev_guide/classloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/dev_guide/classloader.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/dev_guide/ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/dev_guide/ecosystem.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/dev_guide/works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/dev_guide/works.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/favicon.svg -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/ij_user_guide/accessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/ij_user_guide/accessing.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/ij_user_guide/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/ij_user_guide/android.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/ij_user_guide/jetbrains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/ij_user_guide/jetbrains.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/ij_user_guide/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/ij_user_guide/running.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/ij_user_guide/server_customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/ij_user_guide/server_customization.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/index.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/docs/swing_user_guide/arbitrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/docs/swing_user_guide/arbitrary.md -------------------------------------------------------------------------------- /projector-client/docSrc/src/doc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/doc/mkdocs.yml -------------------------------------------------------------------------------- /projector-client/docSrc/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docSrc/src/index.html -------------------------------------------------------------------------------- /projector-client/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /projector-client/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /projector-client/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/gradle.properties -------------------------------------------------------------------------------- /projector-client/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /projector-client/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /projector-client/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/gradlew -------------------------------------------------------------------------------- /projector-client/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/gradlew.bat -------------------------------------------------------------------------------- /projector-client/intellij.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/intellij.yaml -------------------------------------------------------------------------------- /projector-client/kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /projector-client/projector-agent-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-agent-common/src/main/kotlin/org/jetbrains/projector/agent/common/Misc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-common/src/main/kotlin/org/jetbrains/projector/agent/common/Misc.kt -------------------------------------------------------------------------------- /projector-client/projector-agent-common/src/test/kotlin/org/jetbrains/projector/agent/common/DummyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-common/src/test/kotlin/org/jetbrains/projector/agent/common/DummyTest.kt -------------------------------------------------------------------------------- /projector-client/projector-agent-ij-injector/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-ij-injector/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjInjector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjInjector.kt -------------------------------------------------------------------------------- /projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjInjectorAgent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjInjectorAgent.kt -------------------------------------------------------------------------------- /projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjMdTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-ij-injector/src/main/kotlin/org/jetbrains/projector/agent/ijInjector/IjMdTransformer.kt -------------------------------------------------------------------------------- /projector-client/projector-agent-ij-injector/src/test/kotlin/org/jetbrains/projector/agent/ijInjector/DummyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-agent-ij-injector/src/test/kotlin/org/jetbrains/projector/agent/ijInjector/DummyTest.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/README.md -------------------------------------------------------------------------------- /projector-client/projector-client-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/DrawEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/DrawEvent.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/Renderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/Renderer.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/RenderingQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/RenderingQueue.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/canvas/Canvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/canvas/Canvas.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/canvas/Context2d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/canvas/Context2d.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/misc/ImageCacher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/misc/ImageCacher.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/window/Window.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/commonMain/kotlin/org/jetbrains/projector/client/common/window/Window.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/canvas/DomCanvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/canvas/DomCanvas.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/canvas/DomContext2d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/canvas/DomContext2d.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/misc/ParamsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/misc/ParamsProvider.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jsMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jvmMain/kotlin/org/jetbrains/projector/client/common/misc/ParamsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jvmMain/kotlin/org/jetbrains/projector/client/common/misc/ParamsProvider.kt -------------------------------------------------------------------------------- /projector-client/projector-client-common/src/jvmMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-common/src/jvmMain/kotlin/org/jetbrains/projector/client/common/misc/TimeStamp.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/README.md -------------------------------------------------------------------------------- /projector-client/projector-client-web/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-client-web/karma.config.d/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/karma.config.d/main.js -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/Application.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ClipboardHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ClipboardHandler.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/Main.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ServerEventsProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ServerEventsProcessor.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/UriHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/UriHandler.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/WindowSizeController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/WindowSizeController.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/debug/PingShower.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/debug/PingShower.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/InputController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/InputController.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/JsKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/JsKey.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/SpecialKeysState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/SpecialKeysState.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/ImeInputMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/ImeInputMethod.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/InputMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/InputMethod.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/LegacyInputMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/LegacyInputMethod.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/MobileInputMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/MobileInputMethod.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/key/Util.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/FrAzerty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/FrAzerty.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/KeyboardLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/KeyboardLayout.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/UsQwerty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/input/layout/UsQwerty.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ClientStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ClientStats.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ClientUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ClientUtil.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/CloseBlocker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/CloseBlocker.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ConnectionWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/ConnectionWatcher.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/Convert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/Convert.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/FontFaceAppender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/FontFaceAppender.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/JsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/JsUtil.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/PingStatistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/PingStatistics.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/SelectionBlocker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/misc/SelectionBlocker.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/speculative/Typing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/speculative/Typing.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/speculative/TypingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/speculative/TypingUtils.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientAction.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientState.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientStateMachine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ClientStateMachine.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/MessagingPolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/MessagingPolicy.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ProjectorUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/state/ProjectorUI.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ui/ReconnectionMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/ui/ReconnectionMessage.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/OnScreenMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/OnScreenMessenger.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WebWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WebWindow.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WebWindowManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WebWindowManager.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WindowBorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WindowBorder.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WindowHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/kotlin/org/jetbrains/projector/client/web/window/WindowHeader.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/apple-touch-icon.png -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/close.svg -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/closeHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/closeHover.svg -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/index.html -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/manifest.webmanifest -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/pj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/pj.svg -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/pj192px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/pj192px.png -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/pj512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/pj512px.png -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/serviceworker.js -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/main/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/main/resources/styles.css -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/test/kotlin/org/jetbrains/projector/client/web/input/key/ImeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/test/kotlin/org/jetbrains/projector/client/web/input/key/ImeTest.kt -------------------------------------------------------------------------------- /projector-client/projector-client-web/src/test/kotlin/org/jetbrains/projector/client/web/speculative/TypingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-client-web/src/test/kotlin/org/jetbrains/projector/client/web/speculative/TypingTest.kt -------------------------------------------------------------------------------- /projector-client/projector-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/README.md -------------------------------------------------------------------------------- /projector-client/projector-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/CompatibilityHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/CompatibilityHash.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/Defaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/Defaults.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/KotlinExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/KotlinExtensions.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/misc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/misc/misc.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/MessageDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/MessageDecoder.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/MessageEncoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/MessageEncoder.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/CommonShape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/CommonShape.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/CursorType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/CursorType.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Font.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Font.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/ImageData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/ImageData.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/ImageId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/ImageId.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PaintType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PaintType.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PaintValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PaintValue.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PathSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/PathSegment.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Point.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Point.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Size.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/Size.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/StrokeData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/StrokeData.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/UserKeymap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/UserKeymap.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/VK.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/data/VK.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/handshake/Constant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/handshake/Constant.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/toClient/Coder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/toClient/Coder.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/toServer/Coder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/protocol/toServer/Coder.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/Average.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/Average.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/Rate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/Rate.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/RoundingStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/RoundingStrategy.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/StatsValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonMain/kotlin/org/jetbrains/projector/common/statistics/StatsValue.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/misc/CompatibilityHashTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/misc/CompatibilityHashTest.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/protocol/SerialNamesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/protocol/SerialNamesTest.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/statistics/AverageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/commonTest/kotlin/org/jetbrains/projector/common/statistics/AverageTest.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/jsMain/kotlin/org/jetbrains/projector/common/misc/misc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/jsMain/kotlin/org/jetbrains/projector/common/misc/misc.kt -------------------------------------------------------------------------------- /projector-client/projector-common/src/jvmMain/kotlin/org/jetbrains/projector/common/misc/toString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-common/src/jvmMain/kotlin/org/jetbrains/projector/common/misc/toString.kt -------------------------------------------------------------------------------- /projector-client/projector-ij-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-ij-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-ij-common/src/main/kotlin/org/jetbrains/projector/agent/init/IjArgs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-ij-common/src/main/kotlin/org/jetbrains/projector/agent/init/IjArgs.kt -------------------------------------------------------------------------------- /projector-client/projector-ij-common/src/main/kotlin/org/jetbrains/projector/ij/md/Markdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-ij-common/src/main/kotlin/org/jetbrains/projector/ij/md/Markdown.kt -------------------------------------------------------------------------------- /projector-client/projector-ij-common/src/test/kotlin/org/jetbrains/projector/agent/init/IjArgsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-ij-common/src/test/kotlin/org/jetbrains/projector/agent/init/IjArgsTest.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/CHANGELOG.md -------------------------------------------------------------------------------- /projector-client/projector-launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/README.md -------------------------------------------------------------------------------- /projector-client/projector-launcher/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/ElectronApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/ElectronApp.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/ElectronUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/ElectronUtil.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/GlobalSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/GlobalSettings.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/KElectron.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/KElectron.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/Logger.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/kotlin/app.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/kotlin/app.kt -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/css/styles.css -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.icns -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.ico -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/img/electron-icon.png -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/img/pj512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/img/pj512px.png -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/js/main.js -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/js/modules/urlcache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/js/modules/urlcache.js -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/js/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/js/preload.js -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/assets/js/toolboxinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/assets/js/toolboxinfo.js -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/openurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/openurl.html -------------------------------------------------------------------------------- /projector-client/projector-launcher/src/main/resources/toolboxinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/src/main/resources/toolboxinfo.html -------------------------------------------------------------------------------- /projector-client/projector-launcher/webpack.config.d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-launcher/webpack.config.d/webpack.config.js -------------------------------------------------------------------------------- /projector-client/projector-server-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/.gitignore -------------------------------------------------------------------------------- /projector-client/projector-server-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/README.md -------------------------------------------------------------------------------- /projector-client/projector-server-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/intTest/kotlin/org/jetbrains/projector/intTest/ConnectionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/intTest/kotlin/org/jetbrains/projector/intTest/ConnectionUtil.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/intTest/kotlin/org/jetbrains/projector/intTest/headless/SeleniumUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/intTest/kotlin/org/jetbrains/projector/intTest/headless/SeleniumUtils.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientEventHandler.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientSettings.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ClientWrapper.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ServerTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ServerTransport.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/Key.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/Key.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/Mouse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/Mouse.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/codesMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toAwt/codesMap.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toClient/Shift.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/convert/toClient/Shift.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/IdeColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/IdeColors.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/KeymapSetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/KeymapSetter.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/SettingsInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/SettingsInitializer.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/log/IjJvmLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/log/IjJvmLogger.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/CssProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/CssProcessor.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelComponent.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelDelegate.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelUpdater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/ij/md/PanelUpdater.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/Awt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/Awt.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/HostAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/HostAddress.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/HostName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/HostName.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/LaterInvokator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/LaterInvokator.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/ObjectIdCacher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/ObjectIdCacher.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/SizeAware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/SizeAware.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/Ssl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/util/Ssl.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/websocket/HttpWsClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/websocket/HttpWsClient.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/websocket/HttpWsServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/main/kotlin/org/jetbrains/projector/server/core/websocket/HttpWsServer.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/test/kotlin/org/jetbrains/projector/server/core/convert/ToAwtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/test/kotlin/org/jetbrains/projector/server/core/convert/ToAwtTest.kt -------------------------------------------------------------------------------- /projector-client/projector-server-core/src/test/kotlin/org/jetbrains/projector/server/core/ij/md/MarkdownPanelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-server-core/src/test/kotlin/org/jetbrains/projector/server/core/ij/md/MarkdownPanelTest.kt -------------------------------------------------------------------------------- /projector-client/projector-util-agent/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-agent/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-util-agent/src/main/kotlin/org/jetbrains/projector/util/agent/Misc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-agent/src/main/kotlin/org/jetbrains/projector/util/agent/Misc.kt -------------------------------------------------------------------------------- /projector-client/projector-util-agent/src/test/kotlin/org/jetbrains/projector/utill/agent/DummyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-agent/src/test/kotlin/org/jetbrains/projector/utill/agent/DummyTest.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/Option.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/Option.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/ProjectorClassLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/ProjectorClassLoader.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/Reflect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/Reflect.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/UseProjectorLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/UseProjectorLoader.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/state/IdeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/state/IdeState.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/state/IdeStateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/main/kotlin/org/jetbrains/projector/util/loading/state/IdeStateUtils.kt -------------------------------------------------------------------------------- /projector-client/projector-util-loading/src/test/kotlin/org/jetbrains/projector/util/loading/ReflectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-loading/src/test/kotlin/org/jetbrains/projector/util/loading/ReflectionTest.kt -------------------------------------------------------------------------------- /projector-client/projector-util-logging/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/build.gradle.kts -------------------------------------------------------------------------------- /projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt -------------------------------------------------------------------------------- /projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/LoggerFunction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/LoggerFunction.kt -------------------------------------------------------------------------------- /projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/ReifiedLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/src/commonMain/kotlin/org/jetbrains/projector/util/logging/ReifiedLogger.kt -------------------------------------------------------------------------------- /projector-client/projector-util-logging/src/jsMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/src/jsMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt -------------------------------------------------------------------------------- /projector-client/projector-util-logging/src/jvmMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/projector-util-logging/src/jvmMain/kotlin/org/jetbrains/projector/util/logging/Logger.kt -------------------------------------------------------------------------------- /projector-client/qodana.sarif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/qodana.sarif.json -------------------------------------------------------------------------------- /projector-client/qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/qodana.yaml -------------------------------------------------------------------------------- /projector-client/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-client/settings.gradle.kts -------------------------------------------------------------------------------- /projector-server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.editorconfig -------------------------------------------------------------------------------- /projector-server/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/build.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/license-year-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/license-year-check.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/master-code-scanning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/master-code-scanning.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/pr-code-canning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/pr-code-canning.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/projector-demo-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/projector-demo-check.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/publish-on-space.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/publish-on-space.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/release-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/release-agent.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/release.yml -------------------------------------------------------------------------------- /projector-server/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.github/workflows/test.yml -------------------------------------------------------------------------------- /projector-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.gitignore -------------------------------------------------------------------------------- /projector-server/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /projector-server/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /projector-server/.idea/copyright/GPLv2_CPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/copyright/GPLv2_CPE.xml -------------------------------------------------------------------------------- /projector-server/.idea/copyright/MIT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/copyright/MIT.xml -------------------------------------------------------------------------------- /projector-server/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /projector-server/.idea/runConfigurations/Build_everything___build_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/runConfigurations/Build_everything___build_.xml -------------------------------------------------------------------------------- /projector-server/.idea/runConfigurations/Build_projector_server___distZip_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/runConfigurations/Build_projector_server___distZip_.xml -------------------------------------------------------------------------------- /projector-server/.idea/runConfigurations/Run_IDEA___runIdeaServer_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/runConfigurations/Run_IDEA___runIdeaServer_.xml -------------------------------------------------------------------------------- /projector-server/.idea/runConfigurations/Run_Server___runServer_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/runConfigurations/Run_Server___runServer_.xml -------------------------------------------------------------------------------- /projector-server/.idea/runConfigurations/Test_everything___check_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/runConfigurations/Test_everything___check_.xml -------------------------------------------------------------------------------- /projector-server/.idea/scopes/projector_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/.idea/scopes/projector_client.xml -------------------------------------------------------------------------------- /projector-server/.jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: openjdk11 2 | -------------------------------------------------------------------------------- /projector-server/GPLv2+CPE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/GPLv2+CPE.txt -------------------------------------------------------------------------------- /projector-server/LICENSE.txt: -------------------------------------------------------------------------------- 1 | See the license in GPLv2+CPE.txt file. 2 | -------------------------------------------------------------------------------- /projector-server/README-JETBRAINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/README-JETBRAINS.md -------------------------------------------------------------------------------- /projector-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/README.md -------------------------------------------------------------------------------- /projector-server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/buildSrc/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/gradle.properties -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/Inline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/Inline.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/JvmArgs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/JvmArgs.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/ProductInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/ProductInfo.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/ServerConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/ServerConfiguration.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/Testing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/Testing.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/publishToSpace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/publishToSpace.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/runIdeaTaskBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/runIdeaTaskBase.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/runServerTaskBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/runServerTaskBase.kt -------------------------------------------------------------------------------- /projector-server/buildSrc/src/main/kotlin/runTaskBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/buildSrc/src/main/kotlin/runTaskBase.kt -------------------------------------------------------------------------------- /projector-server/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /projector-server/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /projector-server/docs/Projector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/docs/Projector.md -------------------------------------------------------------------------------- /projector-server/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/gradle.properties -------------------------------------------------------------------------------- /projector-server/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /projector-server/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /projector-server/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/gradlew -------------------------------------------------------------------------------- /projector-server/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/gradlew.bat -------------------------------------------------------------------------------- /projector-server/intellij.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/intellij.yaml -------------------------------------------------------------------------------- /projector-server/local.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/local.properties.example -------------------------------------------------------------------------------- /projector-server/projector-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/README.md -------------------------------------------------------------------------------- /projector-server/projector-agent/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/AgentInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/AgentInitializer.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/AgentLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/AgentLauncher.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/CommandsHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/CommandsHandler.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsInterceptor.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsState.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/GraphicsTransformer.kt -------------------------------------------------------------------------------- /projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/MainAgent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-agent/src/main/kotlin/org/jetbrains/projector/agent/MainAgent.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PClipboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PClipboard.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PInputMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PInputMethod.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactory.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PToolkitBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PToolkitBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PWindow.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PWindowUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/PWindowUtils.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/AwtImageInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/AwtImageInfo.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/AwtPaintType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/AwtPaintType.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/Direction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/data/Direction.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/font/PFontConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/font/PFontConfiguration.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/font/PFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/font/PFontManager.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/AffineTransformUril.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/AffineTransformUril.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphics2D.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphics2D.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsConfiguration.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsDevice.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsEnvironment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PGraphicsEnvironment.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PVolatileImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/PVolatileImage.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/ShapeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/image/ShapeUtil.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PCheckboxMenuItemPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PCheckboxMenuItemPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PDesktopPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PDesktopPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PFontPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PFontPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PKeyboardFocusManagerPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PKeyboardFocusManagerPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuBarPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuBarPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuComponentPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuComponentPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuItemPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuItemPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMouseInfoPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PMouseInfoPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PTextComponentPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/PTextComponentPeer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PButtonPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PButtonPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PCanvasPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PCanvasPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PCheckboxPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PCheckboxPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PChoicePeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PChoicePeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PComponentPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PComponentPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PContainerPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PContainerPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PDialogPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PDialogPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PFileDialogPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PFileDialogPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PFramePeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PFramePeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PLabelPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PLabelPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PListPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PListPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PMenuPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PMenuPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PPanelPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PPanelPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PPopupMenuPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PPopupMenuPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PScrollPanePeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PScrollPanePeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PScrollbarPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PScrollbarPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PTextAreaPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PTextAreaPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PTextFieldPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PTextFieldPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PWindowPeerBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/peer/base/PWindowPeerBase.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/Defaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/Defaults.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/DrawEventQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/DrawEventQueue.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/FontProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/FontProvider.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/ImageCacher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/main/kotlin/org/jetbrains/projector/awt/service/ImageCacher.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-common/src/test/kotlin/org/jetbrains/projector/awt/IsWindowHeaderVisibleEnoughTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-common/src/test/kotlin/org/jetbrains/projector/awt/IsWindowHeaderVisibleEnoughTest.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-jdk17/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-jdk17/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-awt-jdk17/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactoryJdk17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-jdk17/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactoryJdk17.kt -------------------------------------------------------------------------------- /projector-server/projector-awt-jdk17/src/main/kotlin/org/jetbrains/projector/awt/PToolkit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt-jdk17/src/main/kotlin/org/jetbrains/projector/awt/PToolkit.kt -------------------------------------------------------------------------------- /projector-server/projector-awt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/CHANGELOG.md -------------------------------------------------------------------------------- /projector-server/projector-awt/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactoryJdk11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/PPeerFactoryJdk11.kt -------------------------------------------------------------------------------- /projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/PToolkit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/PToolkit.kt -------------------------------------------------------------------------------- /projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/peer/PComponentJdk11Peer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/peer/PComponentJdk11Peer.kt -------------------------------------------------------------------------------- /projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuJdk11Peer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-awt/src/main/kotlin/org/jetbrains/projector/awt/peer/PMenuJdk11Peer.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /projector-server/projector-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/README.md -------------------------------------------------------------------------------- /projector-server/projector-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/gradle.properties -------------------------------------------------------------------------------- /projector-server/projector-plugin/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/images/button.png -------------------------------------------------------------------------------- /projector-server/projector-plugin/images/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/images/hello.png -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/KeystoreUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/KeystoreUtils.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorInstallStateKeeper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorInstallStateKeeper.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorService.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorSettingsConfigurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ProjectorSettingsConfigurable.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/Session.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/Session.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/Utils.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/ActivateAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/ActivateAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/DisableAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/DisableAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/EnableAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/EnableAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/HeadlessProjectorAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/HeadlessProjectorAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/SessionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/SessionAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/WaitForStartAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/actions/WaitForStartAction.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ConnectionPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ConnectionPanel.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/HostsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/HostsList.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/LinearPanelBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/LinearPanelBuilder.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/Messages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/Messages.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/PortEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/PortEditor.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ProjectorSettingsComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ProjectorSettingsComponent.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ProjectorStatusWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/ProjectorStatusWidget.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/SessionDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/SessionDialog.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/TokenEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/kotlin/org/jetbrains/projector/plugin/ui/TokenEditor.kt -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/activationNeededSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/activationNeededSign.svg -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/disabledSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/disabledSign.svg -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/runningSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/runningSign.svg -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/startingSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/startingSign.svg -------------------------------------------------------------------------------- /projector-server/projector-plugin/src/main/resources/META-INF/stoppedSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-plugin/src/main/resources/META-INF/stoppedSign.svg -------------------------------------------------------------------------------- /projector-server/projector-server-common/.gitignore: -------------------------------------------------------------------------------- 1 | src/main/resources/fonts 2 | -------------------------------------------------------------------------------- /projector-server/projector-server-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-server-common/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/gradle.properties -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/HeadlessInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/HeadlessInitializer.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/PAwtProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/PAwtProvider.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncherBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncherBase.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorServer.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorStarter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/ProjectorStarter.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/idea/CaretInfoUpdater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/idea/CaretInfoUpdater.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/idea/UpdatesConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/idea/UpdatesConfig.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/platform/Compatibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/platform/Compatibility.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/platform/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/platform/Context.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/AsyncHostResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/AsyncHostResolver.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/ConfirmConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/ConfirmConnection.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/Convert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/Convert.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/FontCacher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/FontCacher.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/Network.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/Network.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/ServerMessages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/util/ServerMessages.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/websocket/WebsocketServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/main/kotlin/org/jetbrains/projector/server/websocket/WebsocketServer.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/cache/ImageCacherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/cache/ImageCacherTest.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/idea/RangeComparingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/idea/RangeComparingTest.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/DefaultsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/DefaultsTest.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/SizeAwareTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/SizeAwareTest.kt -------------------------------------------------------------------------------- /projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/TransformTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-common/src/test/kotlin/org/jetbrains/projector/server/util/TransformTest.kt -------------------------------------------------------------------------------- /projector-server/projector-server-jdk17/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-jdk17/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-server-jdk17/src/main/kotlin/org/jetbrains/projector/server/PAwtProviderJdk17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-jdk17/src/main/kotlin/org/jetbrains/projector/server/PAwtProviderJdk17.kt -------------------------------------------------------------------------------- /projector-server/projector-server-jdk17/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server-jdk17/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncher.kt -------------------------------------------------------------------------------- /projector-server/projector-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server/CHANGELOG.md -------------------------------------------------------------------------------- /projector-server/projector-server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server/build.gradle.kts -------------------------------------------------------------------------------- /projector-server/projector-server/src/main/kotlin/org/jetbrains/projector/server/PAwtProviderJdk11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server/src/main/kotlin/org/jetbrains/projector/server/PAwtProviderJdk11.kt -------------------------------------------------------------------------------- /projector-server/projector-server/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/projector-server/src/main/kotlin/org/jetbrains/projector/server/ProjectorLauncher.kt -------------------------------------------------------------------------------- /projector-server/qodana.sarif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/qodana.sarif.json -------------------------------------------------------------------------------- /projector-server/qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/qodana.yaml -------------------------------------------------------------------------------- /projector-server/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector-server/settings.gradle.kts -------------------------------------------------------------------------------- /projector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/projector.sh -------------------------------------------------------------------------------- /static/default-configuration-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/static/default-configuration-provider.sh -------------------------------------------------------------------------------- /static/entrypoint-init-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/static/entrypoint-init-container.sh -------------------------------------------------------------------------------- /static/entrypoint-volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/static/entrypoint-volume.sh -------------------------------------------------------------------------------- /static/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/static/entrypoint.sh -------------------------------------------------------------------------------- /static/ide-projector-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/che-incubator/jetbrains-editor-images/HEAD/static/ide-projector-launcher.sh --------------------------------------------------------------------------------