How do I install/use Extjs extensions and plugins - plugins

Sorry for the newbie question, but how do I install or go about using an Extjs Extension or plugin I found through the extjs forums?

Just include the file and start using it - you don't need to register anything with ExtJS. :)

To clarify, include the file(s) after you have included the required Ext files. Plugins and extensions plug into or override existing code, so if the code being plugged into is not there it won't work. But yes, simply including the plugin/extension is the only requirement.
If you have problems with specific plugins or extensions, you'll want to ask directly on the Ext forums.

Related

Where to download MITK Workbench plugins

I'm new to MITK Workbench and I can't seem to find where to download plugins. Specifically, I'm looking for a link to download the Registration plugin so that I can align two images with the deformable image registration method. Any direction to a link would be greatly appreciated.
-KBS
Currently MITK does not allow to download Plugins for Extentions, you would have to build it from source and activate them in Cmake.
However, the Registration Plugin is included into the latest Release 2016.11 (its the MatchPoint Plugin).
As chriswe wrote, MITK doesn't work by downloading plugin. You simply need to download the MITK Workbench from their website and it will already contain all the plugins MITK created.
If you want to know how to code a new plugin, that's a totally different question! By the way, the MITK Mailing List is really active so it's a good place to ask questions.

How to install Typo3 extension: jfmulticontent

Beeing new to Typo3, I've just installed jfmulticontent, but obvisouly, there's more to it than simply importing and installing. The documentation that comes with it on the other hand seems to be nice for people, who already know what they are doing. Does anybody know, where I can find some beginner-friendly installation-instructions and general documentation about that plugin?
Be sure you import the static files of the extension.
After installing the extension, you have to add the static “Multi
content (jfmulticontent)” to your template
I don't know your site structure. Try click on template, then click on your site root. Choose Info/Modify from toolbar and then click on Edit the whole template record, Includes.
Extension manual: http://typo3.org/extension-manuals/jfmulticontent/2.7.3/view/toc/0/
Try to be more specific regarding your problem. This way we can help you much better.

To modify a core eclipse plugin

In order to modify an eclipse plugin, what are the steps to find its editable code ?
I read and debug source provided with eclipse distribution but to try a fix in org.eclipse.jdt.internal.corext.codemanipulation behavior I need to make it editable.
Well, the source repository is available at eclipse.org, the plugin compiled with the source should be available from the standard eclipse update site.
I'm guessing you are considering changing the source, recompiling and using your plugin instead of the standard one? There is a different way to change functionality, its with fragments. For example, look at a question I asked earlier, follow the links in my text and Andrews answer for more information.

How can I get autocomplete for CSS3 properties on Eclipse (Helios)

Please note that I already have CSS autocomplete support active, I need the CSS3 properties and other proprietary properties for CSS like border-raduis, ::selection, -mozkit and -webkit properties.
You could install the Aptana Studio 3.0.3 plugin which has support for CSS3 properties. Aptana Ticket #1986 shows a way to enable matching for browser vendor specific extensions. Ticket #1495 is also relevant.
WARNING! I read on How do I add FTP support to Eclipse?, that the plugin could potentially overwrite or re-organise a lot of your Eclipse workspace. This is an older answer now, so the new version of plugin might be better. I wouldn't want my advice to break your Eclipse without warning you first :-)

Plugins + Extensions on Safari 5.0.1

My question is very simple: Is it possible to pack plugins into extensions for Safari? For instance, the exact NPAPI plugins which work on Google Chrome also work on Safari. However in Chrome I'm shipping the plugins as a part of an extension (a CRX package). This is needed because HTML and JavaScript is injected into a specific web page, and this code uses the plugins. I do not see an option in Extension Builder to specify plugin files and I haven't come across any proper documentation saying that plugins cannot be packed into extensions.
Any help will be greatly appreciated!
The first comment:
I don't think that is supported. A workaround could be a custom installer that installs both the plugin and the extension. – Georg Fritzsche
This is the only possible way to do it! FYI: Apple guys are against the idea of extensions accessing native code (ie, plugins). An obvious security loop-hole, but a necessity here! :)