plugins

Download Glassfish Adapter plugin separately

Dear all, Is it possible to download Glass-fish adapter plug-in for eclipse(Helios) separately not with 'Install New Software feature in eclipse'? Because I want to archive this plug-in and use it on another eclipse instances. Regards ...

What language should we use to let people extend our terminal/sniffer program?

Hello, We have a very versatile terminal/sniffer application which can do all sorts of things with TCP, UDP and serial connections. We are looking to make it extensible -- i.e, allow people to write their own protocol parsers, highlighters, etc. We created a C-like language for extending the product, and then discovered that for some ...

How to embed .wmv into html in a plugin-agnostic fashion?

Hi all, I have a follow-up to this question here: http://stackoverflow.com/questions/2185357/embedded-wmv-video-object-not-working-in-firefox-works-in-ie In response to a "Windows Media Player for Firefox Plugin" bug, I wanted to see if we could use a different plugin (e.g. VLC) to work around the problem. (The bug: WMP plugin does ...

Cycle jQuery plugin, can the images slide both ways intuitively?

I'm using the jQuery cycle plugin found here: http://jquery.malsup.com/cycle/ It works well. My client wants a list of <div>s that contain images and text, etc. to slide horizontally on the front page. But she also wants me to use the previous and next options to have arrows on either side that can control the sliding panels. Here is t...

Resources on how to create a NSIS plugin

Is there documentation on how to write a NSIS plugin? Where can I find it? ...

Download plugins by javascript on Chrome, Safari

Dear all, I have implemented the plugin by NPAPI for Firefox, Chrome, Safari, but there is a issue for me is how to download the plugin by JavaScript on Chrome, Safari? I know the .xpi is a extension for Firefox, and I can write the script for downloading the xpi from server and Firefox will equip a xpi to Firefox extension folder. ...

cForms Plugin Post-Processing

I have a cForms II contact form set up. It works perfectly if I just want the results emailed to myself (default behavior). I now have a custom PHP file that will take the POST data from the form and submit it to an external database for me. However, when I set the Alternative Form Action page to this PHP page, clicking the Submit butto...

Handling Exceptions thrown in Zend Framework's Controller Plugins

Hi I have an Acl plug-in which extends Zend_Controller_Plugin_Abstract, this plug-in handles all my Acl code. I want to thrown an Exception in this plug-in, e.g. an Exception_Unauthorised and then handle this in my ErrorController, this way I can use the same Acl plug-in for different applications and use the ErrorController to handle ...

How to run an eclipse workbench action

Hi I am developing an eclipse plugin. I have declared an action set with one action, but when the action is invoked it isn't doing what it should. Here is the class for the action. package instantmessengerplugin; import java.io.IOException; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IAction; import org....

Can't import Rails plugin from GitHub

I want to use the Typus plugin in my rails application, but i can't install it. $ script/plugin install git://github.com/fesplugas/typus.git Initialized empty Git repository in /...../vendor/plugins/typus/.git/ $ script/generate typus Couldn't find 'typus' generator $ ls -al vendor/plugins/ total 0 drwxr-xr-x 2 *** staff 68 Aug 23...

How to create an Export Plugin for Confluence

I'd like to create a plugin that exports into a custom document format similar to the way that export to PDF and export to Word currently work in Confluence. Does anyone have experience creating a custom export plugin for Confluence? If so do you know of any resources or samples that describe what would be involved? ...

why Zend Framework can't find my controller plugin

Hello. I'm trying to write controller plugin to check authentication. I created class of plugin, put in Application directory, Application.php and registered in Bootstrap.php. But there is an error: Fatal error: Class 'Authentication' not found. Where does Zend Framework look for plugins, how to tell it where it is? //Application/Authe...

Rails engines depending application code?

We have what I suspect is an unusual setup. We have a Rails app which is something we sell to customers. We also package up bundles of business features into optional addons that the clients can purchase according to their needs. We have done these as Rails plugins/engines to keep them nicely separated. This forces the unusual requ...

What's the simplest way to write portable dynamically loadable libraries in C++?

I'm working on a project which has multiple similar code paths which I'd like to separate from the main project into plugins. The project must remain cross-platform compatible, and all of the dynamic library loading APIs I've looked into are platform specific. What's the simplest way to create a dynamic library loading system which can ...

jquery plugin inheritance

I have created a jquery plugin to perform a watermark style on a textbox. Now i want to create another plugin that inherits from this plugin - is this possible? both plugins perform very similar tasks and dont want to rewrite the similar functions. ...

How do I use Mogenerator?

I installed Mogenerator. Now what do I do? How do I use it? The first problem I have is that I have no idea where it was installed to. During the install process, it only let me select the hard drive to install it on, not the directory. The most natural location would be the Applications folder, but it isn't there. Next, the readme (wh...

Graph/Charting in Vim or Eclipse

I remember there's a charting/graph tool/plugin in some editor (maybe in vim or eclipse) so that we can plot some chart in pure text as follows: +-----------+ +-----------+ | Class A | ------------> | Class B | +-----------+ +-----------+ Anyone knows what that plugin is? Thanks! ...

Writing autocomplete plugin for IDE's

As of now , other than visual studio , and netbeans , very few IDE's have given me satisfactory auto complete(or code suggestion?) features. Yeah they do perform to an extent , but i would atleast like to try my hand at making one , that suits to my taste. I have experience in java , c , C++ , C# and have learnt the basics of wxwidgets(...

How do I get a MEF Directory catalog looking at the same directory for both the Servicelayer and DAL?

Hi, I'm using MEF to add plugins to our DAL which is used by our WebApp. This works fine, but when our service layer references the DAL, it's looking for plugins in \ServiceLayer\Plugins\ rather than \WebSite\Plugins\ (which makes sense are we're using a relative path. {DirectoryCatalog (Path="plugins/")}. The problem is if we use an ...

How do I detect when a safari webplugin loses focus?

I need to be able to detect the browser loses focus in a webkit plugin I wrote. I thought I could implement the webViewUnfocus method from the WebUIDelegate protocol but that's not firing. Does anyone have a pointer to a code snippet for what should be a relatively simple problem? ...