plugins

List all DLL's implementing a specific interface from the GAC

Aloha Given a plug-in architecture (C# / .NET 3.5) with the plug-ins stored in the GAC, how can I list/load all dll's that contain types that implement my specific interface? In other words, I'd like to investigate which plug-ins for my application are installed on a machine, by looking in the GAC. -Edoode ...

JIRA Plugins: What do you use?

JIRA is a very extensible bug/task tracking tool. As such, newcomers feel lost as to what plugins they should install. Please share your thoughts what plugins (both free and paid) that you consider a "must-add" for JIRA! ...

How to get the NPP Instance inside a NPAPI C plugin

Hi, I have written a NPAPI plugin in C which needs to call the NPN_Invoke function (in order to call a JavaScript function). But NPN_Invoke() takes the NPP instance as a parameter. Only the NP_New() and NP_Destroy() functions get passed NPP instance. How do I get this NPP instance? Thanks in advance. ...

How to create wordpress plugin - quote of the day - quote from external website

I would like to create wordpress plugin that will display "quote of the day". I have an external website that hosts a lot of quotes and I would like to use them in my wordpress quote plugin. I was told that wordpress doesn't allow you to use iframe. The random Wordpress quotes plugins I have seen so far are just displaying manually in...

Are there any security test plugins for rails?

Are there any tools to test the security of your rails application? Things that can automatically test sql injection, cross-site scripting, etc... ...

Sifr does not display custom/dynamic text

I am using the sifr plugin from here:http://jquery.thewikies.com/sifr/ and I have generated a swf using http://www.sifrgenerator.com/ I have build set to 436 and version set to 3. My page only shows the default text that was set inside the swf by the generator. When I try to set the content property to let's say 'hello', it still disp...

video plug-in for moodle

currently the moodle that we are using doesn't have a video plug-in.i have developed a video plug-in for moodle.I would like to add the plug-in to the Moodle software that is being used in our institution.I am new to open source. How to include the plug-in .how do i go about with the integration ,so that i am able to use the video plug-...

Implementing MEF with ASP.NET MVC?

I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, which I have. But I need to offer additional functionality i.e. Views and Controllers, etc, depending on if I add a plugin. It doesn't need ...

RAILS Plugin Streamlined Being Used?

It looked like Plugin Streamlined came in with a bang then I am not seeing much on it. Is anyone using it? Is it worth looking at? ...

JQuery Boxy plugin resize and access

How exactly does one resize a Boxy.load()? I can resize using: var tmp = new Boxy(); tmp.resize(40,40); But if I then try to use tmp.load('somefile.php'); it states that tmp.load is not a function. I've also tried: var tmp = Boxy.load('somefile.php'); tmp.resize(100,100); // Says that tmp.resize is not a function. How can I resize a b...

Eclipse plugin to roll up if and for?

Hi all I'm at university, and we were taught to use notepad to programme java to start with. I moved onto notepad++ and quickly onto eclipse. In notepad++, i could roll up (plus minus sign) if statements or for loop as well as methods and classes. I wondered if there is a plugin for eclipse that allows me to do the same? Also, are there...

Code generation in Maven

I want to autogenerate some java classes from interfaces. My first thought was to write a code generator, and integrate it as a maven plugin. I was thinking of creating a maven plugin with a codegen goal that is called during the build process. So if I choose this route, how do I provide the plugin with the interfaces to be processed? ...

Reusing Ruby code across several Rails applications

I have developed a simple library in Ruby and need to use this in several Rails applications (some of which are not built yet). What is the best way to easily add this Ruby library to several Rails applications as and when required? Our team is running Ubuntu and our repository is Mercurial. Should I use a... Rails plugin? This would ...

Ruby on Rails time_select plugins?

Does anybody know any Ruby on Rails time_select plugins that have only one select box? So the select box has entries like "9:00 AM", "9:15 AM", etc.? I have seen a few plugins, but nothing like this. Thanks! ...

Visual C++ - Linking plugin DLL against EXE?

I'm in the process of porting a large C++ application from Linux (gcc) to Windows (Visual C++ 2008) and am having linker issues with plugins. On Linux this wasn't an issue, as .so supports runtime symbol lookup, but dll does not seem to support this. Some background information: The application (the host), which hosts a scripting enviro...

Please recommend a JQuery plugin that handles collision detection for draggable elements.

We're using the Draggable JQuery UI plugin and need to disallow overlapping among our elements. We could write some collision detection ourselves but would prefer to use a tested package. Any suggestions? ...

Make a firefox plugin out of Cocoa application?

My friend wants me to turn his Cocoa application into a firefox plugin. The application takes the URL of the site where the data is to be downloaded from, and downloads it, taking the load off of the browser. My question is, since firefox plugins are written in javascript (I think), and the application is written in objective C, is this ...

Adding a new option in FireFox and IE save dialog

I want to disable the custom Save Dialog of IE and Firefox OR add a new "Save to My Location" option in it. I think I need to create plug-ins for IE and Firefox. ...

jQuery plugin events fire only once

Hello! I am making a very minimalistic calendar plugin for the website with jQuery. I have not had much expirience with it, so I was following plugin tutorial. I have two <a> links that should change month, but unfortunately they do so only once and then both of them stop working. I suspect I have put events to a wrong place. Sorry for...

Which layer should be responsible from loading plugins?

I've got an application with 2 main components + other DLLs: Core DLL (got all core functionality) GUI 3rd Party and Totally Independent DLLs which requires for DI etc. Now I'm implementing plugin support. Which DLL should be responsible from loading these plugins? GUI or the Core DLL? I'm using MEF so not quite sure where to sti...