├── LICENSE ├── README.md ├── blame.go ├── build.go ├── bundles ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.wst.jsdt.core.prefs │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── net.jazz.sirnewton.godev │ └── web │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── godev │ │ ├── debug │ │ │ ├── debug.css │ │ │ ├── debug.html │ │ │ └── debug.js │ │ ├── go-godev.html │ │ ├── go-godev.js │ │ ├── goTextStyler.js │ │ ├── godef │ │ │ ├── godef.css │ │ │ ├── godef.html │ │ │ └── godef.js │ │ ├── godoc │ │ │ ├── godoc.css │ │ │ ├── godoc.js │ │ │ ├── showgodoc.css │ │ │ ├── showgodoc.html │ │ │ ├── showgodoc.js │ │ │ └── style.css │ │ ├── images │ │ │ └── core_sprites.png │ │ └── quickrun │ │ │ ├── run.css │ │ │ ├── run.html │ │ │ └── run.js │ │ ├── images │ │ ├── godev-logo-large.jpg │ │ └── godev-logo.png │ │ ├── mixloginstatic │ │ ├── LoginWindow.html │ │ └── LoginWindow.js-deleteme │ │ ├── orion │ │ ├── banner │ │ │ └── footer.html │ │ ├── editor │ │ │ ├── contentAssist.js │ │ │ └── edit.js │ │ ├── editorCommands.js │ │ ├── editorView.js │ │ ├── folderView.js │ │ ├── highlight.js │ │ ├── navigate │ │ │ └── nls │ │ │ │ └── root │ │ │ │ └── messages.js │ │ └── preferences.js │ │ ├── plugins │ │ ├── fileClientPlugin.js │ │ └── filePlugin │ │ │ └── fileImpl.js │ │ └── terminal │ │ └── term.js ├── org.eclipse.orion.client.core │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── Web IDE Application.launch │ ├── about.html │ ├── about.ini │ ├── about.properties │ ├── about_files │ │ ├── DOJO-LICENSE │ │ └── jsdiff-license.txt │ ├── build.properties │ ├── bundle.properties │ ├── orion-32.png │ ├── pom.xml │ ├── web-ide.conf │ ├── web-ide.launch │ └── web │ │ ├── chai │ │ └── chai.js │ │ ├── js-tests │ │ └── core │ │ │ ├── URITemplate │ │ │ └── URITemplateTests.js │ │ │ ├── URL │ │ │ └── URLTests.js │ │ │ ├── base64 │ │ │ └── base64Tests.js │ │ │ ├── config │ │ │ ├── configTests.js │ │ │ ├── mockPrefs.js │ │ │ └── testManagedServicePlugin.html │ │ │ ├── coreTests.html │ │ │ ├── deferred │ │ │ └── deferredTests.js │ │ │ ├── metatype │ │ │ └── metatypeTests.js │ │ │ ├── pluginregistry │ │ │ ├── pluginregistryTests.js │ │ │ ├── testPlugin.html │ │ │ ├── testPlugin2.html │ │ │ ├── testPlugin3.html │ │ │ └── testsandbox.html │ │ │ ├── preferences │ │ │ └── preferencesTests.js │ │ │ ├── serviceTracker │ │ │ └── serviceTrackerTests.js │ │ │ ├── serviceregistry │ │ │ └── serviceregistryTests.js │ │ │ └── xhr │ │ │ └── xhrTests.js │ │ ├── mocha │ │ ├── mocha.css │ │ ├── mocha.js │ │ └── sauce.js │ │ ├── orion │ │ ├── Base64.js │ │ ├── Deferred.js │ │ ├── EventTarget.js │ │ ├── HTMLTemplates-shim.js │ │ ├── Storage.js │ │ ├── URITemplate.js │ │ ├── URL-shim.js │ │ ├── blameAnnotations.js │ │ ├── bootstrap.js │ │ ├── config.js │ │ ├── contentTypes.js │ │ ├── encoding-shim.js │ │ ├── fileClient.js │ │ ├── fileUtils.js │ │ ├── form.js │ │ ├── i18n.js │ │ ├── i18nUtil.js │ │ ├── keyBinding.js │ │ ├── log.js │ │ ├── metatype.js │ │ ├── objects.js │ │ ├── operation.js │ │ ├── operationsClient.js │ │ ├── plugin.js │ │ ├── pluginregistry.js │ │ ├── preferences.js │ │ ├── problems.js │ │ ├── projectClient.js │ │ ├── regex.js │ │ ├── serialize.js │ │ ├── serviceTracker.js │ │ ├── serviceregistry.js │ │ ├── testHelpers.js │ │ ├── url.js │ │ ├── util.js │ │ └── xhr.js │ │ ├── pako │ │ └── pako.js │ │ └── requirejs │ │ ├── almond.js │ │ ├── domReady.js │ │ ├── i18n.js │ │ ├── order.js │ │ ├── require.js │ │ ├── require.min.js │ │ └── text.js ├── org.eclipse.orion.client.editor │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── examples │ │ └── editor │ │ │ ├── demo.css │ │ │ ├── demo.html │ │ │ ├── demo.js │ │ │ ├── demoSetup.js │ │ │ ├── edit.html │ │ │ ├── embeddededitor.css │ │ │ ├── embeddededitor.html │ │ │ ├── embeddededitor.js │ │ │ ├── images │ │ │ ├── logo.png │ │ │ └── skinnyheaderlogo.png │ │ │ ├── minimaleditor.css │ │ │ ├── minimaleditor.html │ │ │ ├── minimaleditor.js │ │ │ ├── single.html │ │ │ ├── snippets │ │ │ ├── contentAssistSnippet.html │ │ │ ├── contentAssistSnippet.js │ │ │ ├── problemsSnippet.html │ │ │ ├── sizeAndFontSnippet.html │ │ │ ├── textareaSnippet.html │ │ │ └── yamlSnippet.html │ │ │ ├── splitEdit.html │ │ │ ├── text.txt │ │ │ └── textStyler.js │ │ ├── js-tests │ │ └── editor │ │ │ ├── codemirror │ │ │ └── codemirrorTests.js │ │ │ ├── contentAssist │ │ │ └── contentAssistFrameworkTests.js │ │ │ ├── editorTests.css │ │ │ ├── editorTests.html │ │ │ ├── mockEditor.js │ │ │ ├── mockTextView.js │ │ │ ├── models │ │ │ ├── annotationModelTests.js │ │ │ ├── projectionModelTests.js │ │ │ └── textModelTests.js │ │ │ ├── perf │ │ │ └── performanceTests.js │ │ │ ├── shim │ │ │ └── bindShimTests.js │ │ │ └── textMateStyler │ │ │ ├── test.css │ │ │ ├── testGrammars.js │ │ │ └── textMateStylerTests.js │ │ └── orion │ │ └── editor │ │ ├── AsyncStyler.js │ │ ├── actions.js │ │ ├── annotations.css │ │ ├── annotations.js │ │ ├── config.js │ │ ├── contentAssist.js │ │ ├── contentassist.css │ │ ├── edit.js │ │ ├── editor.css │ │ ├── editor.js │ │ ├── editorFeatures.js │ │ ├── emacs.js │ │ ├── eventTarget.js │ │ ├── factories.js │ │ ├── find.js │ │ ├── findUI.css │ │ ├── findUI.js │ │ ├── global.js │ │ ├── htmlGrammar.js │ │ ├── i18n.js │ │ ├── images │ │ ├── bookmark.gif │ │ ├── breakpoint.gif │ │ ├── collapsed.png │ │ ├── currentBracket.png │ │ ├── currentLine.gif │ │ ├── error.gif │ │ ├── expanded.png │ │ ├── flat-icons │ │ │ ├── bookmark.png │ │ │ ├── error.png │ │ │ ├── task.png │ │ │ └── warning.png │ │ ├── mark_occurrences.gif │ │ ├── matchingBracket.png │ │ ├── multiple.gif │ │ ├── plus.png │ │ ├── search.gif │ │ ├── squiggly_bookmark.png │ │ ├── squiggly_breakpoint.png │ │ ├── squiggly_error.png │ │ ├── squiggly_task.png │ │ ├── squiggly_warning.png │ │ ├── task.gif │ │ ├── warning.gif │ │ ├── white_space.png │ │ └── white_tab.png │ │ ├── keyModes.js │ │ ├── linkedMode.js │ │ ├── mirror.js │ │ ├── nls │ │ ├── messages.js │ │ └── root │ │ │ └── messages.js │ │ ├── projectionTextModel.js │ │ ├── rulers.css │ │ ├── rulers.js │ │ ├── shim.js │ │ ├── stylers │ │ ├── application_javascript │ │ │ └── syntax.js │ │ ├── application_json │ │ │ └── syntax.js │ │ ├── application_schema_json │ │ │ └── syntax.js │ │ ├── application_x-ejs │ │ │ └── syntax.js │ │ ├── application_xml │ │ │ └── syntax.js │ │ ├── application_xquery │ │ │ └── syntax.js │ │ ├── lib │ │ │ └── syntax.js │ │ ├── text_css │ │ │ └── syntax.js │ │ ├── text_html │ │ │ └── syntax.js │ │ ├── text_x-arduino │ │ │ └── syntax.js │ │ ├── text_x-c__src │ │ │ └── syntax.js │ │ ├── text_x-csrc │ │ │ └── syntax.js │ │ ├── text_x-dockerfile │ │ │ └── syntax.js │ │ ├── text_x-erlang │ │ │ └── syntax.js │ │ ├── text_x-go │ │ │ └── syntax.js │ │ ├── text_x-haml │ │ │ └── syntax.js │ │ ├── text_x-java-source │ │ │ └── syntax.js │ │ ├── text_x-lua │ │ │ └── syntax.js │ │ ├── text_x-objective-c │ │ │ └── syntax.js │ │ ├── text_x-php │ │ │ └── syntax.js │ │ ├── text_x-python │ │ │ └── syntax.js │ │ ├── text_x-ruby │ │ │ └── syntax.js │ │ ├── text_x-swift │ │ │ └── syntax.js │ │ └── text_x-yaml │ │ │ └── syntax.js │ │ ├── templates.js │ │ ├── textDND.js │ │ ├── textMateStyler.js │ │ ├── textModel.js │ │ ├── textStyler.js │ │ ├── textTheme.js │ │ ├── textView.js │ │ ├── textstyler.css │ │ ├── textview.css │ │ ├── themes │ │ ├── adelante.css │ │ ├── ambience.css │ │ ├── blue.css │ │ ├── default.css │ │ ├── eclipse.css │ │ ├── nimbus.css │ │ ├── prospecto.css │ │ ├── raspberrypi.css │ │ └── tierra.css │ │ ├── tooltip.css │ │ ├── tooltip.js │ │ ├── undoStack.js │ │ ├── util.js │ │ └── vi.js ├── org.eclipse.orion.client.git │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── git │ │ ├── css │ │ │ └── git.css │ │ ├── git-repository.css │ │ ├── git-repository.html │ │ ├── git-repository.js │ │ ├── images │ │ │ ├── addition.png │ │ │ ├── apply-patch.png │ │ │ ├── branch-active.png │ │ │ ├── branch.png │ │ │ ├── checkout.png │ │ │ ├── cherry-pick.png │ │ │ ├── compare.png │ │ │ ├── conflict-file.gif │ │ │ ├── fetch.png │ │ │ ├── file.gif │ │ │ ├── file.png │ │ │ ├── git.png │ │ │ ├── git_sprites.png │ │ │ ├── git_sprites.sh │ │ │ ├── incoming-commit.png │ │ │ ├── merge-squash.png │ │ │ ├── merge.png │ │ │ ├── notsure.gif │ │ │ ├── open.png │ │ │ ├── outgoing-commit.png │ │ │ ├── outgoing_commit.png │ │ │ ├── pull.png │ │ │ ├── rebase.png │ │ │ ├── remote.png │ │ │ ├── removal.png │ │ │ ├── repository.png │ │ │ ├── reset.png │ │ │ ├── stage.png │ │ │ ├── tag.png │ │ │ └── unstage.png │ │ ├── nls │ │ │ ├── gitmessages.js │ │ │ └── root │ │ │ │ └── gitmessages.js │ │ └── plugins │ │ │ ├── gitPlugin.html │ │ │ └── gitPlugin.js │ │ └── orion │ │ └── git │ │ ├── GitFileImpl.js │ │ ├── gitClient.js │ │ ├── gitCommands.js │ │ ├── gitConfigPreference.js │ │ ├── gitPreferenceStorage.js │ │ ├── gitRepositoryExplorer.js │ │ ├── logic │ │ ├── gitCommit.js │ │ ├── gitCommon.js │ │ ├── gitPush.js │ │ └── gitStash.js │ │ ├── uiUtil.js │ │ ├── util.js │ │ └── widgets │ │ ├── ApplyPatchDialog.js │ │ ├── CloneGitRepositoryDialog.js │ │ ├── GitCredentialsDialog.js │ │ ├── gitBranchList.js │ │ ├── gitChangeList.js │ │ ├── gitCommitInfo.js │ │ ├── gitCommitList.js │ │ ├── gitConfigList.js │ │ ├── gitFileList.js │ │ └── gitRepoList.js ├── org.eclipse.orion.client.help │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── help │ │ ├── help.css │ │ ├── help.html │ │ ├── help.js │ │ └── helpService.js │ │ ├── helpContent │ │ ├── Orion User Guide │ │ │ ├── Getting Started.md │ │ │ ├── images │ │ │ │ ├── Getting-started.html │ │ │ │ ├── Orion-0-3-login.png │ │ │ │ ├── Orion-actions-menu.png │ │ │ │ ├── Orion-banner-expanded.png │ │ │ │ ├── Orion-browserbar.png │ │ │ │ ├── Orion-editcss.png │ │ │ │ ├── Orion-edithtml.png │ │ │ │ ├── Orion-editjs.png │ │ │ │ ├── Orion-editorplugin.png │ │ │ │ ├── Orion-findFileName-overal.png │ │ │ │ ├── Orion-git-log-overview.png │ │ │ │ ├── Orion-git-status-compare.png │ │ │ │ ├── Orion-gitmenu.png │ │ │ │ ├── Orion-gitsidebyside.png │ │ │ │ ├── Orion-hamburger-invert.png │ │ │ │ ├── Orion-navactions.png │ │ │ │ ├── Orion-navbreadcommands.png │ │ │ │ ├── Orion-navbreadcrumb.png │ │ │ │ ├── Orion-navexport.png │ │ │ │ ├── Orion-navimport-dnd-folder.png │ │ │ │ ├── Orion-navimport-dnd.png │ │ │ │ ├── Orion-navimport.png │ │ │ │ ├── Orion-navinitial.png │ │ │ │ ├── Orion-new-menu.png │ │ │ │ ├── Orion-pluginregistry.png │ │ │ │ ├── Orion-relatedpages-git.png │ │ │ │ ├── Orion-sampleCommands.png │ │ │ │ ├── Orion-sampleSelectionCommands.png │ │ │ │ ├── Orion-search-page-overall.png │ │ │ │ ├── Orion-searchineditor-overall.png │ │ │ │ ├── Orion-site-dir-index.png │ │ │ │ ├── Orion-site-landingpage.png │ │ │ │ ├── Orion-site-started.png │ │ │ │ ├── Orion-sites.png │ │ │ │ ├── Orion-status-page-overview.png │ │ │ │ ├── Orion-topbanner.png │ │ │ │ └── Orion-view-options.png │ │ │ └── toc │ │ └── toc │ │ ├── orion │ │ └── help │ │ │ └── nls │ │ │ ├── messages.js │ │ │ └── root │ │ │ └── messages.js │ │ └── plugins │ │ ├── helpPlugin.html │ │ └── helpPlugin.js ├── org.eclipse.orion.client.javascript │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.md │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── doctrine │ │ ├── LICENSE.BSD │ │ ├── README.md │ │ └── doctrine.js │ │ ├── escope │ │ ├── LICENSE.BSD │ │ ├── README.md │ │ └── escope.js │ │ ├── eslint │ │ ├── LICENSE │ │ ├── README.md │ │ ├── conf │ │ │ └── environments.js │ │ ├── lib │ │ │ ├── eslint.js │ │ │ ├── events.js │ │ │ ├── load-rules-async.js │ │ │ ├── rule-context.js │ │ │ ├── rules.js │ │ │ ├── rules │ │ │ │ ├── curly.js │ │ │ │ ├── eqeqeq.js │ │ │ │ ├── missing-doc.js │ │ │ │ ├── new-parens.js │ │ │ │ ├── no-debugger.js │ │ │ │ ├── no-dupe-keys.js │ │ │ │ ├── no-empty-block.js │ │ │ │ ├── no-eval.js │ │ │ │ ├── no-extra-semi.js │ │ │ │ ├── no-fallthrough.js │ │ │ │ ├── no-jslint.js │ │ │ │ ├── no-new-array.js │ │ │ │ ├── no-new-func.js │ │ │ │ ├── no-new-object.js │ │ │ │ ├── no-new-wrappers.js │ │ │ │ ├── no-redeclare.js │ │ │ │ ├── no-undef.js │ │ │ │ ├── no-unreachable.js │ │ │ │ ├── no-unused-params.js │ │ │ │ ├── no-unused-vars.js │ │ │ │ ├── no-use-before-define.js │ │ │ │ ├── semi.js │ │ │ │ ├── throw-error.js │ │ │ │ └── use-isnan.js │ │ │ └── util.js │ │ └── tests │ │ │ ├── eslintTests.html │ │ │ ├── lib │ │ │ ├── eslint.js │ │ │ ├── rules │ │ │ │ ├── curly.js │ │ │ │ ├── eqeqeq.js │ │ │ │ ├── missing-func-decl-doc.js │ │ │ │ ├── missing-func-expr-doc.js │ │ │ │ ├── new-parens.js │ │ │ │ ├── no-debugger.js │ │ │ │ ├── no-dupe-keys.js │ │ │ │ ├── no-empty-block.js │ │ │ │ ├── no-eval.js │ │ │ │ ├── no-extra-semi.js │ │ │ │ ├── no-fallthrough.js │ │ │ │ ├── no-jslint.js │ │ │ │ ├── no-new-array.js │ │ │ │ ├── no-new-func.js │ │ │ │ ├── no-new-object.js │ │ │ │ ├── no-new-wrappers.js │ │ │ │ ├── no-redeclare.js │ │ │ │ ├── no-undef.js │ │ │ │ ├── no-unreachable.js │ │ │ │ ├── no-unused-params.js │ │ │ │ ├── no-unused-vars.js │ │ │ │ ├── no-use-before-define.js │ │ │ │ ├── semi.js │ │ │ │ ├── throw-error.js │ │ │ │ └── use-isnan.js │ │ │ └── util.js │ │ │ └── load-tests.js │ │ ├── esprima │ │ ├── LICENSE.BSD │ │ ├── README.md │ │ └── esprima.js │ │ ├── estraverse │ │ ├── LICENSE.BSD │ │ ├── README.md │ │ └── estraverse.js │ │ ├── javascript │ │ ├── astManager.js │ │ ├── commands │ │ │ └── generateDocCommand.js │ │ ├── contentAssist │ │ │ ├── contentAssist.js │ │ │ ├── esprimaVisitor.js │ │ │ ├── indexFiles │ │ │ │ ├── amqpIndex.js │ │ │ │ ├── browserIndex.js │ │ │ │ ├── ecma5Index.js │ │ │ │ ├── expressIndex.js │ │ │ │ ├── mongodbIndex.js │ │ │ │ ├── mysqlIndex.js │ │ │ │ ├── nodeIndex.js │ │ │ │ ├── postgresIndex.js │ │ │ │ └── redisIndex.js │ │ │ ├── indexer.js │ │ │ ├── proposalUtils.js │ │ │ ├── templates.js │ │ │ ├── typeEnvironment.js │ │ │ ├── typeInference.js │ │ │ ├── typeUtils.js │ │ │ └── typesFromIndexFile.js │ │ ├── finder.js │ │ ├── hover.js │ │ ├── images │ │ │ ├── javascript.gif │ │ │ └── javascript.png │ │ ├── logger.js │ │ ├── nls │ │ │ ├── messages.js │ │ │ ├── problems.js │ │ │ └── root │ │ │ │ ├── messages.js │ │ │ │ └── problems.js │ │ ├── occurrences.js │ │ ├── outliner.js │ │ ├── plugins │ │ │ ├── javascriptPlugin.html │ │ │ ├── javascriptPlugin.js │ │ │ ├── javascriptPluginLoader.js │ │ │ └── javascriptWorker.js │ │ ├── signatures.js │ │ └── validator.js │ │ └── js-tests │ │ └── javascript │ │ ├── JsMochaSuite.html │ │ ├── astManagerTests.js │ │ ├── contentAssistTests.js │ │ ├── eslintEventTests.js │ │ ├── esprimaTolerantTests.js │ │ ├── finderTests.js │ │ ├── indexFileParsingTests.js │ │ ├── occurrencesTests.js │ │ ├── outlinerTests.js │ │ └── validatorTests.js ├── org.eclipse.orion.client.ui │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── README.md │ │ ├── androidapp │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ ├── values-sw600dp │ │ │ │ └── dimens.xml │ │ │ ├── values-sw720dp-land │ │ │ │ └── dimens.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── orion │ │ │ └── android │ │ │ └── MainActivity.java │ │ ├── auth │ │ └── NotifyAuthentication.html │ │ ├── browse │ │ ├── browse.css │ │ ├── builder │ │ │ ├── AlmondBuilder │ │ │ │ ├── build.bat │ │ │ │ ├── copy │ │ │ │ │ └── copy.js │ │ │ │ ├── lib │ │ │ │ │ ├── async.js │ │ │ │ │ └── compat.js │ │ │ │ └── package.json │ │ │ ├── browse.build.almond-js.js │ │ │ ├── browse.css.build.json │ │ │ ├── browse.js │ │ │ ├── browseBuilder.css │ │ │ ├── buildFrom │ │ │ │ └── emptyExtensionCommands.js │ │ │ └── i18n.js │ │ ├── demo.css │ │ ├── demo │ │ │ ├── .gitignore │ │ │ ├── browseGivenFileSys.html │ │ │ ├── browseGivenFileSys.js │ │ │ ├── built-browser.css │ │ │ ├── built-browser.js │ │ │ ├── demoBrowse.html │ │ │ ├── demoBrowseBuild.html │ │ │ ├── demoOrion.html │ │ │ └── demoOrion.js │ │ ├── fileBrowser.css │ │ ├── fileBrowserAnnotation.css │ │ └── widgetCommon.css │ │ ├── compare-tree │ │ ├── compare-tree.css │ │ ├── compare-tree.html │ │ └── compare-tree.js │ │ ├── compare │ │ ├── builder │ │ │ ├── AlmondBuilder │ │ │ │ └── compareBuild.bat │ │ │ ├── compare.build.almond-js.js │ │ │ ├── compare.build.json │ │ │ ├── compare.css.build.json │ │ │ ├── compare.js │ │ │ ├── compareBuilder.css │ │ │ ├── i18n.js │ │ │ └── imageText.css │ │ ├── compare.css │ │ ├── compare.html │ │ └── compare.js │ │ ├── content │ │ ├── content.css │ │ ├── content.html │ │ ├── content.js │ │ ├── exit.html │ │ ├── saveHook.html │ │ └── saveHook.js │ │ ├── css │ │ ├── assistance.css │ │ ├── controls.css │ │ ├── customide.css │ │ ├── ide.css │ │ ├── images.css │ │ ├── layout.css │ │ ├── pages.css │ │ ├── progress.css │ │ ├── sections.css │ │ ├── theme.css │ │ └── wizard.css │ │ ├── defaults.pref │ │ ├── edit │ │ ├── common.css │ │ ├── content │ │ │ ├── imageViewerPlugin.css │ │ │ ├── imageViewerPlugin.html │ │ │ ├── imageViewerPlugin.js │ │ │ ├── images │ │ │ │ ├── boolean.png │ │ │ │ ├── number.png │ │ │ │ └── string.png │ │ │ ├── jsonEditorPlugin.css │ │ │ ├── jsonEditorPlugin.html │ │ │ ├── jsonEditorPlugin.js │ │ │ └── jsonExplorer.js │ │ ├── edit.css │ │ ├── edit.html │ │ ├── edit.js │ │ ├── readonly.css │ │ ├── readonly.html │ │ ├── readonly.js │ │ └── setup.js │ │ ├── error.png │ │ ├── examplePages │ │ ├── leftrightpanes.css │ │ ├── leftrightpanes.html │ │ ├── leftrightpanes.js │ │ ├── singlepane.css │ │ ├── singlepane.html │ │ └── singlepane.js │ │ ├── favicon.ico │ │ ├── font │ │ ├── OrionIconFont-Regular.eot │ │ ├── OrionIconFont-Regular.svg │ │ ├── OrionIconFont-Regular.ttf │ │ ├── OrionIconFont-Regular.woff │ │ ├── font.css │ │ └── preview.html │ │ ├── gcli │ │ ├── LICENSE │ │ ├── gcli │ │ │ ├── argument.js │ │ │ ├── canon.js │ │ │ ├── cli.js │ │ │ ├── commands │ │ │ │ ├── help.css │ │ │ │ ├── help.js │ │ │ │ ├── help_list.html │ │ │ │ ├── help_man.html │ │ │ │ ├── intro.js │ │ │ │ ├── pref.js │ │ │ │ ├── pref_list.css │ │ │ │ ├── pref_list.js │ │ │ │ ├── pref_list_edit.png │ │ │ │ ├── pref_list_inner.html │ │ │ │ ├── pref_list_outer.html │ │ │ │ └── pref_set_check.html │ │ │ ├── history.js │ │ │ ├── index.js │ │ │ ├── nls │ │ │ │ └── strings.js │ │ │ ├── settings.js │ │ │ ├── types.js │ │ │ ├── types │ │ │ │ ├── basic.js │ │ │ │ ├── command.js │ │ │ │ ├── javascript.js │ │ │ │ ├── node.js │ │ │ │ ├── resource.js │ │ │ │ ├── selection.js │ │ │ │ ├── setting.js │ │ │ │ └── spell.js │ │ │ └── ui │ │ │ │ ├── arg_fetch.css │ │ │ │ ├── arg_fetch.html │ │ │ │ ├── arg_fetch.js │ │ │ │ ├── completer.html │ │ │ │ ├── completer.js │ │ │ │ ├── display.css │ │ │ │ ├── display.html │ │ │ │ ├── display.js │ │ │ │ ├── fields.js │ │ │ │ ├── fields │ │ │ │ ├── basic.js │ │ │ │ ├── javascript.js │ │ │ │ ├── menu.css │ │ │ │ ├── menu.html │ │ │ │ ├── menu.js │ │ │ │ └── selection.js │ │ │ │ ├── focus.js │ │ │ │ ├── images │ │ │ │ ├── closer.png │ │ │ │ ├── dot_clear.gif │ │ │ │ ├── minus.png │ │ │ │ ├── pinaction.png │ │ │ │ ├── pinin.png │ │ │ │ ├── pinout.png │ │ │ │ ├── pins.png │ │ │ │ ├── plus.png │ │ │ │ └── throbber.gif │ │ │ │ ├── inputter.css │ │ │ │ ├── inputter.js │ │ │ │ ├── intro.html │ │ │ │ ├── intro.js │ │ │ │ ├── output_terminal.html │ │ │ │ ├── output_terminal.js │ │ │ │ ├── output_view.css │ │ │ │ ├── prompt.js │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.html │ │ │ │ ├── tooltip.js │ │ │ │ └── view.js │ │ └── util │ │ │ ├── domtemplate.js │ │ │ ├── host.js │ │ │ ├── l10n.js │ │ │ ├── legacy.js │ │ │ ├── promise.js │ │ │ └── util.js │ │ ├── images │ │ ├── addcontent.png │ │ ├── applicationRunning.png │ │ ├── applicationStopped.png │ │ ├── check.gif │ │ ├── check_on.gif │ │ ├── cherry.png │ │ ├── close.gif │ │ ├── closedarrow.png │ │ ├── collapseAll.png │ │ ├── compare-addition.gif │ │ ├── compare-removal.gif │ │ ├── copy-folder.png │ │ ├── core_sprites.html │ │ ├── core_sprites.png │ │ ├── core_sprites.sh │ │ ├── css.png │ │ ├── delete.png │ │ ├── diff-border-sel.png │ │ ├── diff-border.png │ │ ├── diff-empty-add-word-border.png │ │ ├── diff-empty-del-word-border.png │ │ ├── diff-empty-word-border-black.png │ │ ├── downarrow.gif │ │ ├── edit.gif │ │ ├── edit.png │ │ ├── error.gif │ │ ├── error.png │ │ ├── expandAll.png │ │ ├── file.png │ │ ├── file_model.gif │ │ ├── folder.png │ │ ├── gear-white.png │ │ ├── gear.png │ │ ├── glass.png │ │ ├── go-down.png │ │ ├── go-up.png │ │ ├── hamburger-dark.png │ │ ├── hamburger.png │ │ ├── html.png │ │ ├── info.gif │ │ ├── information.png │ │ ├── initproject.png │ │ ├── leftarrow.png │ │ ├── link.png │ │ ├── list.png │ │ ├── makeFavorite.gif │ │ ├── move-down.png │ │ ├── move-up.png │ │ ├── ok.gif │ │ ├── openarrow.png │ │ ├── orion-footer.png │ │ ├── orion-logo.png │ │ ├── orion-transparent.png │ │ ├── outline.png │ │ ├── placeholder.png │ │ ├── problem.gif │ │ ├── progress_running.gif │ │ ├── progress_running_dark.gif │ │ ├── refresh.png │ │ ├── replaceAll.gif │ │ ├── rightarrow.png │ │ ├── sep.gif │ │ ├── share.png │ │ ├── shell.png │ │ ├── silhouette-dark.png │ │ ├── silhouette.png │ │ ├── sites.png │ │ ├── splitterleft.gif │ │ ├── splitterright.gif │ │ ├── start.gif │ │ ├── stop.gif │ │ ├── success.png │ │ ├── thumbnail.png │ │ ├── unit_test │ │ │ ├── add-test-config.png │ │ │ ├── del-test-config.png │ │ │ ├── edit-test-config.png │ │ │ ├── test_fail.gif │ │ │ ├── test_fail.png │ │ │ ├── test_succeed.png │ │ │ ├── testerr.gif │ │ │ ├── testfail.gif │ │ │ ├── testok.gif │ │ │ └── unit-test.png │ │ ├── user.png │ │ ├── warning.gif │ │ ├── wrench-white.png │ │ ├── wrench.png │ │ ├── wtp │ │ │ ├── image.gif │ │ │ ├── json.gif │ │ │ └── xmlfile.gif │ │ └── xmlfile.png │ │ ├── import │ │ ├── ImportHandler.js │ │ ├── Injector.js │ │ ├── import.html │ │ ├── import.js │ │ ├── orion-override │ │ │ ├── bootstrap-import.js │ │ │ └── defaults-import.pref │ │ └── trampoline.js │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── js-tests │ │ └── ui │ │ │ ├── HTMLTemplates │ │ │ └── HTMLTemplateTests.js │ │ │ ├── asyncStyler │ │ │ └── asyncStylerTests.js │ │ │ ├── charDiff │ │ │ └── charDiffTests.js │ │ │ ├── commands │ │ │ └── commandsTests.js │ │ │ ├── commonjs-unittesting │ │ │ └── test.html │ │ │ ├── compare │ │ │ ├── compareTests.js │ │ │ └── mapper-test-data.js │ │ │ ├── contentTypes │ │ │ └── contentTypesTests.js │ │ │ ├── dispatcher │ │ │ └── editDispatcherTests.js │ │ │ ├── encoding │ │ │ └── encodingTests.js │ │ │ ├── extensionParsing │ │ │ └── extensionParsingTests.js │ │ │ ├── fileapi │ │ │ ├── dummyFilePlugin.html │ │ │ ├── fileapiTests.js │ │ │ └── xhrPlugin.html │ │ │ ├── githubfileapi │ │ │ ├── test.html │ │ │ └── testcase.js │ │ │ ├── globalSearch │ │ │ └── globalSearchTests.js │ │ │ ├── i18n │ │ │ ├── i18nTests.js │ │ │ └── testPlugin.html │ │ │ ├── objects │ │ │ └── objectsTests.js │ │ │ ├── pageUtil │ │ │ └── pageUtilTests.js │ │ │ ├── searchCrawler │ │ │ ├── mockFileClient.js │ │ │ └── searchCrawlerTests.js │ │ │ ├── searchRendering │ │ │ ├── disabled-test.html │ │ │ └── testcase.js │ │ │ ├── settings │ │ │ └── settingsTests.js │ │ │ ├── typedefs │ │ │ └── typedefsTests.js │ │ │ ├── uiTests.html │ │ │ ├── urlUtils │ │ │ └── urlUtils.js │ │ │ └── webdav │ │ │ ├── test.html │ │ │ ├── testcase.js │ │ │ ├── webdav.js │ │ │ └── xhrPlugin.html │ │ ├── jsdiff │ │ └── diff.js │ │ ├── marked │ │ ├── LICENSE │ │ ├── README.md │ │ └── marked.js │ │ ├── mixloginstatic │ │ ├── LoginWindow.html │ │ ├── LoginWindow.js │ │ ├── ServerStatus.html │ │ ├── ServerStatus.js │ │ ├── css │ │ │ ├── combined.png │ │ │ ├── landing.css │ │ │ ├── manageExternalIds.css │ │ │ ├── orion-transparent.png │ │ │ ├── orionsnap.png │ │ │ ├── platforms6.png │ │ │ ├── serverstatus.css │ │ │ └── welcome.jpg │ │ ├── images │ │ │ ├── GitHub-Mark-Light-32px.png │ │ │ ├── buttonEnabled.png │ │ │ ├── buttonHover.png │ │ │ ├── close-tab.gif │ │ │ ├── error_tsk.gif │ │ │ ├── google.png │ │ │ ├── info_tsk.gif │ │ │ ├── openid.png │ │ │ ├── or.png │ │ │ ├── orion-small-lightondark.gif │ │ │ ├── orion-transparent-large.png │ │ │ ├── oriongrey.png │ │ │ ├── persona.png │ │ │ ├── rss16.png │ │ │ └── twitter.png │ │ ├── manageExternalIds.html │ │ ├── manageExternalIds.js │ │ └── userProfilePlugin.html │ │ ├── operations │ │ ├── list.css │ │ ├── list.html │ │ └── list.js │ │ ├── orion │ │ ├── PageLinks.js │ │ ├── PageUtil.js │ │ ├── banner │ │ │ ├── CommandSlideout.html │ │ │ ├── banner.html │ │ │ ├── footer.html │ │ │ └── toolbar.html │ │ ├── blamer.js │ │ ├── breadcrumbs.js │ │ ├── browserCompatibility.js │ │ ├── commandRegistry.js │ │ ├── commands.js │ │ ├── commonHTMLFragments.js │ │ ├── compare │ │ │ ├── compareCommands.js │ │ │ ├── compareHighlighter.js │ │ │ ├── compareRulers.js │ │ │ ├── compareTreeExplorer.css │ │ │ ├── compareTreeExplorer.js │ │ │ ├── compareUIFactory.js │ │ │ ├── compareUtils.js │ │ │ ├── compareView.css │ │ │ ├── compareView.js │ │ │ ├── diffParser.js │ │ │ ├── diffProvider.js │ │ │ ├── diffTreeNavigator.js │ │ │ ├── examples │ │ │ │ ├── demo.css │ │ │ │ ├── demo.html │ │ │ │ ├── demo.js │ │ │ │ └── standalone │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demoAlmond.html │ │ │ │ │ ├── demoLocal.html │ │ │ │ │ ├── demo_lightweight.html │ │ │ │ │ ├── demo_simple.html │ │ │ │ │ ├── require.min.js │ │ │ │ │ ├── sampleLeft.js │ │ │ │ │ └── sampleRight.js │ │ │ ├── jsdiffAdapter.js │ │ │ ├── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ │ └── messages.js │ │ │ ├── resourceComparer.js │ │ │ └── sideBySideTemplate.html │ │ ├── content │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── crawler │ │ │ ├── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ │ └── messages.js │ │ │ └── searchCrawler.js │ │ ├── customGlobalCommands.js │ │ ├── dialogs.js │ │ ├── dynamicContent.js │ │ ├── edit │ │ │ ├── dispatcher.js │ │ │ ├── editorContext.js │ │ │ ├── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ │ └── messages.js │ │ │ └── typedefs.js │ │ ├── editorCommands.js │ │ ├── editorPluginView.js │ │ ├── editorPreferences.js │ │ ├── editorView.js │ │ ├── explorers │ │ │ ├── explorer-table.js │ │ │ ├── explorer.js │ │ │ ├── explorerNavHandler.js │ │ │ ├── navigationUtils.js │ │ │ └── navigatorRenderer.js │ │ ├── extensionCommands.js │ │ ├── fileCommands.js │ │ ├── fileDownloader.js │ │ ├── folderView.js │ │ ├── globalCommands.js │ │ ├── globalSearch │ │ │ ├── advSearchOpt.html │ │ │ ├── globalSearch.css │ │ │ ├── search-features.html │ │ │ ├── search-features.js │ │ │ ├── searchBuilder.html │ │ │ └── searchMoreOptions.html │ │ ├── highlight.js │ │ ├── hover.js │ │ ├── inlineSearchResultExplorer.js │ │ ├── inputCompletion │ │ │ └── inputCompletion.js │ │ ├── inputManager.js │ │ ├── jslintworker.js │ │ ├── keyAssist.js │ │ ├── links.js │ │ ├── liveEditSession.js │ │ ├── markOccurrences.js │ │ ├── markdownEditor.js │ │ ├── markdownView.js │ │ ├── mixloginstatic │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── navigate │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── navoutliner.js │ │ ├── nls │ │ │ ├── messages.js │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── operations │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── operationsCommands.js │ │ ├── operationsTable.js │ │ ├── outliner.js │ │ ├── parameterCollectors.js │ │ ├── progress.js │ │ ├── projectCommands.js │ │ ├── projects │ │ │ ├── projectEditor.js │ │ │ ├── projectExplorer.js │ │ │ └── projectView.js │ │ ├── search │ │ │ ├── InlineSearchPane.css │ │ │ ├── InlineSearchPane.html │ │ │ ├── InlineSearchPane.js │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── searchAndReplace │ │ │ └── textSearcher.js │ │ ├── searchClient.js │ │ ├── searchExplorer.js │ │ ├── searchModel.js │ │ ├── searchUtils.js │ │ ├── section.js │ │ ├── selection.js │ │ ├── settings │ │ │ ├── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ │ └── messages.js │ │ │ ├── settingsRegistry.js │ │ │ └── ui │ │ │ │ └── PluginSettings.js │ │ ├── shell │ │ │ ├── Shell.css │ │ │ ├── Shell.js │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── sidebar.js │ │ ├── sites │ │ │ ├── SiteEditor.js │ │ │ ├── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ │ └── messages.js │ │ │ ├── siteClient.js │ │ │ ├── siteCommands.js │ │ │ ├── siteMappingsTable.js │ │ │ ├── siteUtils.js │ │ │ ├── sitesExplorer.js │ │ │ ├── templates │ │ │ │ ├── ConvertToSelfHostingDialog.html │ │ │ │ └── SiteEditor.html │ │ │ └── viewOnSiteTree.js │ │ ├── ssh │ │ │ └── sshTools.js │ │ ├── status.js │ │ ├── stringexternalizer │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── syntaxchecker.js │ │ ├── tasks.js │ │ ├── terminal │ │ │ └── nls │ │ │ │ ├── messages.js │ │ │ │ └── root │ │ │ │ └── messages.js │ │ ├── treeModelIterator.js │ │ ├── uiUtils.js │ │ ├── urlUtils.js │ │ ├── webui │ │ │ ├── SideMenu.js │ │ │ ├── Slideout.css │ │ │ ├── Slideout.html │ │ │ ├── Slideout.js │ │ │ ├── Wizard.js │ │ │ ├── checkedmenuitem.html │ │ │ ├── contextmenu.js │ │ │ ├── dialog.js │ │ │ ├── dialogs │ │ │ │ ├── ConfirmDialog.js │ │ │ │ ├── DirectoryPrompterDialog.js │ │ │ │ ├── OpenResourceDialog.js │ │ │ │ ├── OperationsDialog.js │ │ │ │ ├── PromptDialog.js │ │ │ │ ├── SFTPConnectionDialog.js │ │ │ │ ├── confirmdialog.html │ │ │ │ └── promptdialog.html │ │ │ ├── dropdown.js │ │ │ ├── dropdownseparator.html │ │ │ ├── dropdowntriggerbutton.html │ │ │ ├── dropdowntriggerbuttonwitharrow.html │ │ │ ├── littlelib.js │ │ │ ├── popupdialog.js │ │ │ ├── splitter.js │ │ │ ├── submenutriggerbutton.html │ │ │ ├── tooltip.js │ │ │ └── treetable.js │ │ └── widgets │ │ │ ├── UserMenu.js │ │ │ ├── browse │ │ │ ├── browseView.js │ │ │ ├── commitInfoRenderer.js │ │ │ ├── emptyFileClient.js │ │ │ ├── fileBrowser.js │ │ │ ├── readonlyEditorView.js │ │ │ ├── readonlyFileClient.js │ │ │ ├── repoAndBaseUrlTrigger.html │ │ │ ├── repoUrlTrigger.html │ │ │ ├── resourceSelector.js │ │ │ ├── shareCodeTrigger.html │ │ │ ├── shareSnippetTrigger.html │ │ │ └── staticDataSource.js │ │ │ ├── filesystem │ │ │ └── filesystemSwitcher.js │ │ │ ├── input │ │ │ ├── ActivityContent.js │ │ │ ├── Checkbox.js │ │ │ ├── ComboTextInput.css │ │ │ ├── ComboTextInput.html │ │ │ ├── ComboTextInput.js │ │ │ ├── DropDownMenu.js │ │ │ ├── LabeledCheckbox.js │ │ │ ├── LabeledCommand.js │ │ │ ├── LabeledSelect.js │ │ │ ├── LabeledTextfield.js │ │ │ ├── Select.js │ │ │ ├── TextField.js │ │ │ └── ToolsContent.js │ │ │ ├── nav │ │ │ ├── common-nav.js │ │ │ ├── mini-nav.js │ │ │ └── project-nav.js │ │ │ ├── nls │ │ │ ├── messages.js │ │ │ └── root │ │ │ │ └── messages.js │ │ │ ├── plugin │ │ │ ├── PluginEntry.js │ │ │ ├── PluginList.js │ │ │ └── ServiceCarousel.js │ │ │ ├── projects │ │ │ └── ProjectOptionalParametersDialog.js │ │ │ ├── settings │ │ │ ├── EditorSettings.js │ │ │ ├── GitSettings.js │ │ │ ├── SettingsContainer.js │ │ │ ├── SplitSelectionLayout.js │ │ │ ├── Subsection.js │ │ │ ├── UserSettings.js │ │ │ └── orion-transparent.png │ │ │ └── themes │ │ │ ├── ThemeBuilder.js │ │ │ ├── ThemeClass.js │ │ │ ├── ThemeComponent.js │ │ │ ├── ThemePreferences.js │ │ │ ├── ThemeVersion.js │ │ │ ├── container │ │ │ ├── ThemeData.js │ │ │ └── ThemeSheetWriter.js │ │ │ └── editor │ │ │ └── ThemeData.js │ │ ├── plugins │ │ ├── GerritFilePlugin.html │ │ ├── GerritFilePlugin.js │ │ ├── GitHubFilePlugin.html │ │ ├── GitHubFilePlugin.js │ │ ├── HTML5LocalFilePlugin.html │ │ ├── HoverTestPlugin.html │ │ ├── HoverTestPlugin.js │ │ ├── HoverTestPlugin2.html │ │ ├── HoverTestPlugin2.js │ │ ├── asyncUpperPlugin.html │ │ ├── authenticationPlugin.html │ │ ├── authenticationPlugin.js │ │ ├── commentPlugin.html │ │ ├── contentTemplates │ │ │ ├── helloWorld.zip │ │ │ ├── pluginHelloWorld.zip │ │ │ └── readme.txt │ │ ├── delimiterPlugin.html │ │ ├── delimiterPlugin.js │ │ ├── fileClientPlugin.html │ │ ├── fileClientPlugin.js │ │ ├── filePlugin │ │ │ ├── GerritFileImpl.js │ │ │ ├── GitHubFileImpl.js │ │ │ ├── HTML5FS.js │ │ │ ├── HTML5LocalFileImpl.js │ │ │ ├── fileImpl.js │ │ │ └── webdavImpl.js │ │ ├── gitBlamePlugin.html │ │ ├── gitBlamePlugin.js │ │ ├── images │ │ │ └── upload.png │ │ ├── jslintPlugin.html │ │ ├── jslintPlugin.js │ │ ├── languages │ │ │ ├── arduino │ │ │ │ ├── arduinoPlugin.html │ │ │ │ └── arduinoPlugin.js │ │ │ ├── c │ │ │ │ ├── cPlugin.html │ │ │ │ └── cPlugin.js │ │ │ ├── cpp │ │ │ │ ├── cppPlugin.html │ │ │ │ └── cppPlugin.js │ │ │ ├── docker │ │ │ │ ├── dockerPlugin.html │ │ │ │ └── dockerPlugin.js │ │ │ ├── erlang │ │ │ │ ├── erlangPlugin.html │ │ │ │ └── erlangPlugin.js │ │ │ ├── go │ │ │ │ ├── goPlugin.html │ │ │ │ └── goPlugin.js │ │ │ ├── haml │ │ │ │ ├── hamlPlugin.html │ │ │ │ └── hamlPlugin.js │ │ │ ├── java │ │ │ │ ├── javaPlugin.html │ │ │ │ └── javaPlugin.js │ │ │ ├── lua │ │ │ │ ├── luaPlugin.html │ │ │ │ └── luaPlugin.js │ │ │ ├── markdown │ │ │ │ ├── markdownPlugin.html │ │ │ │ └── markdownPlugin.js │ │ │ ├── objectiveC │ │ │ │ ├── objectiveCPlugin.html │ │ │ │ └── objectiveCPlugin.js │ │ │ ├── php │ │ │ │ ├── phpPlugin.html │ │ │ │ └── phpPlugin.js │ │ │ ├── python │ │ │ │ ├── pythonPlugin.html │ │ │ │ └── pythonPlugin.js │ │ │ ├── ruby │ │ │ │ ├── rubyPlugin.html │ │ │ │ └── rubyPlugin.js │ │ │ ├── swift │ │ │ │ ├── swiftPlugin.html │ │ │ │ └── swiftPlugin.js │ │ │ ├── xml │ │ │ │ ├── xmlPlugin.html │ │ │ │ └── xmlPlugin.js │ │ │ ├── xquery │ │ │ │ ├── xqueryPlugin.html │ │ │ │ └── xqueryPlugin.js │ │ │ └── yaml │ │ │ │ ├── yamlPlugin.html │ │ │ │ └── yamlPlugin.js │ │ ├── lowerPlugin.html │ │ ├── nonnlsPlugin.html │ │ ├── nonnlsPlugin.js │ │ ├── npmPlugin.html │ │ ├── npmPlugin.js │ │ ├── pageLinksPlugin.html │ │ ├── pageLinksPlugin.js │ │ ├── preferencesPlugin.html │ │ ├── preferencesPlugin.js │ │ ├── sampleCommandsPlugin.html │ │ ├── sampleFilePlugin.html │ │ ├── sampleSearchProposalPlugin_filtered.html │ │ ├── sampleSearchProposalPlugin_notFiltered.html │ │ ├── sampleSearchProposalPlugin_pageLinks.html │ │ ├── site │ │ │ ├── selfHostingRules.js │ │ │ ├── sitePlugin.html │ │ │ ├── sitePlugin.js │ │ │ └── siteServiceImpl.js │ │ ├── taskPlugin.html │ │ ├── taskPlugin.js │ │ ├── toRGBPlugin.html │ │ ├── unittestPlugin.html │ │ ├── upperPlugin.html │ │ ├── webEditingPlugin.html │ │ ├── webEditingPlugin.js │ │ ├── webdavFilePlugin.html │ │ └── xhrPlugin.html │ │ ├── server-status.json │ │ ├── settings │ │ ├── services.css │ │ ├── settings.css │ │ ├── settings.html │ │ └── settings.js │ │ ├── shell │ │ ├── paramType-file.js │ │ ├── paramType-hidden.js │ │ ├── paramType-plugin.js │ │ ├── paramType-service.js │ │ ├── plugins │ │ │ ├── shellLogProviderPlugin.html │ │ │ ├── shellLogProviderPlugin.js │ │ │ ├── shellPagePlugin.html │ │ │ └── shellPagePlugin.js │ │ ├── resultWriters.js │ │ ├── shellPage.css │ │ ├── shellPage.html │ │ ├── shellPage.js │ │ ├── shellPageFileService.js │ │ └── shellPlugin.html │ │ ├── sites │ │ ├── site.css │ │ ├── site.html │ │ ├── site.js │ │ ├── siteEditor.css │ │ ├── sites.css │ │ ├── sites.html │ │ ├── sites.js │ │ ├── view.css │ │ ├── view.html │ │ └── view.js │ │ ├── stringexternalizer │ │ ├── nonnlsSearchUtil.js │ │ ├── strExternalizer.css │ │ ├── strExternalizer.html │ │ ├── strExternalizer.js │ │ ├── strExternalizerModel.js │ │ ├── strExternalizerResults.js │ │ └── stringexternalizerconfig.js │ │ ├── terminal │ │ ├── plugins │ │ │ ├── terminalPagePlugin.html │ │ │ └── terminalPagePlugin.js │ │ ├── term.js │ │ ├── terminal.css │ │ ├── terminal.html │ │ └── terminal.js │ │ └── webapp │ │ ├── orion-128.png │ │ ├── orion-16.png │ │ ├── orion-32.png │ │ ├── orion-48.png │ │ ├── orion-96.png │ │ ├── orion-app.html │ │ ├── orion-app.js │ │ ├── orion-manifest.webapp │ │ ├── orionhub-app.html │ │ ├── orionhub-app.js │ │ └── orionhub-manifest.webapp ├── org.eclipse.orion.client.users │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ │ ├── orion │ │ └── profile │ │ │ ├── UsersList.js │ │ │ ├── dialogs │ │ │ ├── NewUserDialog.js │ │ │ └── ResetPasswordDialog.js │ │ │ ├── profile.js │ │ │ ├── usersClient.js │ │ │ └── usersUtil.js │ │ └── profile │ │ ├── UsersService.js │ │ ├── css │ │ └── user.css │ │ ├── nls │ │ ├── messages.js │ │ └── root │ │ │ └── messages.js │ │ ├── user-list.css │ │ ├── user-list.html │ │ ├── user-list.js │ │ ├── user-profile.css │ │ ├── user-profile.html │ │ ├── user-profile.js │ │ ├── userservicePlugin.html │ │ └── userservicePlugin.js └── org.eclipse.orion.client.webtools │ ├── .project │ ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── pom.xml │ └── web │ ├── csslint │ └── csslint.js │ ├── htmlparser │ └── htmlparser.js │ ├── js-tests │ └── webtools │ │ ├── cssOutlinerTests.js │ │ ├── cssValidatorTests.js │ │ └── webtoolsMochaTests.html │ └── webtools │ ├── cssContentAssist.js │ ├── cssOutliner.js │ ├── cssValidator.js │ ├── htmlContentAssist.js │ ├── htmlOutliner.js │ ├── nls │ ├── messages.js │ └── root │ │ └── messages.js │ └── plugins │ ├── webToolsPlugin.html │ └── webToolsPlugin.js ├── complete.go ├── debug.go ├── debug_test.go ├── def.go ├── doc.go ├── file.go ├── filesearch.go ├── format.go ├── gitapi.go ├── godev.go ├── godoc-templates ├── callgraph.html ├── codewalk.html ├── codewalkdir.html ├── dirlist.html ├── error.html ├── example.html ├── godoc.html ├── implements.html ├── methodset.html ├── opensearch.xml ├── package.html ├── package.txt ├── search.html ├── search.txt ├── searchcode.html ├── searchdoc.html └── searchtxt.html ├── imports.go ├── login.go ├── outline.go ├── prefs.go ├── project.json ├── screenshots ├── contentAssist.png ├── markers.png ├── quickGoDoc.png ├── quickRun.png ├── richDebug.png ├── richGodocs.png └── toolsMenu.png ├── terminal-unix.go ├── terminal-windows.go ├── terminal.go ├── test.go ├── tests ├── go-test_test.go ├── syntax-hightlight-2.go ├── syntax-hightlight.go └── test-run.go ├── workspace.go └── xfer.go /bundles/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.editor 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | 2 | eclipse.preferences.version=1 3 | pluginProject.extensions=false 4 | resolve.requirebundle=false 5 | -------------------------------------------------------------------------------- /bundles/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/README.txt: -------------------------------------------------------------------------------- 1 | Note that there are overrides in here for orion files to work around problems and customize the look and feel. Ideally, these will all be fixed in future Orion releases. 2 | -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/debug/debug.css: -------------------------------------------------------------------------------- 1 | @import "../../css/layout.css"; 2 | @import "../../css/ide.css"; 3 | @import "../../css/images.css"; 4 | @import "../../css/theme.css"; 5 | 6 | html,body { 7 | height: 100%; 8 | } 9 | 10 | .terminal { 11 | font-size: 11pt; 12 | margin-left: 5px; 13 | margin-top: 3px; 14 | } -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/go-godev.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | GoDev IDE Core Plugin 11 | 12 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/godef/godef.css: -------------------------------------------------------------------------------- 1 | @import "../../css/layout.css"; 2 | 3 | @import "../../css/ide.css"; 4 | 5 | @import "../../css/images.css"; 6 | 7 | @import "../../css/sections.css"; 8 | 9 | @import "../../css/theme.css"; 10 | -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/godoc/godoc.css: -------------------------------------------------------------------------------- 1 | @import "../../css/layout.css"; 2 | @import "../../css/ide.css"; 3 | @import "../../css/images.css"; 4 | @import "../../css/theme.css"; 5 | 6 | html,body { 7 | height: 100%; 8 | } 9 | 10 | .search-control { 11 | display: inline-block; 12 | padding: 4px; 13 | outline: none; 14 | background-color: white; 15 | border: 1px solid #CCC; 16 | border-radius: 3px; 17 | font-size: 12px; 18 | color: #222; 19 | } -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/godoc/showgodoc.css: -------------------------------------------------------------------------------- 1 | @import "../../css/layout.css"; 2 | 3 | @import "../../css/ide.css"; 4 | 5 | @import "../../css/images.css"; 6 | 7 | @import "../../css/sections.css"; 8 | 9 | @import "../../css/theme.css"; 10 | -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/images/core_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/net.jazz.sirnewton.godev/web/godev/images/core_sprites.png -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/godev/quickrun/run.css: -------------------------------------------------------------------------------- 1 | @import "../../css/layout.css"; 2 | @import "../../css/ide.css"; 3 | @import "../../css/images.css"; 4 | @import "../../css/sections.css"; 5 | @import "../../css/theme.css"; 6 | 7 | .terminal { 8 | font-size: 11pt; 9 | margin-left: 5px; 10 | margin-top: 3px; 11 | } 12 | -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/images/godev-logo-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/net.jazz.sirnewton.godev/web/images/godev-logo-large.jpg -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/images/godev-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/net.jazz.sirnewton.godev/web/images/godev-logo.png -------------------------------------------------------------------------------- /bundles/net.jazz.sirnewton.godev/web/orion/banner/footer.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.core 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | 2 | eclipse.preferences.version=1 3 | pluginProject.extensions=false 4 | resolve.requirebundle=false 5 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-Localization: bundle 5 | Bundle-SymbolicName: org.eclipse.orion.client.core;singleton:=true 6 | Bundle-Version: 2.0.0.qualifier 7 | Bundle-Vendor: %Bundle-Vendor 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/bundle.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2011 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials are made 4 | # available under the terms of the Eclipse Public License v1.0 5 | # (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 6 | # License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 7 | # 8 | # Contributors: IBM Corporation - initial API and implementation 9 | ############################################################################### 10 | 11 | Bundle-Vendor = Eclipse.org - Orion 12 | Bundle-Name = Orion Client Core -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/orion-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.core/orion-32.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/web/js-tests/core/config/testManagedServicePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/web/js-tests/core/pluginregistry/testPlugin2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/web/js-tests/core/pluginregistry/testsandbox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | Busted! 14 | 15 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.core/web/pako/pako.js: -------------------------------------------------------------------------------- 1 | /*jslint amd:true*/ 2 | // stub 3 | define([], function() { 4 | function identity(s) { 5 | return s; 6 | } 7 | return { 8 | gzip: identity, 9 | deflate: identity, 10 | inflate: identity 11 | }; 12 | }); -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.editor 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-Vendor: %Bundle-Vendor 5 | Bundle-SymbolicName: org.eclipse.orion.client.editor 6 | Bundle-Version: 1.0.0.qualifier 7 | Bundle-Localization: bundle 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010, 2011 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials are made 4 | # available under the terms of the Eclipse Public License v1.0 5 | # (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 6 | # License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 7 | # 8 | # Contributors: IBM Corporation - initial API and implementation 9 | ############################################################################### 10 | 11 | bin.includes = META-INF/,\ 12 | web/,\ 13 | bundle.properties,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/bundle.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.eclipse.orion.client.editor 2 | Bundle-Name = Orion Editor 3 | Bundle-Vendor = Eclipse.org - Orion 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/examples/editor/demo.css: -------------------------------------------------------------------------------- 1 | @import "../../../orion/editor/themes/default.css"; 2 | 3 | .logo { 4 | background-color: black; 5 | border-radius: 5px; 6 | padding-left: 10px; 7 | } 8 | 9 | .group { 10 | border: 1px solid black; 11 | padding:5px; 12 | margin-top:5px; 13 | background-color: #ffd400; 14 | border-radius: 5px; 15 | } 16 | 17 | .editor_group { 18 | border: 1px solid black; 19 | } 20 | 21 | .console { 22 | overflow:scroll; 23 | white-space:pre; 24 | height:200px; 25 | background-color:white; 26 | } 27 | 28 | body { 29 | margin: 0; 30 | padding: 0; 31 | overflow: hidden; 32 | background-color: #ededed; 33 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/examples/editor/embeddededitor.css: -------------------------------------------------------------------------------- 1 | @import "../../orion/editor/themes/default.css"; 2 | 3 | body { 4 | margin: 0; 5 | padding: 0; 6 | font: 12px Myriad,Helvetica,Tahoma,Arial,clean,sans-serif; 7 | } 8 | 9 | a { 10 | cursor: hand; 11 | text-decoration: none; 12 | color: #ffffff; 13 | } 14 | 15 | a:hover { 16 | cursor: hand; 17 | text-decoration: underline; 18 | color: #ffffff; 19 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/examples/editor/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/examples/editor/images/logo.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/examples/editor/images/skinnyheaderlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/examples/editor/images/skinnyheaderlogo.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/examples/editor/minimaleditor.css: -------------------------------------------------------------------------------- 1 | @import "../../orion/editor/themes/default.css"; 2 | 3 | body { 4 | margin: 0; 5 | padding: 0; 6 | font: 12px Myriad,Helvetica,Tahoma,Arial,clean,sans-serif; 7 | } 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/js-tests/editor/editorTests.css: -------------------------------------------------------------------------------- 1 | .hide { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/config.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * @license 3 | * Copyright (c) 2014 IBM Corporation and others. 4 | * All rights reserved. This program and the accompanying materials are made 5 | * available under the terms of the Eclipse Public License v1.0 6 | * (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 7 | * License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 8 | * 9 | * Contributors: 10 | * IBM Corporation - initial API and implementation 11 | *******************************************************************************/ 12 | /*eslint-env browser, amd*/ 13 | define("orion/editor/config", [ //$NON-NLS-0$ 14 | ], function() { 15 | return { 16 | languages: {} 17 | }; 18 | }); -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.css: -------------------------------------------------------------------------------- 1 | @import "../../orion/editor/textview.css"; 2 | @import "../../orion/editor/rulers.css"; 3 | @import "../../orion/editor/tooltip.css"; 4 | @import "../../orion/editor/findUI.css"; 5 | @import "../../orion/editor/contentassist.css"; 6 | 7 | @import "../../orion/editor/textstyler.css"; 8 | 9 | @import "../../orion/editor/annotations.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/bookmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/bookmark.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/breakpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/breakpoint.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/collapsed.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/currentBracket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/currentBracket.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/currentLine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/currentLine.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/error.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/expanded.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/bookmark.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/error.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/task.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/flat-icons/warning.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/mark_occurrences.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/mark_occurrences.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/matchingBracket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/matchingBracket.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/multiple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/multiple.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/plus.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/search.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_bookmark.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_breakpoint.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_error.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_task.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/squiggly_warning.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/task.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/warning.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/white_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/white_space.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/images/white_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.editor/web/orion/editor/images/white_tab.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.editor/web/orion/editor/textview.css: -------------------------------------------------------------------------------- 1 | .textview { 2 | background-color: white; 3 | font-family: "Consolas", "Monaco", "Vera Mono", monospace; 4 | font-size: 12px; 5 | min-width: 50px; 6 | min-height: 50px; 7 | } 8 | 9 | .textviewScroll { 10 | padding: 5px 2px 2px 2px; 11 | } 12 | 13 | .textviewContent { 14 | cursor: auto; 15 | } 16 | 17 | .textviewLeftRuler { 18 | border-right: 1px solid #eaeaea; 19 | } 20 | 21 | .textviewRightRuler { 22 | border-left: 1px solid #eaeaea; 23 | } 24 | 25 | .textviewInnerRightRuler { 26 | border-left: 1px solid #eaeaea; 27 | background-color: white; 28 | } 29 | 30 | .textviewMarginRuler { 31 | border-left: 1px solid #eaeaea; 32 | } 33 | 34 | .textviewBlockCursor { 35 | background: black; 36 | opacity: 0.4; 37 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.git 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 18 14:23:15 CET 2011 2 | eclipse.preferences.version=1 3 | pluginProject.extensions=false 4 | resolve.requirebundle=false 5 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-SymbolicName: org.eclipse.orion.client.git 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-ActivationPolicy: lazy 7 | Bundle-Vendor: %Bundle-Vendor 8 | Bundle-Localization: bundle 9 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2011 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials are made 4 | # available under the terms of the Eclipse Public License v1.0 5 | # (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 6 | # License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 7 | # 8 | # Contributors: IBM Corporation - initial API and implementation 9 | ############################################################################### 10 | 11 | bin.includes = META-INF/,\ 12 | web/,\ 13 | bundle.properties,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/bundle.properties: -------------------------------------------------------------------------------- 1 | Bundle-Vendor = Eclipse.org - Orion 2 | Bundle-Name = Orion Git UI -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/git-repository.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; 8 | 9 | @import "../orion/compare/compareView.css"; 10 | 11 | @import "css/git.css"; 12 | 13 | @import "../css/theme.css"; 14 | 15 | .tag-description { 16 | white-space: normal; 17 | padding-right: 10px; 18 | min-width: 100px; 19 | max-width: 700px; 20 | } 21 | 22 | .stretch { 23 | float: left; 24 | position: relative; 25 | white-space:normal; 26 | max-width:700px; 27 | } 28 | 29 | .activeBranch { 30 | font-weight: bold; 31 | } 32 | 33 | .gitPanel .sectionWrapper { 34 | margin-top: 40px; 35 | } 36 | 37 | .gitPanel table .sectionWrapper { 38 | margin-top: 20px; 39 | } 40 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/addition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/addition.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/apply-patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/apply-patch.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/branch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/branch-active.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/branch.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/checkout.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/cherry-pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/cherry-pick.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/compare.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/conflict-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/conflict-file.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/fetch.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/file.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/file.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/git.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/git_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/git_sprites.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/git_sprites.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zip git_sprites.zip \ 3 | addition.png \ 4 | apply-patch.png \ 5 | branch.png \ 6 | branch.png \ 7 | checkout.png \ 8 | cherry-pick.png \ 9 | compare.png \ 10 | open.png \ 11 | conflict-file.gif \ 12 | fetch.png \ 13 | file.png \ 14 | incoming-commit.png \ 15 | merge-squash.png \ 16 | merge.png \ 17 | notsure.gif \ 18 | open.png \ 19 | outgoing-commit.png \ 20 | pull.png \ 21 | rebase.png \ 22 | remote.png \ 23 | removal.png \ 24 | repository.png \ 25 | reset.png \ 26 | stage.png \ 27 | tag.png \ 28 | unstage.png 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/incoming-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/incoming-commit.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/merge-squash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/merge-squash.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/merge.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/notsure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/notsure.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/open.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/outgoing-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/outgoing-commit.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/outgoing_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/outgoing_commit.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/pull.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/rebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/rebase.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/remote.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/removal.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/repository.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/reset.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/stage.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/tag.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/images/unstage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.git/web/git/images/unstage.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.git/web/git/plugins/gitPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.help 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Bundle-ManifestVersion: 2 2 | Bundle-Name: %Bundle-Name 3 | Bundle-SymbolicName: org.eclipse.orion.client.help 4 | Bundle-Version: 1.0.0.qualifier 5 | Bundle-Vendor: %Bundle-Vendor 6 | Bundle-Localization: bundle 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | bundle.properties,\ 13 | web/,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/bundle.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Bundle-Vendor = Eclipse.org - Orion 12 | Bundle-Name = Orion Client Help 13 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/help/help.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | @import "../css/ide.css"; 3 | @import "../css/images.css"; 4 | @import "../css/theme.css"; 5 | @import "../settings/settings.css"; /* temporary */ 6 | 7 | html,body { 8 | height: 100%; 9 | } 10 | 11 | .sidebarWrapper > .sidebar { 12 | height: calc(100% - 10px); 13 | width: calc(100% - 10px); 14 | left: 10px; 15 | } 16 | 17 | .workingTarget { 18 | overflow: hidden; 19 | padding: 0; 20 | margin: 0; 21 | top: 0; 22 | } 23 | 24 | .targetSelector { 25 | padding-left: 16px; 26 | } 27 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-0-3-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-0-3-login.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-actions-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-actions-menu.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-banner-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-banner-expanded.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-browserbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-browserbar.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editcss.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-edithtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-edithtml.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editjs.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editorplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-editorplugin.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-findFileName-overal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-findFileName-overal.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-git-log-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-git-log-overview.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-git-status-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-git-status-compare.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-gitmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-gitmenu.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-gitsidebyside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-gitsidebyside.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-hamburger-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-hamburger-invert.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navactions.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navbreadcommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navbreadcommands.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navbreadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navbreadcrumb.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navexport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navexport.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport-dnd-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport-dnd-folder.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport-dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport-dnd.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navimport.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navinitial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-navinitial.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-new-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-new-menu.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-pluginregistry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-pluginregistry.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-relatedpages-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-relatedpages-git.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sampleCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sampleCommands.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sampleSelectionCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sampleSelectionCommands.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-search-page-overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-search-page-overall.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-searchineditor-overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-searchineditor-overall.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-dir-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-dir-index.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-landingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-landingpage.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-site-started.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-sites.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-status-page-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-status-page-overview.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-topbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-topbanner.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-view-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/images/Orion-view-options.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/Orion User Guide/toc: -------------------------------------------------------------------------------- 1 | Getting Started.md 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/helpContent/toc: -------------------------------------------------------------------------------- 1 | Orion User Guide 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.help/web/plugins/helpPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Help Plugin 6 | 7 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.javascript 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.wst.jsdt.core.jsNature 26 | org.eclipse.pde.PluginNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Bundle-ManifestVersion: 2 2 | Bundle-Name: %Bundle-Name 3 | Bundle-SymbolicName: org.eclipse.orion.client.javascript 4 | Bundle-Version: 1.0.0.qualifier 5 | Bundle-Vendor: %Bundle-Vendor 6 | Bundle-Localization: bundle 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | bundle.properties,\ 13 | web/,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/bundle.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Bundle-Vendor = Eclipse.org - Orion 12 | Bundle-Name = Orion Client JavaScript Tools -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/web/javascript/images/javascript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.javascript/web/javascript/images/javascript.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.javascript/web/javascript/images/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.javascript/web/javascript/images/javascript.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.ui 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.wst.jsdt.core.jsNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | pluginProject.extensions=false 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-Localization: bundle 5 | Bundle-Vendor: %Bundle-Vendor 6 | Bundle-SymbolicName: org.eclipse.orion.client.ui 7 | Bundle-Version: 2.0.0.qualifier 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | about.html,\ 3 | bundle.properties,\ 4 | web/ 5 | src.includes = about.html,\ 6 | web/ 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/bundle.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2013 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials are made 4 | # available under the terms of the Eclipse Public License v1.0 5 | # (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 6 | # License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 7 | # 8 | # Contributors: IBM Corporation - initial API and implementation 9 | ############################################################################### 10 | 11 | Bundle-Vendor = Eclipse.org - Orion 12 | Bundle-Name = Orion Client User Interface -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/README.md: -------------------------------------------------------------------------------- 1 | Orion Release Notes for R4.0 2 | ============================ 3 | 4 | Orion 4.0 is to be released at the end of October, 2013 in concert with the EclipseCon Europe. These notes are to record any anomolies which a user might encounter that could impact behaviour but have a workaround or expected outcome. 5 | 6 | * A search on Orion has a limitation of "Whole word" option for DBCS characters [Bug 407258](https://bugs.eclipse.org/bugs/show_bug.cgi?id=407258 "Bug 407258"). This bug is based on a limitation of JavaScript that is not Unicode-aware. 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/androidapp/ic_launcher-web.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/androidapp/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Orion 5 | 6 | 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/androidapp/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/auth/NotifyAuthentication.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Orion authentication 6 | 11 | 12 | 13 |

Authenticated to Orion!

14 | 15 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/browse.css: -------------------------------------------------------------------------------- 1 | @import "fileBrowser.css"; 2 | @import "demo.css"; 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/builder/AlmondBuilder/build.bat: -------------------------------------------------------------------------------- 1 | rmdir /s /q temp 2 | node ./copy/copy.js "D:/JazzIntegration/OrionSource/org.eclipse.orion.client/bundles" 3 | xcopy /y .\temp\browse\builder\i18n.js .\temp\orion 4 | node ./node_modules/requirejs/bin/r.js -o temp/browse/builder/browse.css.build.json cssIn=temp/browse/builder/browseBuilder.css out=output/built-browser.css 5 | cd temp 6 | java -classpath ../builderLibs/js.jar;../builderLibs/compiler.jar org.mozilla.javascript.tools.shell.Main ../builderLibs/r.js -o browse/builder/browse.build.almond-js.js optimize="none" out="../output/built-browser.js" dir= 7 | java -classpath ../builderLibs/js.jar;../builderLibs/compiler.jar org.mozilla.javascript.tools.shell.Main ../builderLibs/r.js -o browse/builder/browse.build.almond-js.js optimize="closure" out="../output/built-browser.min.js" dir= 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/builder/AlmondBuilder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "deferred-fs": ">=0.1.0", 4 | "requirejs": "~2.1.2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/builder/browse.css.build.json: -------------------------------------------------------------------------------- 1 | ({ 2 | optimizeCss: "standard.keepLines", 3 | 4 | closure: { 5 | CompilerOptions: {}, 6 | CompilationLevel: 'SIMPLE_OPTIMIZATIONS', 7 | loggingLevel: 'WARNING' 8 | }, 9 | 10 | pragmas: { 11 | asynchLoader: true 12 | }, 13 | 14 | locale: 'en-us', 15 | inlineText: true, 16 | 17 | baseUrl: '.', 18 | 19 | // set the paths to our library packages 20 | packages: [], 21 | paths: { 22 | text: 'requirejs/text', 23 | i18n: 'requirejs/i18n', 24 | domReady: 'requirejs/domReady' 25 | } 26 | }) -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/builder/browseBuilder.css: -------------------------------------------------------------------------------- 1 | @import "../fileBrowser.css"; 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/demo.css: -------------------------------------------------------------------------------- 1 | .fileBrowserParentOuter{ 2 | /*border: 1px solid;*/ 3 | vertical-align: middle; 4 | border-color: blue; 5 | overflow: hidden; 6 | text-align: left; 7 | margin-left: 15%; 8 | margin-right: 15%; 9 | padding-bottom: 5px; 10 | position: relative; 11 | } 12 | 13 | .fileBrowserParent{ 14 | /*border: 1px solid;*/ 15 | vertical-align: middle; 16 | border-color: blue; 17 | overflow: hidden; 18 | text-align: left; 19 | margin-left: 15%; 20 | margin-right: 15%; 21 | min-height: 50px; 22 | padding-bottom: 5px; 23 | position: relative; 24 | } 25 | 26 | .fileBrowserDemoTextParent{ 27 | border: none; 28 | vertical-align: middle; 29 | overflow: hidden; 30 | text-align: left; 31 | margin-left: 15%; 32 | margin-right: 15%; 33 | padding-bottom: 5px; 34 | position: relative; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/demo/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/demo/built-browser.css: -------------------------------------------------------------------------------- 1 | @import "../fileBrowser.css"; 2 | @import "../demo.css"; 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/browse/fileBrowserAnnotation.css: -------------------------------------------------------------------------------- 1 | .snippetBlock { 2 | background-color: yellow; 3 | } 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/compare-tree/compare-tree.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; 8 | 9 | @import "../orion/compare/compareView.css"; 10 | 11 | @import "../orion/compare/compareTreeExplorer.css"; 12 | 13 | @import "../css/theme.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/compare/builder/compare.build.json: -------------------------------------------------------------------------------- 1 | ({ 2 | baseUrl: '../../', 3 | closure: { 4 | CompilerOptions: {}, 5 | CompilationLevel: 'SIMPLE_OPTIMIZATIONS', 6 | loggingLevel: 'WARNING' 7 | }, 8 | paths: { 9 | text: 'requirejs/text', 10 | i18n: 'requirejs/i18n', 11 | domReady: 'requirejs/domReady' 12 | }, 13 | name: "compare/builder/compare", 14 | preserveLicenseComments: false, 15 | uglify: { 16 | ascii_only: true 17 | }, 18 | wrap: { 19 | start: "/* orion compare */ ", //start cannot be empty 20 | end: " define(['compare/builder/compare'], function(compare) {return compare;});" 21 | } 22 | }) -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/compare/builder/compare.css.build.json: -------------------------------------------------------------------------------- 1 | ({ 2 | optimizeCss: "standard.keepLines", 3 | 4 | closure: { 5 | CompilerOptions: {}, 6 | CompilationLevel: 'SIMPLE_OPTIMIZATIONS', 7 | loggingLevel: 'WARNING' 8 | }, 9 | 10 | pragmas: { 11 | asynchLoader: true 12 | }, 13 | 14 | locale: 'en-us', 15 | inlineText: true, 16 | 17 | baseUrl: '.', 18 | 19 | // set the paths to our library packages 20 | packages: [], 21 | paths: { 22 | text: 'requirejs/text', 23 | i18n: 'requirejs/i18n', 24 | domReady: 'requirejs/domReady' 25 | } 26 | }) -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/compare/builder/compareBuilder.css: -------------------------------------------------------------------------------- 1 | @import "../compare.css"; 2 | @font-face { 3 | font-family: 'Orion Icon Font'; 4 | src: url('OrionIconFont-Regular.eot'); /* IE9 Compat Modes */ 5 | src: url('OrionIconFont-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 6 | url('OrionIconFont-Regular.woff') format('woff'), /* Modern Browsers */ 7 | url('OrionIconFont-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ 8 | url('OrionIconFont-Regular.svg#04b530a8db6e0f4a0fdb83697b7ace5f') format('svg'); /* Legacy iOS */ 9 | 10 | font-style: normal; 11 | font-weight: 400; 12 | } 13 | 14 | 15 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/compare/compare.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../orion/compare/compareView.css"; 8 | 9 | @import "../css/theme.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/content/content.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/theme.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/content/exit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Plugin Content 6 | 7 | 8 | 21 | 22 | 23 |
24 |
Content window has been closed.
25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/content/saveHook.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Plugin Content 6 | 7 | 8 | 22 | 23 | 24 |
25 |
Handling save request
26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/css/customide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/css/customide.css -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/css/ide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Items that should appear on top of other orion visual components should have a z-index of 100 or greater. 3 | */ 4 | 5 | @import "./progress.css"; 6 | @import "./assistance.css"; 7 | @import "../font/font.css"; 8 | @import "./pages.css"; 9 | @import "./controls.css"; 10 | 11 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/css/wizard.css: -------------------------------------------------------------------------------- 1 | .wizardPage { 2 | padding: 15px; 3 | overflow: auto; 4 | } 5 | 6 | .wizardCommonPane { 7 | border-top: 1px solid #eee; 8 | padding: 15px; 9 | width: 370px; 10 | } 11 | 12 | .wizardButtonRow { 13 | padding: 10px 20px 20px; 14 | text-align: right; 15 | } 16 | 17 | .wizardButtonRow .okButton{ 18 | background-color: #7fa4c0; 19 | border: 1px solid #7fa4c0; 20 | color: white; 21 | } 22 | 23 | .wizardButtonRow button:not(:last-child){ 24 | margin-right: 12px; 25 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/content/imageViewerPlugin.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | width: 100%; 3 | height: 100%; 4 | margin: 0; 5 | overflow: hidden; 6 | } 7 | 8 | .imageContainer { 9 | position: relative; 10 | } 11 | 12 | .imageContent { 13 | height: 100%; 14 | width: 100%; 15 | } 16 | 17 | .imageTitle { 18 | font: 9pt Arial,Helvetica,Myriad,Tahoma,clean,sans-serif, Lucida Sans Unicode,Lucida Grande,Verdana; 19 | height: 25px; 20 | } 21 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/content/images/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/edit/content/images/boolean.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/content/images/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/edit/content/images/number.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/content/images/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/edit/content/images/string.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/content/jsonEditorPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | JSON Editor 8 | 9 | 10 | 22 | 23 | 24 | Loading... 25 | 26 | 27 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/edit.css: -------------------------------------------------------------------------------- 1 | @import "../orion/webui/Slideout.css"; 2 | 3 | @import "../orion/search/InlineSearchPane.css"; 4 | 5 | @import "common.css"; 6 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/edit/readonly.css: -------------------------------------------------------------------------------- 1 | @import "common.css"; 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/error.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/examplePages/leftrightpanes.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; /* Currently the page css has to know the dependencies of its modules. */ 8 | 9 | @import "../css/theme.css"; 10 | 11 | /* Page specific CSS goes below inline */ -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/examplePages/singlepane.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/theme.css"; 8 | 9 | /* Page specific CSS goes below inline */ -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/favicon.ico -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.eot -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.ttf -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/font/OrionIconFont-Regular.woff -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/font/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Orion Icon Font'; 3 | src: url('OrionIconFont-Regular.eot'); /* IE9 Compat Modes */ 4 | src: url('OrionIconFont-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('OrionIconFont-Regular.woff') format('woff'), /* Modern Browsers */ 6 | url('OrionIconFont-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ 7 | url('OrionIconFont-Regular.svg#04b530a8db6e0f4a0fdb83697b7ace5f') format('svg'); /* Legacy iOS */ 8 | 9 | font-style: normal; 10 | font-weight: 400; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/help.css: -------------------------------------------------------------------------------- 1 | 2 | .gcli-help-name { 3 | text-align: end; 4 | } 5 | 6 | .gcli-help-arrow { 7 | color: #AAA; 8 | } 9 | 10 | .gcli-help-description { 11 | margin: 0 20px; 12 | padding: 0; 13 | } 14 | 15 | .gcli-help-parameter { 16 | margin: 0 30px; 17 | padding: 0; 18 | } 19 | 20 | .gcli-help-header { 21 | margin: 10px 0 6px; 22 | } 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_list.css: -------------------------------------------------------------------------------- 1 | 2 | .gcli-pref-list-scroller { 3 | max-height: 200px; 4 | overflow-y: auto; 5 | overflow-x: hidden; 6 | display: inline-block; 7 | } 8 | 9 | .gcli-pref-list-table { 10 | width: 500px; 11 | table-layout: fixed; 12 | } 13 | 14 | .gcli-pref-list-table tr > th { 15 | text-align: left; 16 | } 17 | 18 | .gcli-pref-list-table tr > td { 19 | text-overflow: elipsis; 20 | word-wrap: break-word; 21 | } 22 | 23 | .gcli-pref-list-name { 24 | width: 70%; 25 | } 26 | 27 | .gcli-pref-list-command { 28 | display: none; 29 | } 30 | 31 | .gcli-pref-list-row:hover .gcli-pref-list-command { 32 | display: inline-block; 33 | } 34 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_list_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_list_edit.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_list_inner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 |
${preference.name} 9 | ${preference.value} 10 | 11 |
14 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_list_outer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | ${l10n.prefOutputFilter}: 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
${l10n.prefOutputName}${l10n.prefOutputValue}
16 |
17 | 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/commands/pref_set_check.html: -------------------------------------------------------------------------------- 1 |
2 |

${l10n.prefSetCheckHeading}

3 |

${l10n.prefSetCheckBody}

4 | 5 |
6 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/arg_fetch.css: -------------------------------------------------------------------------------- 1 | 2 | .gcli-argfetch { 3 | width: 100%; 4 | -moz-box-sizing: border-box; 5 | } 6 | 7 | .gcli-af-cmddesc { 8 | font-weight: bold; 9 | text-align: center; 10 | margin-bottom: 5px; 11 | padding: 3px 10px 0; 12 | } 13 | 14 | .gcli-af-params { 15 | padding: 0 10px; 16 | width: 100%; 17 | -moz-box-sizing: border-box; 18 | } 19 | 20 | .gcli-af-paramname { 21 | text-align: right; 22 | font-size: 90%; 23 | } 24 | 25 | .gcli-af-required { 26 | font-size: 90%; 27 | color: #f66; 28 | -moz-padding-start: 5px; 29 | -webkit-padding-start: 5px; 30 | } 31 | 32 | .gcli-af-error { 33 | font-size: 80%; 34 | color: #900; 35 | } 36 | 37 | .gcli-af-submit { 38 | text-align: right; 39 | } 40 | 41 | .gcli-field { 42 | width: 100%; 43 | } 44 | 45 | .gcli-field-javascript { 46 | margin-bottom: 0; 47 | } 48 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/completer.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | ${member.string} 5 | 6 | ${directTabText} 7 | ${param} 8 | ${arrowTabText} 9 | } 10 | 11 |
12 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/display.css: -------------------------------------------------------------------------------- 1 | 2 | .gcli-output { 3 | height: 100%; 4 | overflow-x: hidden; 5 | overflow-y: auto; 6 | font-family: Segoe UI, Helvetica Neue, Verdana, Arial, sans-serif; 7 | } 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/display.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/fields/menu.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 6 | 7 | 8 | 9 |
${item.name}${item.description}
10 |
${l10n.fieldMenuMore}
11 |
12 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/closer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/closer.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/dot_clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/dot_clear.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/minus.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinaction.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinin.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pinout.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/pins.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/plus.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/images/throbber.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/intro.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |

${l10n.introTextOpening2}

4 | 5 |

6 | ${l10n.introTextCommands} 7 | help${l10n.introTextKeys2} 9 | ${l10n.introTextF1Escape}. 10 |

11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/gcli/gcli/ui/tooltip.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
${description}
4 | ${field.element} 5 |
${assignment.conversion.message}
6 |
7 |
8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/addcontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/addcontent.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/applicationRunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/applicationRunning.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/applicationStopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/applicationStopped.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/check.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/check_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/check_on.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/cherry.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/close.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/closedarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/closedarrow.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/collapseAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/collapseAll.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/compare-addition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/compare-addition.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/compare-removal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/compare-removal.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/copy-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/copy-folder.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/core_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/core_sprites.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/core_sprites.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zip core_sprites.zip \ 3 | addcontent.png \ 4 | check.gif \ 5 | check_on.gif \ 6 | close.gif \ 7 | closedarrow.png \ 8 | collapseAll.png \ 9 | compare-addition.gif \ 10 | compare-removal.gif \ 11 | copy-folder.png \ 12 | delete.png \ 13 | downarrow.gif \ 14 | edit.png \ 15 | error.png \ 16 | expandAll.png \ 17 | file.png \ 18 | file_model.gif \ 19 | folder.png \ 20 | gear.png \ 21 | go-down.png \ 22 | go-up.png \ 23 | hamburger.png \ 24 | information.png \ 25 | initproject.png \ 26 | leftarrow.png \ 27 | link.png \ 28 | list.png \ 29 | move-down.png \ 30 | move-up.png \ 31 | none.png \ 32 | ok.gif \ 33 | openarrow.png \ 34 | orion-logo.png \ 35 | outline.png \ 36 | refresh.png \ 37 | replaceAll.gif \ 38 | rightarrow.png \ 39 | sep.gif \ 40 | silhouette.png \ 41 | start.gif \ 42 | stop.gif \ 43 | thumbnail.png \ 44 | warning.gif \ 45 | wrench.png 46 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/css.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/delete.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/diff-border-sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/diff-border-sel.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/diff-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/diff-border.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/diff-empty-add-word-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/diff-empty-add-word-border.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/diff-empty-del-word-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/diff-empty-del-word-border.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/diff-empty-word-border-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/diff-empty-word-border-black.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/downarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/downarrow.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/edit.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/edit.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/error.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/error.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/expandAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/expandAll.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/file.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/file_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/file_model.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/folder.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/gear-white.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/gear.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/glass.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/go-down.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/go-up.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/hamburger-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/hamburger-dark.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/hamburger.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/html.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/info.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/information.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/initproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/initproject.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/leftarrow.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/link.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/list.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/makeFavorite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/makeFavorite.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/move-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/move-down.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/move-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/move-up.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/ok.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/openarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/openarrow.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/orion-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/orion-footer.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/orion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/orion-logo.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/orion-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/orion-transparent.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/outline.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/placeholder.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/problem.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/progress_running.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/progress_running.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/progress_running_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/progress_running_dark.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/refresh.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/replaceAll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/replaceAll.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/rightarrow.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/sep.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/share.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/shell.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/silhouette-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/silhouette-dark.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/silhouette.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/sites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/sites.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/splitterleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/splitterleft.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/splitterright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/splitterright.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/start.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/stop.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/success.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/thumbnail.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/add-test-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/add-test-config.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/del-test-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/del-test-config.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/edit-test-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/edit-test-config.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_fail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_fail.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_fail.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_succeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/test_succeed.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/testerr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/testerr.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/testfail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/testfail.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/testok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/testok.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/unit_test/unit-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/unit_test/unit-test.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/user.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/warning.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/wrench-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/wrench-white.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/wrench.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/wtp/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/wtp/image.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/wtp/json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/wtp/json.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/wtp/xmlfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/wtp/xmlfile.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/images/xmlfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/images/xmlfile.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/import/orion-override/defaults-import.pref: -------------------------------------------------------------------------------- 1 | { 2 | "/import-plugins":{ 3 | "plugins/authenticationPlugin.html": true, 4 | "plugins/fileClientPlugin.html": true, 5 | "profile/userservicePlugin.html": true 6 | } 7 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/index.css: -------------------------------------------------------------------------------- 1 | @import "css/ide.css"; 2 | 3 | @import "css/images.css"; 4 | 5 | @import "css/theme.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Welcome to Orion 8 | 9 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/js-tests/ui/githubfileapi/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/js-tests/ui/searchRendering/disabled-test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/js-tests/ui/webdav/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/combined.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/orion-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/orion-transparent.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/orionsnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/orionsnap.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/platforms6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/platforms6.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/css/welcome.jpg -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/buttonEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/buttonEnabled.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/buttonHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/buttonHover.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/close-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/close-tab.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/error_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/error_tsk.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/google.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/info_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/info_tsk.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/openid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/openid.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/or.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/orion-small-lightondark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/orion-small-lightondark.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/orion-transparent-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/orion-transparent-large.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/oriongrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/oriongrey.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/persona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/persona.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/rss16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/rss16.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/mixloginstatic/images/twitter.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/mixloginstatic/manageExternalIds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 23 | 24 | 25 |
26 |
27 |
28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/operations/list.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/theme.css"; 8 | 9 | #tasks-list{ 10 | padding: 10px; 11 | } 12 | 13 | th { 14 | text-align: left; 15 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/banner/CommandSlideout.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/banner/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/banner/toolbar.html: -------------------------------------------------------------------------------- 1 |
    2 |
      3 | 4 |
      5 |
        6 |
        7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/compare/compareTreeExplorer.css: -------------------------------------------------------------------------------- 1 | .compare_tree_grid { 2 | padding-left: 12px; 3 | padding-bottom: 4px; 4 | text-align: left; 5 | } 6 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/compare/examples/demo.css: -------------------------------------------------------------------------------- 1 | @import "../../../compare/compare.css"; 2 | 3 | .compareContainer { 4 | position: absolute; 5 | top: 130px; /* $ToolbarHeight + 1 */ 6 | bottom: 0; 7 | width: 99%; 8 | overflow-y: auto; 9 | margin-left:5px; 10 | border:1px solid #bebebe; 11 | } 12 | 13 | body { 14 | margin: 0; 15 | padding: 0; 16 | overflow: hidden; 17 | background-color: #ededed; 18 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/crawler/nls/root/messages.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * @license 3 | * Copyright (c) 2012 IBM Corporation and others. 4 | * All rights reserved. This program and the accompanying materials are made 5 | * available under the terms of the Eclipse Public License v1.0 6 | * (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 7 | * License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 8 | * 9 | ******************************************************************************/ 10 | 11 | //NLS_CHARSET=UTF-8 12 | /*eslint-env browser, amd*/ 13 | define({ 14 | "filesFound": "${0} files found out of ${1}", 15 | "searchCancelled": "Search cancelled by user", 16 | "Cancel": "Cancel" 17 | }); -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/customGlobalCommands.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * @license Copyright (c) 2013 IBM Corporation and others. All rights 3 | * reserved. This program and the accompanying materials are made 4 | * available under the terms of the Eclipse Public License v1.0 5 | * (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse 6 | * Distribution License v1.0 7 | * (http://www.eclipse.org/org/documents/edl-v10.html). 8 | * 9 | * Contributors: IBM Corporation - initial API and implementation 10 | ******************************************************************************/ 11 | /*eslint-env browser, amd*/ 12 | 13 | define([], 14 | function(){ 15 | return {}; 16 | }); -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/globalSearch/search-features.html: -------------------------------------------------------------------------------- 1 |
        2 |
        3 |
        4 |
        5 |
        6 |
        7 |
        8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/shell/Shell.css: -------------------------------------------------------------------------------- 1 | .orion .gcli-menu-field { 2 | border: 0; 3 | } 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/terminal/nls/root/messages.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * @license 3 | * Copyright (c) 2014 IBM Corporation and others. 4 | * All rights reserved. This program and the accompanying materials are made 5 | * available under the terms of the Eclipse Public License v1.0 6 | * (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 7 | * License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 8 | * 9 | ******************************************************************************/ 10 | 11 | //NLS_CHARSET=UTF-8 12 | /*eslint-env browser, amd*/ 13 | define({ 14 | "Terminal": "Terminal", 15 | "Open Terminal page": "Open the Terminal page.", 16 | "Open Terminal page pwd": "Open the Terminal page with this folder as the current directory." 17 | }); 18 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/Slideout.html: -------------------------------------------------------------------------------- 1 |
        2 | 3 |
        4 |
        5 |
        -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/checkedmenuitem.html: -------------------------------------------------------------------------------- 1 |
      • -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/dialogs/confirmdialog.html: -------------------------------------------------------------------------------- 1 |
        2 |
        ${ConfirmMessage}
        3 |
        -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/dialogs/promptdialog.html: -------------------------------------------------------------------------------- 1 |
        2 |
        ${PromptMessage}
        3 | 4 |
        -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/dropdownseparator.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/dropdowntriggerbutton.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/dropdowntriggerbuttonwitharrow.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/webui/submenutriggerbutton.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/browse/repoAndBaseUrlTrigger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/browse/repoUrlTrigger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/browse/shareCodeTrigger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/browse/shareSnippetTrigger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/input/ComboTextInput.html: -------------------------------------------------------------------------------- 1 |
        2 | 3 | 6 | 7 |
        -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/orion/widgets/settings/orion-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/orion/widgets/settings/orion-transparent.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/HoverTestPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hover Test Plugin 6 | 7 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/HoverTestPlugin2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hover Test Plugin 6 | 7 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/authenticationPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/contentTemplates/helloWorld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/plugins/contentTemplates/helloWorld.zip -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/contentTemplates/pluginHelloWorld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/plugins/contentTemplates/pluginHelloWorld.zip -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/contentTemplates/readme.txt: -------------------------------------------------------------------------------- 1 | This directory contains zip files that are used to generate web site templates in the "Create New Content" extension. -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/delimiterPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/fileClientPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/gitBlamePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Git Blame Plugin 6 | 7 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/plugins/images/upload.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/jslintPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JSLint plugin 5 | 6 | 7 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/lowerPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/nonnlsPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/npmPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Orion NPM plugin 6 | 7 | 8 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/pageLinksPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Page Links Plugin 6 | 7 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/preferencesPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/site/sitePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/taskPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/unittestPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/upperPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/plugins/webEditingPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Web Editing Plugin 6 | 7 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/server-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "README.TXT" : "Each message needs to have a title, startdate, enddate and description field. Only the first message can be displayed on the login screen.", 3 | "messages" : [ 4 | ], 5 | "example-messages" : [ 6 | { 7 | "title" : "This is the title of the server message", 8 | "startdate" : "2012/10/22", 9 | "enddate" : "2012/10/23", 10 | "description" : "This is the longer description of the message. You can see that this message will be displayed from October 22nd until the end of October 23rd." 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/shell/plugins/shellLogProviderPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Shell Log Provider Plugin 6 | 7 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/shell/plugins/shellPagePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Shell Page Plugin 6 | 7 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/shell/shellPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 23 | 24 | 25 |

        Shell Plugin

        26 | 27 | 28 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/sites/site.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; 8 | 9 | @import "./siteEditor.css"; 10 | 11 | @import "../css/theme.css"; 12 | 13 | html,body { 14 | height: 100%; 15 | } 16 | 17 | .statusPane { 18 | font-weight: bold; 19 | } 20 | 21 | .sitePanel { 22 | min-width: 800px; 23 | } 24 | 25 | .invalid { 26 | border: 2px solid red; 27 | } 28 | 29 | .nameInvalid, .hostInvalid { 30 | visibility: hidden; 31 | } 32 | 33 | .visible { 34 | visibility: visible; 35 | } 36 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/sites/view.css: -------------------------------------------------------------------------------- 1 | @import "sites.css"; 2 | 3 | .viewOnSiteTable { 4 | max-width: 700px; 5 | } 6 | 7 | .pageLayoutTarget { 8 | padding: 10px; 9 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/stringexternalizer/strExternalizer.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; 8 | 9 | @import "../orion/compare/compareView.css"; 10 | 11 | @import "../orion/globalSearch/globalSearch.css"; 12 | 13 | @import "../css/theme.css"; -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/terminal/plugins/terminalPagePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Shell Page Plugin 6 | 7 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/terminal/terminal.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | @import "../css/ide.css"; 3 | @import "../css/images.css"; 4 | @import "../css/theme.css"; 5 | 6 | .toolbarTarget { 7 | overflow: hidden; 8 | margin-top: 10px; 9 | } 10 | 11 | .terminal { 12 | position: absolute; 13 | top: 0; 14 | bottom: 0; 15 | left: 0; 16 | right: 0; 17 | } 18 | 19 | .terminal-cursor { 20 | color: #000000; 21 | background: #f0f0f0; 22 | } 23 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/webapp/orion-128.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/webapp/orion-16.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/webapp/orion-32.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/webapp/orion-48.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/bundles/org.eclipse.orion.client.ui/web/webapp/orion-96.png -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Install Orion as Web Application 6 | 7 | 8 | 9 | 10 |
        11 |
        12 |

        Install Orion as a Web Application

        13 |

        This will create a link on your Web Applications Page to launch the Orion development platform

        14 |
        15 | 16 |
        17 |
        18 | 19 | 20 | 21 |
        22 |
        23 | 24 |
        25 |
        26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orion-manifest.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.0", 3 | "name": "Orion Cloud Development Environment", 4 | "description": "Orion is a Cloud based Development Environment", 5 | "icons": { 6 | "16": "/webapp/orion-16.png", 7 | "32": "/webapp/orion-32.png", 8 | "48": "/webapp/orion-128.png", 9 | "96": "/webapp/orion-96.png", 10 | "128": "/webapp/orion-128.png" 11 | }, 12 | "developer": { 13 | "name": "Eclipse Foundation", 14 | "url": "http://wiki.eclipse.org/Orion" 15 | }, 16 | "installs_allowed_from": ["*"], 17 | "launch_path": "/" 18 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orionhub-app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Install OrionHub as Web Application 6 | 7 | 8 | 9 | 10 |
        11 |
        12 |

        Install OrionHub as a Web Application

        13 |

        This will create a link on your Web Applications Page to launch the OrionHub development platform

        14 |
        15 | 16 |
        17 |
        18 | 19 | 20 | 21 |
        22 |
        23 | 24 |
        25 |
        26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.ui/web/webapp/orionhub-manifest.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.0", 3 | "name": "OrionHub Cloud Development Environment", 4 | "description": "OrionHub is a Cloud based Development Environment", 5 | "icons": { 6 | "16": "/webapp/orion-16.png", 7 | "32": "/webapp/orion-32.png", 8 | "48": "/webapp/orion-128.png", 9 | "96": "/webapp/orion-96.png", 10 | "128": "/webapp/orion-128.png" 11 | }, 12 | "developer": { 13 | "name": "Eclipse Foundation", 14 | "url": "http://wiki.eclipse.org/Orion" 15 | }, 16 | "installs_allowed_from": ["*"], 17 | "launch_path": "/" 18 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.users 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.wst.jsdt.core.jsNature 21 | org.eclipse.pde.PluginNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 18 14:23:15 CET 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.6 9 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 18 14:23:15 CET 2011 2 | eclipse.preferences.version=1 3 | pluginProject.extensions=false 4 | resolve.requirebundle=false 5 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Bundle-Vendor: %Bundle-Vendor 5 | Bundle-Localization: bundle 6 | Bundle-SymbolicName: org.eclipse.orion.client.users 7 | Bundle-Version: 1.0.0.qualifier 8 | Bundle-ActivationPolicy: lazy 9 | Require-Bundle: org.eclipse.orion.client.core;bundle-version="0.1.0" 10 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2011 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials are made 4 | # available under the terms of the Eclipse Public License v1.0 5 | # (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution 6 | # License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). 7 | # 8 | # Contributors: IBM Corporation - initial API and implementation 9 | # 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | web/,\ 13 | bundle.properties,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/bundle.properties: -------------------------------------------------------------------------------- 1 | Bundle-Vendor = Eclipse.org - Orion 2 | Bundle-Name = Orion User UI -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/web/profile/user-list.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "css/user.css"; 8 | 9 | @import "../css/theme.css"; 10 | 11 | th { 12 | text-align: left; 13 | } -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/web/profile/user-profile.css: -------------------------------------------------------------------------------- 1 | @import "../css/layout.css"; 2 | 3 | @import "../css/ide.css"; 4 | 5 | @import "../css/images.css"; 6 | 7 | @import "../css/sections.css"; 8 | 9 | @import "../css/theme.css"; 10 | 11 | .userInput { 12 | min-width: 200px; 13 | } 14 | 15 | .userLabel { 16 | min-width: 100px; 17 | } 18 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.users/web/profile/userservicePlugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.orion.client.webtools 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.jsdt.core.javascriptValidator 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.wst.jsdt.core.jsNature 26 | org.eclipse.pde.PluginNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Bundle-ManifestVersion: 2 2 | Bundle-Name: %Bundle-Name 3 | Bundle-SymbolicName: org.eclipse.orion.client.webtools 4 | Bundle-Version: 1.0.0.qualifier 5 | Bundle-Vendor: %Bundle-Vendor 6 | Bundle-Localization: bundle 7 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | bundle.properties,\ 13 | web/,\ 14 | about.html 15 | src.includes = web/,\ 16 | about.html 17 | -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/bundle.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2014 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Bundle-Vendor = Eclipse.org - Orion 12 | Bundle-Name = Orion Client Web Tools -------------------------------------------------------------------------------- /bundles/org.eclipse.orion.client.webtools/web/js-tests/webtools/webtoolsMochaTests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Webtools Mocha Tests 5 | 6 | 7 | 27 | 28 | 29 |
        30 |

        Webtools Mocha Tests

        31 |
        32 | 33 | -------------------------------------------------------------------------------- /godoc-templates/callgraph.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /godoc-templates/codewalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/codewalk.html -------------------------------------------------------------------------------- /godoc-templates/codewalkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/codewalkdir.html -------------------------------------------------------------------------------- /godoc-templates/dirlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/dirlist.html -------------------------------------------------------------------------------- /godoc-templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/error.html -------------------------------------------------------------------------------- /godoc-templates/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/example.html -------------------------------------------------------------------------------- /godoc-templates/implements.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /godoc-templates/methodset.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /godoc-templates/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/opensearch.xml -------------------------------------------------------------------------------- /godoc-templates/package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/package.txt -------------------------------------------------------------------------------- /godoc-templates/search.html: -------------------------------------------------------------------------------- 1 | 6 | {{$query_url := urlquery .Query}} 7 | {{with .Alert}} 8 |

        9 | {{html .}} 10 |

        11 | {{end}} 12 | {{with .Alt}} 13 |

        14 | Did you mean: 15 | {{range .Alts}} 16 | {{html .}} 17 | {{end}} 18 |

        19 | {{end}} 20 | {{with .Pak}} 21 |

        Package {{html $.Query}}

        22 |

        23 | 24 | {{range .}} 25 | {{$pkg_html := pkgLink .Pak.Path | html}} 26 | 27 | {{end}} 28 |
        {{$pkg_html}}
        29 |

        30 | {{end}} 31 | 32 | -------------------------------------------------------------------------------- /godoc-templates/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/godoc-templates/search.txt -------------------------------------------------------------------------------- /godoc-templates/searchcode.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /godoc-templates/searchdoc.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /godoc-templates/searchtxt.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | {"Name": "sirnewton | godev"} -------------------------------------------------------------------------------- /screenshots/contentAssist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/contentAssist.png -------------------------------------------------------------------------------- /screenshots/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/markers.png -------------------------------------------------------------------------------- /screenshots/quickGoDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/quickGoDoc.png -------------------------------------------------------------------------------- /screenshots/quickRun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/quickRun.png -------------------------------------------------------------------------------- /screenshots/richDebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/richDebug.png -------------------------------------------------------------------------------- /screenshots/richGodocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/richGodocs.png -------------------------------------------------------------------------------- /screenshots/toolsMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirnewton01/godev/8d1d9f22b8f5981933dcbd960d55df55a29d1bb7/screenshots/toolsMenu.png -------------------------------------------------------------------------------- /terminal-unix.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 Chris McGee . All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build linux darwin 6 | 7 | package main 8 | 9 | import ( 10 | "io" 11 | "os/exec" 12 | 13 | "github.com/kr/pty" 14 | ) 15 | 16 | func createShellCommand() *exec.Cmd { 17 | return exec.Command("sh") 18 | } 19 | 20 | func start(c *exec.Cmd) (io.ReadCloser, io.WriteCloser, error) { 21 | f, err := pty.Start(c) 22 | 23 | return f, f, err 24 | } -------------------------------------------------------------------------------- /tests/go-test_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "testing" 6 | "time" 7 | ) 8 | 9 | func Test1(t *testing.T) { 10 | t.Logf("Here is some info: %v", "info") 11 | t.Errorf("An error has occurred") 12 | } 13 | 14 | func TestRace(t *testing.T) { 15 | done := make(chan bool) 16 | m := make(map[string]string) 17 | m["name"] = "world" 18 | go func() { 19 | m["name"] = "data race" 20 | done <- true 21 | }() 22 | fmt.Println("Hello,", m["name"]) 23 | <-done 24 | } 25 | 26 | func TestRace2(t *testing.T) { 27 | done := make(chan bool) 28 | m := make(map[string]string) 29 | m["name"] = "world" 30 | go func() { 31 | m["name"] = "data race" 32 | done <- true 33 | }() 34 | fmt.Println("Hello,", m["name"]) 35 | <-done 36 | 37 | <-time.After(2 * time.Second) 38 | } 39 | -------------------------------------------------------------------------------- /tests/syntax-hightlight-2.go: -------------------------------------------------------------------------------- 1 | // COPYRIGHT 2 | 3 | // GODOC 4 | package main 5 | 6 | import "fmt" 7 | 8 | // Verify the bracket highlighting for the main2 function block 9 | func main2() { 10 | // Verify that the brackets do not highlight within the string 11 | fmt.Printf("Hello()") 12 | 13 | // Verify that the brackets do not hightlight (within this comment) 14 | 15 | // Verify the bracket highlighting in here and the multi-line string is working ok 16 | h := &hello2{`Hello World // comment 7 17 | again and again plus an import`, 42} // comment 6 18 | h.ab() 19 | } 20 | -------------------------------------------------------------------------------- /tests/test-run.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "time" 6 | ) 7 | 8 | type hello struct { 9 | msg string 10 | id int 11 | } 12 | 13 | func printHello() { 14 | h := &hello{"Hello World-1", 42} 15 | fmt.Printf("%v\n", h) 16 | 17 | fmt.Errorf("fmt") 18 | fmt.Errorf("runtime/debug") 19 | } 20 | 21 | func main() { 22 | for i := 0; i < 50; i++ { 23 | printHello2() 24 | time.Sleep(1 * time.Second) 25 | } 26 | } 27 | --------------------------------------------------------------------------------