Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 427065 - Support Go language
  • Loading branch information
sirnewton01 committed Jan 31, 2014
1 parent dd33bdd commit c8a1a1e
Show file tree
Hide file tree
Showing 13 changed files with 559 additions and 77 deletions.
28 changes: 28 additions & 0 deletions bundles/org.eclipse.orion.client.golang/.project
@@ -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>
6 changes: 6 additions & 0 deletions bundles/org.eclipse.orion.client.golang/META-INF/MANIFEST.MF
@@ -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
28 changes: 28 additions & 0 deletions bundles/org.eclipse.orion.client.golang/about.html
@@ -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 (&quot;Content&quot;). Unless otherwise
indicated below, the Content is provided to you under the terms and conditions of the
Eclipse Public License Version 1.0 (&quot;EPL&quot;). 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, &quot;Program&quot; 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 (&quot;Redistributor&quot;) 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>
5 changes: 5 additions & 0 deletions bundles/org.eclipse.orion.client.golang/build.properties
@@ -0,0 +1,5 @@
bin.includes = META-INF/,\
bundle.properties,\
web/
src.includes = web/,\
about.html
3 changes: 3 additions & 0 deletions bundles/org.eclipse.orion.client.golang/bundle.properties
@@ -0,0 +1,3 @@
#Properties file for org.eclipse.orion.client.golang
Bundle-Vendor = Eclipse.org
Bundle-Name = Orion Go Tools
31 changes: 31 additions & 0 deletions bundles/org.eclipse.orion.client.golang/pom.xml
@@ -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>
@@ -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 (&quot;Content&quot;). 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>
(&quot;EPL&quot;), and the <a href="http://www.eclipse.org/org/documents/edl-v10.html">
Eclipse Distribution License Version 1.0</a> (&quot;EDL&quot;).
For purposes of the EPL and EDL, &quot;Program&quot; 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 (&quot;Redistributor&quot;) 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>

0 comments on commit c8a1a1e

Please sign in to comment.