forked from pjanik/orion.client
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Bug 427065 - Support Go language
- Loading branch information
1 parent
dd33bdd
commit c8a1a1e
Showing
13 changed files
with
559 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <projectDescription> | ||
| <name>org.eclipse.orion.client.golang</name> | ||
| <comment></comment> | ||
| <projects> | ||
| </projects> | ||
| <buildSpec> | ||
| <buildCommand> | ||
| <name>org.eclipse.wst.jsdt.core.javascriptValidator</name> | ||
| <arguments> | ||
| </arguments> | ||
| </buildCommand> | ||
| <buildCommand> | ||
| <name>org.eclipse.pde.ManifestBuilder</name> | ||
| <arguments> | ||
| </arguments> | ||
| </buildCommand> | ||
| <buildCommand> | ||
| <name>org.eclipse.pde.SchemaBuilder</name> | ||
| <arguments> | ||
| </arguments> | ||
| </buildCommand> | ||
| </buildSpec> | ||
| <natures> | ||
| <nature>org.eclipse.wst.jsdt.core.jsNature</nature> | ||
| <nature>org.eclipse.pde.PluginNature</nature> | ||
| </natures> | ||
| </projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Bundle-ManifestVersion: 2 | ||
| Bundle-Name: %Bundle-Name | ||
| Bundle-SymbolicName: org.eclipse.orion.client.golang | ||
| Bundle-Version: 1.0.0.qualifier | ||
| Bundle-Vendor: %Bundle-Vendor | ||
| Bundle-Localization: bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
| <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| <head> | ||
| <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/> | ||
| <title>About</title> | ||
| </head> | ||
| <body lang="EN-US"> | ||
| <h2>About This Content</h2> | ||
|
|
||
| <p>January 30, 2014</p> | ||
| <h3>License</h3> | ||
|
|
||
| <p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise | ||
| indicated below, the Content is provided to you under the terms and conditions of the | ||
| Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available | ||
| at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>. | ||
| For purposes of the EPL, "Program" will mean the Content.</p> | ||
|
|
||
| <p>If you did not receive this Content directly from the Eclipse Foundation, the Content is | ||
| being redistributed by another party ("Redistributor") and different terms and conditions may | ||
| apply to your use of any object code in the Content. Check the Redistributor's license that was | ||
| provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise | ||
| indicated below, the terms and conditions of the EPL still apply to any source code in the Content | ||
| and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p> | ||
|
|
||
| </body> | ||
| </html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| bin.includes = META-INF/,\ | ||
| bundle.properties,\ | ||
| web/ | ||
| src.includes = web/,\ | ||
| about.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #Properties file for org.eclipse.orion.client.golang | ||
| Bundle-Vendor = Eclipse.org | ||
| Bundle-Name = Orion Go Tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| Copyright (C) 2014, IBM Corporation and others. | ||
| All rights reserved. This program and the accompanying materials | ||
| are made available under the terms of the Eclipse Public License v1.0 | ||
| (http://www.eclipse.org/legal/epl-v10.html), | ||
| and the Eclipse Distribution License v1.0 | ||
| (http://www.eclipse.org/org/documents/edl-v10.html). | ||
| Contributors: | ||
| IBM Corporation - initial implementation | ||
| --> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <groupId>org.eclipse.orion</groupId> | ||
| <artifactId>org.eclipse.orion.client.golang</artifactId> | ||
| <version>1.0.0-SNAPSHOT</version> | ||
| <packaging>eclipse-plugin</packaging> | ||
|
|
||
| <parent> | ||
| <groupId>org.eclipse.orion</groupId> | ||
| <artifactId>org.eclipse.orion.client.parent</artifactId> | ||
| <version>1.0.0-SNAPSHOT</version> | ||
| <relativePath>../..</relativePath> | ||
| </parent> | ||
|
|
||
| </project> |
58 changes: 58 additions & 0 deletions
58
bundles/org.eclipse.orion.client.golang/web/golang/plugins/go-core.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="copyright" content="Copyright (c) IBM Corporation and others 2014."> | ||
| <title>Go Language Core Plugin</title> | ||
| <script src="../../requirejs/require.js"></script> | ||
| <script type="text/javascript"> | ||
| /*global require */ | ||
| require({ | ||
| baseUrl: '../../', | ||
| paths: { | ||
| domReady: 'requirejs/domReady' | ||
| } | ||
| }); | ||
|
|
||
| require(['go-core.js']); | ||
| </script> | ||
| </head> | ||
| <body id="orion-settings" class="orionPage" style="padding: 10px;"> | ||
| <h2>Go Language Core Plugin</h2> | ||
| <p> | ||
| This plugin provides the following capabilities: | ||
| </p> | ||
| <ul> | ||
| <li>Editor - an editor with syntax highlighting</li> | ||
| <li>Content Assist Templates - templates for common control structures (if, switch, select, etc.)</li> | ||
| </ul> | ||
| <p>January 30, 2014</p> | ||
|
|
||
| <div class="split-selection-table"> | ||
| <div class="sectionWrapper toolComposite" style="margin: 15px 30px 0px 15px; max-width: 600px;"> | ||
| <div class="sectionAnchor sectionTitle layoutLeft"> | ||
| License | ||
| </div> | ||
| </div> | ||
| <div class="sections sectionTable" style="margin: 0px 30px 0px 15px; padding-left: 6px; padding-right: 6px; max-width: 600px;"> | ||
| <p> | ||
| The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise | ||
| indicated below, the Content is provided to you under the terms and conditions of the | ||
| <a href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License Version 1.0</a> | ||
| ("EPL"), and the <a href="http://www.eclipse.org/org/documents/edl-v10.html"> | ||
| Eclipse Distribution License Version 1.0</a> ("EDL"). | ||
| For purposes of the EPL and EDL, "Program" will mean the Content. | ||
| </p> | ||
|
|
||
| <p> | ||
| If you did not receive this Content directly from the Eclipse Foundation, the Content is | ||
| being redistributed by another party ("Redistributor") and different terms and conditions may | ||
| apply to your use of any object code in the Content. Check the Redistributor's license that was | ||
| provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise | ||
| indicated below, the terms and conditions of the EPL still apply to any source code in the Content | ||
| and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </body> | ||
| </html> |
Oops, something went wrong.