├── .babelrc ├── .dockerignore ├── .editorconfig ├── .env.tpl ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .i18nGenerator.js ├── .jestfilemock.js ├── .plugins.json ├── .travis.yml ├── .yarnrc ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── CodingSDK.js ├── IDE │ ├── IdeEnvironment.js │ └── index.js ├── backendAPI │ ├── fileAPI.js │ ├── gitAPI.js │ ├── index.js │ ├── packageAPI.js │ ├── websocketClients.js │ └── workspaceAPI.js ├── commands │ ├── CommandPalette │ │ ├── component.jsx │ │ ├── getPaletteItems.js │ │ ├── index.js │ │ └── items.js │ ├── commandBindings │ │ ├── editor.js │ │ ├── file.js │ │ ├── git.js │ │ ├── index.js │ │ ├── misc.js │ │ └── tab.js │ ├── dispatchCommand.js │ ├── index.js │ ├── keymaps.js │ └── lib │ │ ├── helpers.js │ │ ├── keycodes.js │ │ ├── keymapper.js │ │ └── keymapper2.js ├── commons │ ├── File │ │ ├── actions.js │ │ ├── index.js │ │ ├── state.js │ │ ├── store.js │ │ └── subscribeToFileChange.js │ ├── Menu │ │ └── state.js │ ├── Pane │ │ └── state.js │ ├── Tab │ │ ├── TabBar.jsx │ │ ├── TabContent.jsx │ │ ├── TabLabel.jsx │ │ ├── index.js │ │ └── state.js │ ├── Tree │ │ ├── TreeNode.jsx │ │ ├── index.js │ │ ├── state.js │ │ └── store.js │ ├── WorkSpace │ │ └── state.js │ └── exports.js ├── components │ ├── Accordion │ │ ├── Accordion.jsx │ │ └── index.js │ ├── ContextMenu │ │ ├── ContextMenu.jsx │ │ ├── ContextMenuContainer.jsx │ │ ├── index.js │ │ ├── state.js │ │ └── store.js │ ├── DragAndDrop.jsx │ ├── Editor │ │ ├── EditorWrapper.jsx │ │ ├── actions.js │ │ ├── codemirrorDefaultOptions.js │ │ ├── components │ │ │ ├── CodeEditor │ │ │ │ ├── BaseCodeEditor.jsx │ │ │ │ ├── CodeEditor.jsx │ │ │ │ ├── TablessCodeEditor.jsx │ │ │ │ ├── addMixinMechanism.jsx │ │ │ │ ├── addons │ │ │ │ │ ├── index.js │ │ │ │ │ └── mode │ │ │ │ │ │ ├── findMode.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── loadMode.js │ │ │ │ │ │ └── modeInfos.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── formatting.js │ │ │ │ └── mixins │ │ │ │ │ ├── basicMixin.jsx │ │ │ │ │ ├── eslintMixin │ │ │ │ │ ├── codemirror-eslint.js │ │ │ │ │ ├── eslintMixin.js │ │ │ │ │ ├── eslintService.js │ │ │ │ │ ├── eslintServiceCommandTemplate.js │ │ │ │ │ └── index.js │ │ │ │ │ └── gitBlameMixin.jsx │ │ │ ├── CodeMirrorEditor │ │ │ │ └── index.jsx │ │ │ ├── EditorWidgets │ │ │ │ ├── EditorWidgets.jsx │ │ │ │ ├── EncodingWidget.jsx │ │ │ │ ├── LineWidget.jsx │ │ │ │ ├── LinterWidget.jsx │ │ │ │ ├── ModeWidget.jsx │ │ │ │ ├── encodings.js │ │ │ │ └── index.js │ │ │ ├── HtmlEditor │ │ │ │ ├── actions.js │ │ │ │ ├── htmlMixin.js │ │ │ │ ├── index.jsx │ │ │ │ └── state.js │ │ │ ├── ImageEditor.jsx │ │ │ ├── MarkdownEditor │ │ │ │ ├── actions.js │ │ │ │ ├── index.jsx │ │ │ │ ├── mdMixin.js │ │ │ │ ├── reducer.js │ │ │ │ ├── state.js │ │ │ │ └── utils.js │ │ │ ├── UnknownEditor.jsx │ │ │ └── WelcomeEditor.jsx │ │ ├── index.js │ │ ├── state.js │ │ └── store.js │ ├── FileTree │ │ ├── FileTree.jsx │ │ ├── actions.js │ │ ├── contextMenuItems.js │ │ ├── fileTreeToFileBinding.js │ │ ├── index.js │ │ ├── state.js │ │ └── store.js │ ├── Git │ │ ├── GitBranchWidget.jsx │ │ ├── GitCommitView.jsx │ │ ├── GitCommitViewFlat.jsx │ │ ├── GitFileTree.jsx │ │ ├── GitGraph │ │ │ ├── GitGraph.jsx │ │ │ ├── GitGraphTable.jsx │ │ │ ├── actions.js │ │ │ ├── helpers │ │ │ │ ├── CommitsState.js │ │ │ │ ├── RandColors.js │ │ │ │ ├── chroma.js │ │ │ │ ├── index.js │ │ │ │ └── roundVertices.js │ │ │ ├── index.js │ │ │ └── state.js │ │ ├── GitHistoryView.jsx │ │ ├── actions.js │ │ ├── index.js │ │ ├── modals │ │ │ ├── checkout.jsx │ │ │ ├── checkoutStash.jsx │ │ │ ├── commitDiff.jsx │ │ │ ├── diffFile.jsx │ │ │ ├── merge.jsx │ │ │ ├── mergeFile.jsx │ │ │ ├── newBranch.jsx │ │ │ ├── rebaseInput.jsx │ │ │ ├── rebasePrepare.jsx │ │ │ ├── rebaseStart.jsx │ │ │ ├── reset.jsx │ │ │ ├── resolveConflicts.jsx │ │ │ ├── stash.jsx │ │ │ ├── tag.jsx │ │ │ └── unstash.jsx │ │ └── reducer.js │ ├── Mask │ │ ├── Mask.jsx │ │ ├── actions.js │ │ ├── index.js │ │ └── state.js │ ├── Menu │ │ ├── Menu.jsx │ │ ├── MenuContextTypes.js │ │ ├── MenuItem.jsx │ │ ├── MenuSheet.jsx │ │ └── index.js │ ├── MenuBar │ │ ├── MenuBar.jsx │ │ ├── actions.js │ │ ├── index.js │ │ ├── menuBarItems.jsx │ │ ├── state.js │ │ └── store.js │ ├── Modal │ │ ├── FilePalette │ │ │ ├── component.jsx │ │ │ └── index.js │ │ ├── FileSelector │ │ │ └── index.js │ │ ├── Modal.jsx │ │ ├── actions.js │ │ ├── index.js │ │ ├── modals │ │ │ ├── Alert.jsx │ │ │ ├── Confirm.jsx │ │ │ ├── Form.jsx │ │ │ ├── Prompt.jsx │ │ │ ├── index.js │ │ │ └── modalCache.js │ │ └── state.js │ ├── Notification │ │ ├── actions.js │ │ ├── index.jsx │ │ └── state.js │ ├── Offline │ │ └── Offline.jsx │ ├── Pane │ │ ├── Pane.jsx │ │ ├── PaneAxis.jsx │ │ ├── PanesContainer.jsx │ │ ├── actions.js │ │ ├── index.js │ │ └── state.js │ ├── Panel │ │ ├── Panel.jsx │ │ ├── PanelAxis.jsx │ │ ├── PanelContent.jsx │ │ ├── PanelsContainer.jsx │ │ ├── SideBar │ │ │ ├── SideBar.jsx │ │ │ ├── SidePanel.jsx │ │ │ └── actions.js │ │ ├── actions.js │ │ ├── index.js │ │ └── state.js │ ├── Plugins │ │ ├── actions.js │ │ ├── component.jsx │ │ ├── constants.js │ │ ├── extensionList.jsx │ │ ├── index.js │ │ └── store.js │ ├── Prompt │ │ └── Prompt.jsx │ ├── ResizeBar.jsx │ ├── ResizeBar2.jsx │ ├── Setting │ │ ├── EditorSetting.jsx │ │ ├── FormInputGroup.jsx │ │ ├── KeymapSetting.jsx │ │ ├── SettingForm.jsx │ │ ├── index.jsx │ │ └── state.js │ ├── StatusBar │ │ ├── StatusBar.jsx │ │ ├── UploadWidgets.jsx │ │ ├── actions.js │ │ ├── index.js │ │ └── state.js │ ├── Tab │ │ ├── TabContainer.jsx │ │ ├── WelcomePage.jsx │ │ ├── actions.js │ │ ├── fileList.jsx │ │ ├── index.js │ │ ├── state.js │ │ └── store.js │ ├── Terminal │ │ ├── Terminal.jsx │ │ ├── TerminalContainer.jsx │ │ ├── Xterm.jsx │ │ ├── actions.js │ │ ├── index.js │ │ ├── reducer.js │ │ ├── state.js │ │ └── terminal-client.js │ ├── Tooltip │ │ ├── TooltipTrigger.jsx │ │ ├── Tooltips.jsx │ │ ├── index.js │ │ └── state.js │ ├── TopBar │ │ ├── Breadcrumbs.jsx │ │ ├── TopBar.jsx │ │ └── index.js │ └── exports.js ├── config.js ├── containers │ ├── GlobalPrompt.jsx │ ├── IDE.jsx │ ├── Initialize │ │ ├── index.jsx │ │ └── state.js │ ├── Login.jsx │ ├── Root │ │ ├── actions.js │ │ ├── index.jsx │ │ ├── login.jsx │ │ └── reducer.js │ └── Utilities.jsx ├── exports.js ├── i18n │ ├── en_US │ │ ├── file.json │ │ ├── fileTree.json │ │ ├── git.json │ │ ├── global.json │ │ ├── index.js │ │ ├── login.json │ │ ├── menuBarItems.json │ │ ├── modal.json │ │ ├── panel.json │ │ ├── settings.json │ │ └── tab.json │ ├── index.json │ └── zh_CN │ │ ├── file.json │ │ ├── fileTree.json │ │ ├── git.json │ │ ├── global.json │ │ ├── index.js │ │ ├── login.json │ │ ├── menuBarItems.json │ │ ├── modal.json │ │ ├── panel.json │ │ ├── settings.json │ │ └── tab.json ├── index.html ├── index.jsx ├── initialize │ ├── index.js │ └── state.js ├── js.config.json ├── jsconfig.json ├── localStoreCache.js ├── login.html ├── login.jsx ├── mobxStore.js ├── persist.js ├── plugin │ ├── index.js │ └── placeholder.js ├── settings.js ├── states │ ├── index.js │ └── initialData.js ├── store.js ├── store.spec.js ├── styles │ ├── base-theme │ │ ├── index.styl │ │ └── styles │ │ │ ├── accordion.styl │ │ │ ├── bars.styl │ │ │ ├── editor.styl │ │ │ ├── filelist.styl │ │ │ ├── filetree.styl │ │ │ ├── git.styl │ │ │ ├── mask.styl │ │ │ ├── menu.styl │ │ │ ├── panes.styl │ │ │ ├── tabs.styl │ │ │ ├── term.styl │ │ │ └── ui-variables.styl │ ├── core-ui │ │ ├── Accordion.styl │ │ ├── Bar.styl │ │ ├── Breadcrumbs.styl │ │ ├── CommandPalette.styl │ │ ├── DragAndDrop.styl │ │ ├── Editor.styl │ │ ├── FileList.styl │ │ ├── FileTree.styl │ │ ├── Git.styl │ │ ├── GitMerge.styl │ │ ├── History.styl │ │ ├── Initialize.styl │ │ ├── Markdown.styl │ │ ├── Mask.styl │ │ ├── Menu.styl │ │ ├── MenuBar.styl │ │ ├── Modal.styl │ │ ├── Offline.styl │ │ ├── PanelAndPane.styl │ │ ├── Settings.styl │ │ ├── StatusBar.styl │ │ ├── Tab.styl │ │ ├── Term.styl │ │ ├── Tooltip.styl │ │ ├── Welcome.styl │ │ ├── Workspace.styl │ │ └── index.styl │ ├── dark │ │ ├── index.styl │ │ └── styles │ │ │ ├── access.styl │ │ │ ├── accordion.styl │ │ │ ├── bars.styl │ │ │ ├── base.styl │ │ │ ├── collaborators.styl │ │ │ ├── diff.styl │ │ │ ├── editor.styl │ │ │ ├── env.styl │ │ │ ├── filelist.styl │ │ │ ├── filetree.styl │ │ │ ├── form.styl │ │ │ ├── git-merge.styl │ │ │ ├── git.styl │ │ │ ├── history.styl │ │ │ ├── java.styl │ │ │ ├── markdown.styl │ │ │ ├── mask.styl │ │ │ ├── menu.styl │ │ │ ├── modal.styl │ │ │ ├── panes.styl │ │ │ ├── tabs.styl │ │ │ ├── term.styl │ │ │ ├── ui-variables.styl │ │ │ ├── weapp.styl │ │ │ └── welcome.styl │ ├── lib.styl │ ├── main.styl │ ├── mixins │ │ ├── color.styl │ │ ├── index.styl │ │ ├── misc.styl │ │ ├── padding-margin.styl │ │ ├── position.styl │ │ ├── scrollbar.styl │ │ └── z-index.styl │ ├── normalize.styl │ ├── scaffolding.styl │ ├── ui-variables.styl │ └── workstation.styl ├── utils │ ├── RandColors.js │ ├── actions │ │ ├── createAction.js │ │ ├── dispatch.js │ │ ├── emitterMiddleware.js │ │ ├── handleAction.js │ │ ├── handleActions.js │ │ ├── index.js │ │ └── registerAction.js │ ├── assignProps.js │ ├── codingPackageJsonp.js │ ├── colors │ │ ├── chroma.js │ │ ├── hueFromString.js │ │ └── index.js │ ├── composeReducers.js │ ├── createI18n.js │ ├── decorators │ │ ├── defaultProps.js │ │ ├── index.js │ │ ├── mapEntity.js │ │ └── protectedObservable.js │ ├── dnd.js │ ├── dynamicStyle.js │ ├── editorConfig.js │ ├── emitter │ │ └── index.js │ ├── exports.js │ ├── extendObservableStrict.js │ ├── getBackoff.js │ ├── getCookie.js │ ├── getTabType.js │ ├── handleActions.js │ ├── hasVimium.js │ ├── immutableUpdate.js │ ├── index.js │ ├── is.js │ ├── loadStyle.js │ ├── multiline.js │ ├── path.js │ ├── plugins.js │ ├── promise.prototype.finalCatch.js │ ├── qs.js │ ├── request.js │ ├── setSelectionRange.js │ ├── stepFactory.js │ ├── toJS.js │ └── withTheme.js ├── workspaces_standalone │ ├── WorkspaceList.jsx │ ├── actions.js │ ├── backendAPI.js │ ├── bootstrapping.js │ ├── index.html │ ├── index.jsx │ ├── reducer.js │ └── store.js ├── workstation.jsx └── workstation │ ├── api.js │ ├── index.js │ ├── initialize.js │ ├── state.js │ ├── styles │ └── workstation.styl │ ├── workstation.jsx │ └── workstationFull.jsx ├── cdn.js ├── dist ├── terminal.js └── workstation.js ├── nginx.conf ├── package.json ├── packageListServer.js ├── static ├── favicon.ico ├── loading-logo.svg └── logo.svg ├── task.yaml.tpl ├── webpack.config.js ├── webpack_configs ├── common.config.js ├── devServer.config.js ├── loaders │ └── regexp-replace-loader.js ├── stylesheet.config.js ├── stylesheet.lib.config.js ├── uglify.config.js ├── webpack.dev.config.js ├── webpack.lib.config.js ├── webpack.lib.dev.config.js ├── webpack.prod.config.js ├── webpack.staging.config.js ├── workstation.config.js └── workstation.dev.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !build/ 3 | !nginx.conf 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.env.tpl -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | static/* 3 | *.spec.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.i18nGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.i18nGenerator.js -------------------------------------------------------------------------------- /.jestfilemock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /.plugins.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/.yarnrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /app/CodingSDK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/CodingSDK.js -------------------------------------------------------------------------------- /app/IDE/IdeEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/IDE/IdeEnvironment.js -------------------------------------------------------------------------------- /app/IDE/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/IDE/index.js -------------------------------------------------------------------------------- /app/backendAPI/fileAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/fileAPI.js -------------------------------------------------------------------------------- /app/backendAPI/gitAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/gitAPI.js -------------------------------------------------------------------------------- /app/backendAPI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/index.js -------------------------------------------------------------------------------- /app/backendAPI/packageAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/packageAPI.js -------------------------------------------------------------------------------- /app/backendAPI/websocketClients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/websocketClients.js -------------------------------------------------------------------------------- /app/backendAPI/workspaceAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/backendAPI/workspaceAPI.js -------------------------------------------------------------------------------- /app/commands/CommandPalette/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/CommandPalette/component.jsx -------------------------------------------------------------------------------- /app/commands/CommandPalette/getPaletteItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/CommandPalette/getPaletteItems.js -------------------------------------------------------------------------------- /app/commands/CommandPalette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/CommandPalette/index.js -------------------------------------------------------------------------------- /app/commands/CommandPalette/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/CommandPalette/items.js -------------------------------------------------------------------------------- /app/commands/commandBindings/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/editor.js -------------------------------------------------------------------------------- /app/commands/commandBindings/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/file.js -------------------------------------------------------------------------------- /app/commands/commandBindings/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/git.js -------------------------------------------------------------------------------- /app/commands/commandBindings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/index.js -------------------------------------------------------------------------------- /app/commands/commandBindings/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/misc.js -------------------------------------------------------------------------------- /app/commands/commandBindings/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/commandBindings/tab.js -------------------------------------------------------------------------------- /app/commands/dispatchCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/dispatchCommand.js -------------------------------------------------------------------------------- /app/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/index.js -------------------------------------------------------------------------------- /app/commands/keymaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/keymaps.js -------------------------------------------------------------------------------- /app/commands/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/lib/helpers.js -------------------------------------------------------------------------------- /app/commands/lib/keycodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/lib/keycodes.js -------------------------------------------------------------------------------- /app/commands/lib/keymapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/lib/keymapper.js -------------------------------------------------------------------------------- /app/commands/lib/keymapper2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commands/lib/keymapper2.js -------------------------------------------------------------------------------- /app/commons/File/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/File/actions.js -------------------------------------------------------------------------------- /app/commons/File/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/File/index.js -------------------------------------------------------------------------------- /app/commons/File/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/File/state.js -------------------------------------------------------------------------------- /app/commons/File/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/File/store.js -------------------------------------------------------------------------------- /app/commons/File/subscribeToFileChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/File/subscribeToFileChange.js -------------------------------------------------------------------------------- /app/commons/Menu/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Menu/state.js -------------------------------------------------------------------------------- /app/commons/Pane/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Pane/state.js -------------------------------------------------------------------------------- /app/commons/Tab/TabBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tab/TabBar.jsx -------------------------------------------------------------------------------- /app/commons/Tab/TabContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tab/TabContent.jsx -------------------------------------------------------------------------------- /app/commons/Tab/TabLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tab/TabLabel.jsx -------------------------------------------------------------------------------- /app/commons/Tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tab/index.js -------------------------------------------------------------------------------- /app/commons/Tab/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tab/state.js -------------------------------------------------------------------------------- /app/commons/Tree/TreeNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tree/TreeNode.jsx -------------------------------------------------------------------------------- /app/commons/Tree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tree/index.js -------------------------------------------------------------------------------- /app/commons/Tree/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tree/state.js -------------------------------------------------------------------------------- /app/commons/Tree/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/Tree/store.js -------------------------------------------------------------------------------- /app/commons/WorkSpace/state.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commons/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/commons/exports.js -------------------------------------------------------------------------------- /app/components/Accordion/Accordion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Accordion/Accordion.jsx -------------------------------------------------------------------------------- /app/components/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Accordion/index.js -------------------------------------------------------------------------------- /app/components/ContextMenu/ContextMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ContextMenu/ContextMenu.jsx -------------------------------------------------------------------------------- /app/components/ContextMenu/ContextMenuContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ContextMenu/ContextMenuContainer.jsx -------------------------------------------------------------------------------- /app/components/ContextMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ContextMenu/index.js -------------------------------------------------------------------------------- /app/components/ContextMenu/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ContextMenu/state.js -------------------------------------------------------------------------------- /app/components/ContextMenu/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ContextMenu/store.js -------------------------------------------------------------------------------- /app/components/DragAndDrop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/DragAndDrop.jsx -------------------------------------------------------------------------------- /app/components/Editor/EditorWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/EditorWrapper.jsx -------------------------------------------------------------------------------- /app/components/Editor/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/actions.js -------------------------------------------------------------------------------- /app/components/Editor/codemirrorDefaultOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/codemirrorDefaultOptions.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/BaseCodeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/BaseCodeEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/CodeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/CodeEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/TablessCodeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/TablessCodeEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addMixinMechanism.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addMixinMechanism.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addons/index.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addons/mode/findMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addons/mode/findMode.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addons/mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addons/mode/index.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addons/mode/loadMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addons/mode/loadMode.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/addons/mode/modeInfos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/addons/mode/modeInfos.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/index.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/lib/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/lib/formatting.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/basicMixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/basicMixin.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/eslintMixin/codemirror-eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/eslintMixin/codemirror-eslint.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintMixin.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintService.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintServiceCommandTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/eslintMixin/eslintServiceCommandTemplate.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/eslintMixin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/eslintMixin/index.js -------------------------------------------------------------------------------- /app/components/Editor/components/CodeEditor/mixins/gitBlameMixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeEditor/mixins/gitBlameMixin.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/CodeMirrorEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/CodeMirrorEditor/index.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/EditorWidgets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/EditorWidgets.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/EncodingWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/EncodingWidget.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/LineWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/LineWidget.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/LinterWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/LinterWidget.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/ModeWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/ModeWidget.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/encodings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/encodings.js -------------------------------------------------------------------------------- /app/components/Editor/components/EditorWidgets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/EditorWidgets/index.js -------------------------------------------------------------------------------- /app/components/Editor/components/HtmlEditor/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/HtmlEditor/actions.js -------------------------------------------------------------------------------- /app/components/Editor/components/HtmlEditor/htmlMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/HtmlEditor/htmlMixin.js -------------------------------------------------------------------------------- /app/components/Editor/components/HtmlEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/HtmlEditor/index.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/HtmlEditor/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/HtmlEditor/state.js -------------------------------------------------------------------------------- /app/components/Editor/components/ImageEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/ImageEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/actions.js -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/index.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/mdMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/mdMixin.js -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/reducer.js -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/state.js -------------------------------------------------------------------------------- /app/components/Editor/components/MarkdownEditor/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/MarkdownEditor/utils.js -------------------------------------------------------------------------------- /app/components/Editor/components/UnknownEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/UnknownEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/components/WelcomeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/components/WelcomeEditor.jsx -------------------------------------------------------------------------------- /app/components/Editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/index.js -------------------------------------------------------------------------------- /app/components/Editor/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/state.js -------------------------------------------------------------------------------- /app/components/Editor/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Editor/store.js -------------------------------------------------------------------------------- /app/components/FileTree/FileTree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/FileTree.jsx -------------------------------------------------------------------------------- /app/components/FileTree/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/actions.js -------------------------------------------------------------------------------- /app/components/FileTree/contextMenuItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/contextMenuItems.js -------------------------------------------------------------------------------- /app/components/FileTree/fileTreeToFileBinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/fileTreeToFileBinding.js -------------------------------------------------------------------------------- /app/components/FileTree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/index.js -------------------------------------------------------------------------------- /app/components/FileTree/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/state.js -------------------------------------------------------------------------------- /app/components/FileTree/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/FileTree/store.js -------------------------------------------------------------------------------- /app/components/Git/GitBranchWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitBranchWidget.jsx -------------------------------------------------------------------------------- /app/components/Git/GitCommitView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitCommitView.jsx -------------------------------------------------------------------------------- /app/components/Git/GitCommitViewFlat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitCommitViewFlat.jsx -------------------------------------------------------------------------------- /app/components/Git/GitFileTree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitFileTree.jsx -------------------------------------------------------------------------------- /app/components/Git/GitGraph/GitGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/GitGraph.jsx -------------------------------------------------------------------------------- /app/components/Git/GitGraph/GitGraphTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/GitGraphTable.jsx -------------------------------------------------------------------------------- /app/components/Git/GitGraph/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/actions.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/helpers/CommitsState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/helpers/CommitsState.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/helpers/RandColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/helpers/RandColors.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/helpers/chroma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/helpers/chroma.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/helpers/index.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/helpers/roundVertices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/helpers/roundVertices.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/index.js -------------------------------------------------------------------------------- /app/components/Git/GitGraph/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitGraph/state.js -------------------------------------------------------------------------------- /app/components/Git/GitHistoryView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/GitHistoryView.jsx -------------------------------------------------------------------------------- /app/components/Git/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/actions.js -------------------------------------------------------------------------------- /app/components/Git/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/index.js -------------------------------------------------------------------------------- /app/components/Git/modals/checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/checkout.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/checkoutStash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/checkoutStash.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/commitDiff.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/commitDiff.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/diffFile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/diffFile.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/merge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/merge.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/mergeFile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/mergeFile.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/newBranch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/newBranch.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/rebaseInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/rebaseInput.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/rebasePrepare.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/rebasePrepare.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/rebaseStart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/rebaseStart.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/reset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/reset.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/resolveConflicts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/resolveConflicts.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/stash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/stash.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/tag.jsx -------------------------------------------------------------------------------- /app/components/Git/modals/unstash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/modals/unstash.jsx -------------------------------------------------------------------------------- /app/components/Git/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Git/reducer.js -------------------------------------------------------------------------------- /app/components/Mask/Mask.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Mask/Mask.jsx -------------------------------------------------------------------------------- /app/components/Mask/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Mask/actions.js -------------------------------------------------------------------------------- /app/components/Mask/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Mask/index.js -------------------------------------------------------------------------------- /app/components/Mask/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Mask/state.js -------------------------------------------------------------------------------- /app/components/Menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Menu/Menu.jsx -------------------------------------------------------------------------------- /app/components/Menu/MenuContextTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Menu/MenuContextTypes.js -------------------------------------------------------------------------------- /app/components/Menu/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Menu/MenuItem.jsx -------------------------------------------------------------------------------- /app/components/Menu/MenuSheet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Menu/MenuSheet.jsx -------------------------------------------------------------------------------- /app/components/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Menu/index.js -------------------------------------------------------------------------------- /app/components/MenuBar/MenuBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/MenuBar/MenuBar.jsx -------------------------------------------------------------------------------- /app/components/MenuBar/actions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/MenuBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/MenuBar/index.js -------------------------------------------------------------------------------- /app/components/MenuBar/menuBarItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/MenuBar/menuBarItems.jsx -------------------------------------------------------------------------------- /app/components/MenuBar/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/MenuBar/state.js -------------------------------------------------------------------------------- /app/components/MenuBar/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/MenuBar/store.js -------------------------------------------------------------------------------- /app/components/Modal/FilePalette/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/FilePalette/component.jsx -------------------------------------------------------------------------------- /app/components/Modal/FilePalette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/FilePalette/index.js -------------------------------------------------------------------------------- /app/components/Modal/FileSelector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/FileSelector/index.js -------------------------------------------------------------------------------- /app/components/Modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/Modal.jsx -------------------------------------------------------------------------------- /app/components/Modal/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/actions.js -------------------------------------------------------------------------------- /app/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/index.js -------------------------------------------------------------------------------- /app/components/Modal/modals/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/Alert.jsx -------------------------------------------------------------------------------- /app/components/Modal/modals/Confirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/Confirm.jsx -------------------------------------------------------------------------------- /app/components/Modal/modals/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/Form.jsx -------------------------------------------------------------------------------- /app/components/Modal/modals/Prompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/Prompt.jsx -------------------------------------------------------------------------------- /app/components/Modal/modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/index.js -------------------------------------------------------------------------------- /app/components/Modal/modals/modalCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/modals/modalCache.js -------------------------------------------------------------------------------- /app/components/Modal/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Modal/state.js -------------------------------------------------------------------------------- /app/components/Notification/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Notification/actions.js -------------------------------------------------------------------------------- /app/components/Notification/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Notification/index.jsx -------------------------------------------------------------------------------- /app/components/Notification/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Notification/state.js -------------------------------------------------------------------------------- /app/components/Offline/Offline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Offline/Offline.jsx -------------------------------------------------------------------------------- /app/components/Pane/Pane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/Pane.jsx -------------------------------------------------------------------------------- /app/components/Pane/PaneAxis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/PaneAxis.jsx -------------------------------------------------------------------------------- /app/components/Pane/PanesContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/PanesContainer.jsx -------------------------------------------------------------------------------- /app/components/Pane/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/actions.js -------------------------------------------------------------------------------- /app/components/Pane/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/index.js -------------------------------------------------------------------------------- /app/components/Pane/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Pane/state.js -------------------------------------------------------------------------------- /app/components/Panel/Panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/Panel.jsx -------------------------------------------------------------------------------- /app/components/Panel/PanelAxis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/PanelAxis.jsx -------------------------------------------------------------------------------- /app/components/Panel/PanelContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/PanelContent.jsx -------------------------------------------------------------------------------- /app/components/Panel/PanelsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/PanelsContainer.jsx -------------------------------------------------------------------------------- /app/components/Panel/SideBar/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/SideBar/SideBar.jsx -------------------------------------------------------------------------------- /app/components/Panel/SideBar/SidePanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/SideBar/SidePanel.jsx -------------------------------------------------------------------------------- /app/components/Panel/SideBar/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/SideBar/actions.js -------------------------------------------------------------------------------- /app/components/Panel/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/actions.js -------------------------------------------------------------------------------- /app/components/Panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/index.js -------------------------------------------------------------------------------- /app/components/Panel/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Panel/state.js -------------------------------------------------------------------------------- /app/components/Plugins/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/actions.js -------------------------------------------------------------------------------- /app/components/Plugins/component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/component.jsx -------------------------------------------------------------------------------- /app/components/Plugins/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/constants.js -------------------------------------------------------------------------------- /app/components/Plugins/extensionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/extensionList.jsx -------------------------------------------------------------------------------- /app/components/Plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/index.js -------------------------------------------------------------------------------- /app/components/Plugins/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Plugins/store.js -------------------------------------------------------------------------------- /app/components/Prompt/Prompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Prompt/Prompt.jsx -------------------------------------------------------------------------------- /app/components/ResizeBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ResizeBar.jsx -------------------------------------------------------------------------------- /app/components/ResizeBar2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/ResizeBar2.jsx -------------------------------------------------------------------------------- /app/components/Setting/EditorSetting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/EditorSetting.jsx -------------------------------------------------------------------------------- /app/components/Setting/FormInputGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/FormInputGroup.jsx -------------------------------------------------------------------------------- /app/components/Setting/KeymapSetting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/KeymapSetting.jsx -------------------------------------------------------------------------------- /app/components/Setting/SettingForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/SettingForm.jsx -------------------------------------------------------------------------------- /app/components/Setting/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/index.jsx -------------------------------------------------------------------------------- /app/components/Setting/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Setting/state.js -------------------------------------------------------------------------------- /app/components/StatusBar/StatusBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/StatusBar/StatusBar.jsx -------------------------------------------------------------------------------- /app/components/StatusBar/UploadWidgets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/StatusBar/UploadWidgets.jsx -------------------------------------------------------------------------------- /app/components/StatusBar/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/StatusBar/actions.js -------------------------------------------------------------------------------- /app/components/StatusBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/StatusBar/index.js -------------------------------------------------------------------------------- /app/components/StatusBar/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/StatusBar/state.js -------------------------------------------------------------------------------- /app/components/Tab/TabContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/TabContainer.jsx -------------------------------------------------------------------------------- /app/components/Tab/WelcomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/WelcomePage.jsx -------------------------------------------------------------------------------- /app/components/Tab/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/actions.js -------------------------------------------------------------------------------- /app/components/Tab/fileList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/fileList.jsx -------------------------------------------------------------------------------- /app/components/Tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/index.js -------------------------------------------------------------------------------- /app/components/Tab/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/state.js -------------------------------------------------------------------------------- /app/components/Tab/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tab/store.js -------------------------------------------------------------------------------- /app/components/Terminal/Terminal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/Terminal.jsx -------------------------------------------------------------------------------- /app/components/Terminal/TerminalContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/TerminalContainer.jsx -------------------------------------------------------------------------------- /app/components/Terminal/Xterm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/Xterm.jsx -------------------------------------------------------------------------------- /app/components/Terminal/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/actions.js -------------------------------------------------------------------------------- /app/components/Terminal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/index.js -------------------------------------------------------------------------------- /app/components/Terminal/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/reducer.js -------------------------------------------------------------------------------- /app/components/Terminal/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/state.js -------------------------------------------------------------------------------- /app/components/Terminal/terminal-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Terminal/terminal-client.js -------------------------------------------------------------------------------- /app/components/Tooltip/TooltipTrigger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tooltip/TooltipTrigger.jsx -------------------------------------------------------------------------------- /app/components/Tooltip/Tooltips.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tooltip/Tooltips.jsx -------------------------------------------------------------------------------- /app/components/Tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tooltip/index.js -------------------------------------------------------------------------------- /app/components/Tooltip/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/Tooltip/state.js -------------------------------------------------------------------------------- /app/components/TopBar/Breadcrumbs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/TopBar/Breadcrumbs.jsx -------------------------------------------------------------------------------- /app/components/TopBar/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/TopBar/TopBar.jsx -------------------------------------------------------------------------------- /app/components/TopBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/TopBar/index.js -------------------------------------------------------------------------------- /app/components/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/components/exports.js -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/config.js -------------------------------------------------------------------------------- /app/containers/GlobalPrompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/GlobalPrompt.jsx -------------------------------------------------------------------------------- /app/containers/IDE.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/IDE.jsx -------------------------------------------------------------------------------- /app/containers/Initialize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Initialize/index.jsx -------------------------------------------------------------------------------- /app/containers/Initialize/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Initialize/state.js -------------------------------------------------------------------------------- /app/containers/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Login.jsx -------------------------------------------------------------------------------- /app/containers/Root/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Root/actions.js -------------------------------------------------------------------------------- /app/containers/Root/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Root/index.jsx -------------------------------------------------------------------------------- /app/containers/Root/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Root/login.jsx -------------------------------------------------------------------------------- /app/containers/Root/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Root/reducer.js -------------------------------------------------------------------------------- /app/containers/Utilities.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/containers/Utilities.jsx -------------------------------------------------------------------------------- /app/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/exports.js -------------------------------------------------------------------------------- /app/i18n/en_US/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/file.json -------------------------------------------------------------------------------- /app/i18n/en_US/fileTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/fileTree.json -------------------------------------------------------------------------------- /app/i18n/en_US/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/git.json -------------------------------------------------------------------------------- /app/i18n/en_US/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/global.json -------------------------------------------------------------------------------- /app/i18n/en_US/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/index.js -------------------------------------------------------------------------------- /app/i18n/en_US/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/login.json -------------------------------------------------------------------------------- /app/i18n/en_US/menuBarItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/menuBarItems.json -------------------------------------------------------------------------------- /app/i18n/en_US/modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/modal.json -------------------------------------------------------------------------------- /app/i18n/en_US/panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/panel.json -------------------------------------------------------------------------------- /app/i18n/en_US/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/settings.json -------------------------------------------------------------------------------- /app/i18n/en_US/tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/en_US/tab.json -------------------------------------------------------------------------------- /app/i18n/index.json: -------------------------------------------------------------------------------- 1 | ["en_US", "zh_CN"] -------------------------------------------------------------------------------- /app/i18n/zh_CN/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/file.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/fileTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/fileTree.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/git.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/global.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/index.js -------------------------------------------------------------------------------- /app/i18n/zh_CN/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "loginCoding": "使用 Coding 账号登录" 3 | } -------------------------------------------------------------------------------- /app/i18n/zh_CN/menuBarItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/menuBarItems.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/modal.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/panel.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/settings.json -------------------------------------------------------------------------------- /app/i18n/zh_CN/tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/i18n/zh_CN/tab.json -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/index.jsx -------------------------------------------------------------------------------- /app/initialize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/initialize/index.js -------------------------------------------------------------------------------- /app/initialize/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/initialize/state.js -------------------------------------------------------------------------------- /app/js.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/js.config.json -------------------------------------------------------------------------------- /app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/jsconfig.json -------------------------------------------------------------------------------- /app/localStoreCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/localStoreCache.js -------------------------------------------------------------------------------- /app/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/login.html -------------------------------------------------------------------------------- /app/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/login.jsx -------------------------------------------------------------------------------- /app/mobxStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/mobxStore.js -------------------------------------------------------------------------------- /app/persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/persist.js -------------------------------------------------------------------------------- /app/plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/plugin/index.js -------------------------------------------------------------------------------- /app/plugin/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/plugin/placeholder.js -------------------------------------------------------------------------------- /app/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/settings.js -------------------------------------------------------------------------------- /app/states/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/states/index.js -------------------------------------------------------------------------------- /app/states/initialData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/states/initialData.js -------------------------------------------------------------------------------- /app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/store.js -------------------------------------------------------------------------------- /app/store.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/store.spec.js -------------------------------------------------------------------------------- /app/styles/base-theme/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/index.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/accordion.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/accordion.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/bars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/bars.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/editor.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/editor.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/filelist.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/filelist.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/filetree.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/filetree.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/git.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/git.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/mask.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/mask.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/menu.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/panes.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/panes.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/tabs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/tabs.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/term.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/term.styl -------------------------------------------------------------------------------- /app/styles/base-theme/styles/ui-variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/base-theme/styles/ui-variables.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Accordion.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Accordion.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Bar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Bar.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Breadcrumbs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Breadcrumbs.styl -------------------------------------------------------------------------------- /app/styles/core-ui/CommandPalette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/CommandPalette.styl -------------------------------------------------------------------------------- /app/styles/core-ui/DragAndDrop.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/DragAndDrop.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Editor.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Editor.styl -------------------------------------------------------------------------------- /app/styles/core-ui/FileList.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/FileList.styl -------------------------------------------------------------------------------- /app/styles/core-ui/FileTree.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/FileTree.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Git.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Git.styl -------------------------------------------------------------------------------- /app/styles/core-ui/GitMerge.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/GitMerge.styl -------------------------------------------------------------------------------- /app/styles/core-ui/History.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/History.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Initialize.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Initialize.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Markdown.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Markdown.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Mask.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Mask.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Menu.styl -------------------------------------------------------------------------------- /app/styles/core-ui/MenuBar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/MenuBar.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Modal.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Offline.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Offline.styl -------------------------------------------------------------------------------- /app/styles/core-ui/PanelAndPane.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/PanelAndPane.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Settings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Settings.styl -------------------------------------------------------------------------------- /app/styles/core-ui/StatusBar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/StatusBar.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Tab.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Tab.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Term.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Term.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Tooltip.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Tooltip.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Welcome.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Welcome.styl -------------------------------------------------------------------------------- /app/styles/core-ui/Workspace.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/Workspace.styl -------------------------------------------------------------------------------- /app/styles/core-ui/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/core-ui/index.styl -------------------------------------------------------------------------------- /app/styles/dark/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/index.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/access.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/access.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/accordion.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/accordion.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/bars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/bars.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/base.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/collaborators.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/collaborators.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/diff.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/diff.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/editor.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/editor.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/env.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/env.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/filelist.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/filelist.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/filetree.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/filetree.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/form.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/form.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/git-merge.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/git-merge.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/git.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/git.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/history.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/history.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/java.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/java.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/markdown.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/markdown.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/mask.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/mask.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/menu.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/modal.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/panes.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/panes.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/tabs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/tabs.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/term.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/term.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/ui-variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/ui-variables.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/weapp.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/weapp.styl -------------------------------------------------------------------------------- /app/styles/dark/styles/welcome.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/dark/styles/welcome.styl -------------------------------------------------------------------------------- /app/styles/lib.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/lib.styl -------------------------------------------------------------------------------- /app/styles/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/main.styl -------------------------------------------------------------------------------- /app/styles/mixins/color.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/color.styl -------------------------------------------------------------------------------- /app/styles/mixins/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/index.styl -------------------------------------------------------------------------------- /app/styles/mixins/misc.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/misc.styl -------------------------------------------------------------------------------- /app/styles/mixins/padding-margin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/padding-margin.styl -------------------------------------------------------------------------------- /app/styles/mixins/position.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/position.styl -------------------------------------------------------------------------------- /app/styles/mixins/scrollbar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/scrollbar.styl -------------------------------------------------------------------------------- /app/styles/mixins/z-index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/mixins/z-index.styl -------------------------------------------------------------------------------- /app/styles/normalize.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/normalize.styl -------------------------------------------------------------------------------- /app/styles/scaffolding.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/scaffolding.styl -------------------------------------------------------------------------------- /app/styles/ui-variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/ui-variables.styl -------------------------------------------------------------------------------- /app/styles/workstation.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/styles/workstation.styl -------------------------------------------------------------------------------- /app/utils/RandColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/RandColors.js -------------------------------------------------------------------------------- /app/utils/actions/createAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/createAction.js -------------------------------------------------------------------------------- /app/utils/actions/dispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/dispatch.js -------------------------------------------------------------------------------- /app/utils/actions/emitterMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/emitterMiddleware.js -------------------------------------------------------------------------------- /app/utils/actions/handleAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/handleAction.js -------------------------------------------------------------------------------- /app/utils/actions/handleActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/handleActions.js -------------------------------------------------------------------------------- /app/utils/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/index.js -------------------------------------------------------------------------------- /app/utils/actions/registerAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/actions/registerAction.js -------------------------------------------------------------------------------- /app/utils/assignProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/assignProps.js -------------------------------------------------------------------------------- /app/utils/codingPackageJsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/codingPackageJsonp.js -------------------------------------------------------------------------------- /app/utils/colors/chroma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/colors/chroma.js -------------------------------------------------------------------------------- /app/utils/colors/hueFromString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/colors/hueFromString.js -------------------------------------------------------------------------------- /app/utils/colors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/colors/index.js -------------------------------------------------------------------------------- /app/utils/composeReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/composeReducers.js -------------------------------------------------------------------------------- /app/utils/createI18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/createI18n.js -------------------------------------------------------------------------------- /app/utils/decorators/defaultProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/decorators/defaultProps.js -------------------------------------------------------------------------------- /app/utils/decorators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/decorators/index.js -------------------------------------------------------------------------------- /app/utils/decorators/mapEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/decorators/mapEntity.js -------------------------------------------------------------------------------- /app/utils/decorators/protectedObservable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/decorators/protectedObservable.js -------------------------------------------------------------------------------- /app/utils/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/dnd.js -------------------------------------------------------------------------------- /app/utils/dynamicStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/dynamicStyle.js -------------------------------------------------------------------------------- /app/utils/editorConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/editorConfig.js -------------------------------------------------------------------------------- /app/utils/emitter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/emitter/index.js -------------------------------------------------------------------------------- /app/utils/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/exports.js -------------------------------------------------------------------------------- /app/utils/extendObservableStrict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/extendObservableStrict.js -------------------------------------------------------------------------------- /app/utils/getBackoff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/getBackoff.js -------------------------------------------------------------------------------- /app/utils/getCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/getCookie.js -------------------------------------------------------------------------------- /app/utils/getTabType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/getTabType.js -------------------------------------------------------------------------------- /app/utils/handleActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/handleActions.js -------------------------------------------------------------------------------- /app/utils/hasVimium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/hasVimium.js -------------------------------------------------------------------------------- /app/utils/immutableUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/immutableUpdate.js -------------------------------------------------------------------------------- /app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/index.js -------------------------------------------------------------------------------- /app/utils/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/is.js -------------------------------------------------------------------------------- /app/utils/loadStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/loadStyle.js -------------------------------------------------------------------------------- /app/utils/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/multiline.js -------------------------------------------------------------------------------- /app/utils/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/path.js -------------------------------------------------------------------------------- /app/utils/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/plugins.js -------------------------------------------------------------------------------- /app/utils/promise.prototype.finalCatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/promise.prototype.finalCatch.js -------------------------------------------------------------------------------- /app/utils/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/qs.js -------------------------------------------------------------------------------- /app/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/request.js -------------------------------------------------------------------------------- /app/utils/setSelectionRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/setSelectionRange.js -------------------------------------------------------------------------------- /app/utils/stepFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/stepFactory.js -------------------------------------------------------------------------------- /app/utils/toJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/toJS.js -------------------------------------------------------------------------------- /app/utils/withTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/utils/withTheme.js -------------------------------------------------------------------------------- /app/workspaces_standalone/WorkspaceList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/WorkspaceList.jsx -------------------------------------------------------------------------------- /app/workspaces_standalone/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/actions.js -------------------------------------------------------------------------------- /app/workspaces_standalone/backendAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/backendAPI.js -------------------------------------------------------------------------------- /app/workspaces_standalone/bootstrapping.js: -------------------------------------------------------------------------------- 1 | export default () => { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app/workspaces_standalone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/index.html -------------------------------------------------------------------------------- /app/workspaces_standalone/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/index.jsx -------------------------------------------------------------------------------- /app/workspaces_standalone/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/reducer.js -------------------------------------------------------------------------------- /app/workspaces_standalone/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workspaces_standalone/store.js -------------------------------------------------------------------------------- /app/workstation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation.jsx -------------------------------------------------------------------------------- /app/workstation/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/api.js -------------------------------------------------------------------------------- /app/workstation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/index.js -------------------------------------------------------------------------------- /app/workstation/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/initialize.js -------------------------------------------------------------------------------- /app/workstation/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/state.js -------------------------------------------------------------------------------- /app/workstation/styles/workstation.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/styles/workstation.styl -------------------------------------------------------------------------------- /app/workstation/workstation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/workstation.jsx -------------------------------------------------------------------------------- /app/workstation/workstationFull.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/app/workstation/workstationFull.jsx -------------------------------------------------------------------------------- /cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/cdn.js -------------------------------------------------------------------------------- /dist/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/dist/terminal.js -------------------------------------------------------------------------------- /dist/workstation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/dist/workstation.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /packageListServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/packageListServer.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/loading-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/static/loading-logo.svg -------------------------------------------------------------------------------- /static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/static/logo.svg -------------------------------------------------------------------------------- /task.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/task.yaml.tpl -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack_configs/common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/common.config.js -------------------------------------------------------------------------------- /webpack_configs/devServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/devServer.config.js -------------------------------------------------------------------------------- /webpack_configs/loaders/regexp-replace-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/loaders/regexp-replace-loader.js -------------------------------------------------------------------------------- /webpack_configs/stylesheet.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/stylesheet.config.js -------------------------------------------------------------------------------- /webpack_configs/stylesheet.lib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/stylesheet.lib.config.js -------------------------------------------------------------------------------- /webpack_configs/uglify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/uglify.config.js -------------------------------------------------------------------------------- /webpack_configs/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/webpack.dev.config.js -------------------------------------------------------------------------------- /webpack_configs/webpack.lib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/webpack.lib.config.js -------------------------------------------------------------------------------- /webpack_configs/webpack.lib.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/webpack.lib.dev.config.js -------------------------------------------------------------------------------- /webpack_configs/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/webpack.prod.config.js -------------------------------------------------------------------------------- /webpack_configs/webpack.staging.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/webpack.staging.config.js -------------------------------------------------------------------------------- /webpack_configs/workstation.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/workstation.config.js -------------------------------------------------------------------------------- /webpack_configs/workstation.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/webpack_configs/workstation.dev.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/WebIDE-Frontend/HEAD/yarn.lock --------------------------------------------------------------------------------