Skip to content

Commit

Permalink
externalized strings in manifests in ghc compiler plugin
Browse files Browse the repository at this point in the history
darcs-hash:20070421145226-bb101-2162df8d28c9bd40f23bcba6aa0f1e263fd560c8.gz
  • Loading branch information
Leif Frenzel committed Apr 21, 2007
1 parent 4b226f8 commit 33f7a92
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 9 deletions.
@@ -0,0 +1,15 @@
#Sat Apr 21 16:47:58 CEST 2007
compilers.incompatible-environment=1
compilers.p.build=1
compilers.p.deprecated=1
compilers.p.missing-packages=2
compilers.p.no-required-att=0
compilers.p.not-externalized-att=1
compilers.p.unknown-attribute=1
compilers.p.unknown-class=1
compilers.p.unknown-element=1
compilers.p.unknown-resource=1
compilers.p.unresolved-ex-points=0
compilers.p.unresolved-import=0
compilers.use-project=true
eclipse.preferences.version=1
4 changes: 2 additions & 2 deletions net.sf.eclipsefp.haskell.ghccompiler/META-INF/MANIFEST.MF
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Bundle-Name: Ghc compiler
Bundle-Name: %bundleName
Bundle-SymbolicName: net.sf.eclipsefp.haskell.ghccompiler;singleton:=true
Bundle-Version: 0.11.0
Bundle-ClassPath: ghccompiler.jar
Bundle-Activator: net.sf.eclipsefp.haskell.ghccompiler.GhcCompilerPlugin
Bundle-Vendor: eclipsefp.sourceforge.net
Bundle-Vendor: %bundleVendor
Bundle-Localization: plugin
Require-Bundle: org.antlr;bundle-version="[2.7.6,3.0.0)",
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
Expand Down
16 changes: 15 additions & 1 deletion net.sf.eclipsefp.haskell.ghccompiler/plugin.properties
@@ -1,5 +1,19 @@
# bundle manifest
bundleVendor = eclipsefp.sourceforge.net
bundleName = Ghc compiler


# extensions
ghc_name = Glasgow Haskell Compiler (ghc)
ghc_desc = Glasgow Haskell Compiler wrapper for ghc support.

compilerPP_name = GHC compiler
interpreterPP_name = GHCi (interactive)
configuratorPage.title=Glasgow Haskell Compiler
configuratorPage.description=The GHC is used to compile and link Haskell \
programs. It can also be\nrun in interactive mode. Even if you don't want to \
create standalone\napplications, it may be useful to have a GHC installation \
on your system.
on your system.

shortcut_label = GHCi session
contextLabel_label = Run GHCi session
12 changes: 6 additions & 6 deletions net.sf.eclipsefp.haskell.ghccompiler/plugin.xml
Expand Up @@ -10,8 +10,8 @@
<extension
point="net.sf.eclipsefp.haskell.core.haskellCompilers">
<compiler
name="Glasgow Haskell Compiler (ghc)"
description="Glasgow Haskell Compiler wrapper for ghc support."
name="%ghc_name"
description="%ghc_desc"
class="net.sf.eclipsefp.haskell.ghccompiler.core.GhcCompiler"
mode="make"
id="ghcCompiler">
Expand All @@ -20,13 +20,13 @@
<extension
point="org.eclipse.ui.preferencePages">
<page
name="GHC compiler"
name="%compilerPP_name"
category="net.sf.eclipsefp.haskell.ui.preferences.HaskellCompilerPP"
class="net.sf.eclipsefp.haskell.ghccompiler.ui.preferences.GhcPreferencePage"
id="net.sf.eclipsefp.haskell.ghccompiler.ui.preferences.GhcPreferencePage">
</page>
<page
name="GHCi (interactive)"
name="%interpreterPP_name"
category="net.sf.eclipsefp.haskell.ui.preferences.HaskellInterpreterPP"
class="net.sf.eclipsefp.haskell.ghccompiler.ui.preferences.GhciPreferencePage"
id="net.sf.eclipsefp.haskell.ghccompiler.ui.preferences.GhciPreferencePage">
Expand All @@ -35,7 +35,7 @@
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
label="GHCi session"
label="%shortcut_label"
icon="icons/full/etool16/ghci16.gif"
class="net.sf.eclipsefp.haskell.ghccompiler.ui.launch.GhciLaunchShortcut"
modes="run"
Expand All @@ -50,7 +50,7 @@
</with>
</enablement>
<contextLabel
label="Run GHCi session"
label="%contextLabel_label"
mode="run">
</contextLabel>
</contextualLaunch>
Expand Down

0 comments on commit 33f7a92

Please sign in to comment.