|
Here's something obvious that should be easy to do...
How do I retrieve a list of installed plugins at runtime? Can't see an obvious way to do this a Platform.getBundle() requires a specific plugin name.
Is this perhaps a restriction for some kind of ...
Started by Bryan Solan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This displays.
From here :
The BundleContext class has a getBundles () method that returns all installed bundles in eclipse: Window->Show View->Other...->PDE Runtime->Plugin Registry.
|
|
How do you "remove" or "copy" an eclipse plugin from one eclipse install to another? E.g. I have two installs of eclipse, one of which has a plugin installed that I don't have an installer for nor is it readily available online. Is it possible to get ...
Started by Joe on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Depending on the Plugin you may encounter compatibility issues when source and target to the target install....
install plugins/ or/and features/ directory to the target eclipse install plugin/ or/and features/ directory.
|
|
My rails app is in a svn repository, but several of the plugins are installed through git and later added to the svn repo. How can I update these plugins? I can't seem to get script/plugin update to do anything. I'd really like to update activemerchant...
Started by jcoby on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you haven't made any local changes to the plugin and....
I'm pretty sure that script/install plugin just checks the code out from the git repo.
You should just be able to navigate to the plugin's directory and hit: git pull .
|
Ask your Facebook Friends
|
Hi, i am having this annoying problem when deploying rails plugins. I can install them by downloading the source and putting it in the vendor/plugins directory, But i want to do it with the easy command line. I am trying to install the will_paginate plugin...
Started by Maxsy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It sounds like you don't have....
Ruby script/plugin install git://github.com/mislav/will_paginate.git
That should work for you in Rails 2.0.2, so you'll need to be using at least that version of Rails and have git installed locally.
|
|
I get an error when trying to install both AJDT and Scala 2.7.5 plugin into Eclipse 3.5.
I remember seeing a message at one point that there was a known problem with the two being installed, and the solution was to install a pre-release version of Scala...
Started by James Black on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Cheers Porter
I have AJDT 2.0.0 installed, and when trying to install Scala 2.7.5.final get....
If you can live with one of the 1.7.0 AJDT builds_archive.zip from the AJDT downloads .
Galileo, AJDT, Scala Eclipse plugin 2.7.5 "
Hmm ...
|
|
Hi, I have a problem
I can use the pre-installed themes with no problems (that is "twenty-ten", and "twenty-eleven"). Then I've installed some new themes, and everything seems to be working fine with these themes, except when I activate them or click ...
Started by davidholmberg
Member on
, 21 posts
by 3 people.
Answer Snippets (Read the full thread at wordpress):
Can you check your server's error logs? I suspect your theme/plugins which I could use
http://davidholmberg.se/skrivarkiv/ Also, I have a plugin "Print Friendly and PDF.
To upload plugin/theme of your choice.
|
|
I would like to have the maven eclipse plugin regenerate my .classpath whenever a build is run, and I did so by using the following configuration:
<!-- Generate a new .classpath each time the build is run, but don't try to download sources or javadocs...
Started by LES2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Why do you want to keep re-running it?
I suspect the Maven Eclipse Plugin to mess do some classpath woodo that affects the jetty plugin....
You really don't want to run the maven-eclipse-plugin on every build when there's a .classpath).
|
|
(Why there is no|Is there a) way to run
./script/plugin install -SOME_HIDDEN_OPTION git://github.com...
So that the plugin is installed as git submodule. The reason for submodules is to keep unrelated code off project's repository.
Perhaps there is a ...
Started by artemave on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want to update the plugin, just navigate into that plugin's folder and do a git pull, navigating to the plugin's....
Should work without a submodule...
Script/plugin install git://github.com/something/something...
|
|
Anyone know how to determine if a particular plugin is installed on a user's browser? The plugin in question is AlternaTIFF.
Started by Mark Spangler on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Var installed = true; try { newObj = new ActiveXObject(YOUROBJECT....
AlternaTIFF has some code that does that, it looks like: http://www.alternatiff.com/testpage.html For IE just try to create it .
And supported mimetypes of each plugin.
|
|
Since Eclipse 3.5 there seems to be no option to have drop a plugin jar ( not a feature ) in the Eclipse base directory and have it picked up at next startup.
Is there any possiblity to have plain plugins jars installed in Eclipse 3.5?
Started by Robert Munteanu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In general, it is far more.
Since the advent of p2, you should be using the dropins directory instead to make sure Eclipse cleans its' plugins cache and sees the new plugin.
And Browse to your plugin.
|