-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
26 changed files
with
2,577 additions
and
1 deletion.
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
16 changes: 16 additions & 0 deletions
16
edu.usc.cssl.tacit.crawlers.gutenberg.ui/META-INF/MANIFEST.MF
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,16 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Ui | ||
Bundle-SymbolicName: edu.usc.cssl.tacit.crawlers.gutenberg.ui;singleton:=true | ||
Bundle-Version: 1.0.0.qualifier | ||
Bundle-Activator: edu.usc.cssl.tacit.crawlers.gutenberg.ui.Activator | ||
Require-Bundle: org.eclipse.ui, | ||
org.eclipse.core.runtime, | ||
org.eclipse.ui.forms;bundle-version="3.6.200", | ||
edu.usc.cssl.tacit.common.ui;bundle-version="1.0.0", | ||
edu.usc.cssl.tacit.help;bundle-version="1.0.0", | ||
org.eclipse.help;bundle-version="3.6.0", | ||
edu.usc.cssl.tacit.common;bundle-version="1.0.0", | ||
edu.usc.cssl.tacit.crawlers.gutenberg;bundle-version="1.0.0" | ||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7 | ||
Bundle-ActivationPolicy: lazy |
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 @@ | ||
source.. = src/ | ||
output.. = bin/ | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
plugin.xml |
Binary file added
BIN
+658 Bytes
edu.usc.cssl.tacit.crawlers.gutenberg.ui/icons/GutenbergCrawlerIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?eclipse version="3.4"?> | ||
<plugin> | ||
<extension | ||
point="org.eclipse.ui.views"> | ||
<view | ||
class="edu.usc.cssl.tacit.crawlers.gutenberg.ui.GutenbergCrawlerView" | ||
icon="icons/GutenbergCrawlerIcon.png" | ||
id="edu.usc.cssl.tacit.crawlers.gutenberg.ui.view1" | ||
name="Gutenberg Crawler" | ||
restorable="true"> | ||
</view> | ||
</extension> | ||
<extension | ||
point="org.eclipse.ui.menus"> | ||
<menuContribution | ||
locationURI="menu:crawl"> | ||
<command | ||
commandId="edu.usc.cssl.tacit.crawlers.gutenberg.ui.command2" | ||
icon="icons/GutenbergCrawlerIcon.png" | ||
label="Gutenberg Crawler"> | ||
</command> | ||
</menuContribution> | ||
</extension> | ||
<extension | ||
id="crawler.gutenberg" | ||
point="org.eclipse.ui.commands"> | ||
<command | ||
id="edu.usc.cssl.tacit.crawlers.gutenberg.ui.command2" | ||
name="Gutenberg Command"> | ||
</command> | ||
</extension> | ||
<extension | ||
point="org.eclipse.ui.handlers"> | ||
<handler | ||
class="edu.usc.cssl.tacit.crawlers.gutenberg.ui.handlers.GutenbergCrawlerViewHandler" | ||
commandId="edu.usc.cssl.tacit.crawlers.gutenberg.ui.command2"> | ||
</handler> | ||
</extension> | ||
|
||
</plugin> |
50 changes: 50 additions & 0 deletions
50
...l.tacit.crawlers.gutenberg.ui/src/edu/usc/cssl/tacit/crawlers/gutenberg/ui/Activator.java
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,50 @@ | ||
package edu.usc.cssl.tacit.crawlers.gutenberg.ui; | ||
|
||
import org.eclipse.ui.plugin.AbstractUIPlugin; | ||
import org.osgi.framework.BundleContext; | ||
|
||
/** | ||
* The activator class controls the plug-in life cycle | ||
*/ | ||
public class Activator extends AbstractUIPlugin { | ||
|
||
// The plug-in ID | ||
public static final String PLUGIN_ID = "edu.usc.cssl.tacit.crawlers.gutenberg.ui"; //$NON-NLS-1$ | ||
|
||
// The shared instance | ||
private static Activator plugin; | ||
|
||
/** | ||
* The constructor | ||
*/ | ||
public Activator() { | ||
} | ||
|
||
/* | ||
* (non-Javadoc) | ||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) | ||
*/ | ||
public void start(BundleContext context) throws Exception { | ||
super.start(context); | ||
plugin = this; | ||
} | ||
|
||
/* | ||
* (non-Javadoc) | ||
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) | ||
*/ | ||
public void stop(BundleContext context) throws Exception { | ||
plugin = null; | ||
super.stop(context); | ||
} | ||
|
||
/** | ||
* Returns the shared instance | ||
* | ||
* @return the shared instance | ||
*/ | ||
public static Activator getDefault() { | ||
return plugin; | ||
} | ||
|
||
} |
Oops, something went wrong.