plugins

C# Plugin Architecture with interfaces share between plugins

Hi all, I divided my problem into a short and a long version for the people with little time at hand. Short version: I need some architecture for a system with provider and consumer plugins. Providers should implement intereface IProvider and consumers should implement IConsumer. The executing application should only be aware of IProv...

AJAX in the control panel of a WordPress widget

I'm trying to figure out the best way to implement an AJAX-y slider on the control panel of a WordPress widget. Because the sidebar admin itself is AJAX, I want to make sure that my solution doesn't conflict with what's already in place. The goal of the slider is to default to basic options but allow the user to opt-in to advanced option...

C# Plugin to use its own app.config

Hi all, I finally managed to build a working solution of a plugin architecture with help of some guys over here, but now a new problem arises. My hosting application uses it's app.config file for some defaults for the executing assembly (which is a Windows Service). Each plugin should be able to load it's own settings from a separate ...

google translator

hi , could somebody let me knw how the google translator actually works within moodle ...

How to Make A Dll 'Plugin' System For Playing AI Bots Against Each Other - In .Net

I'm trying to put together a fun 'contest' of sorts. Developers will write a bot that plays some game - maybe BlackJack and the master program will host the game and let the bots play against each other. I've participated in such things before, but never been involved with the 'host' application. And I'm not sure how to go about doin...

Visual Studio Plug-in to measure time spent on Solution/Project

Hey guys, does anyone know of a Visual Studio (2008) Plug-in that attempts to track how long you've spent working on any given Solution or Project? I realize this would be difficult, like at work I might leave a Solution open all day, but only work on it for a couple of hours, on and off. However at home, I might only open a Solution...

How do I get my ATL COM DLL IE plugin to work in Mozilla?

I have COM DLL(ATL Project) which handles the download dialog in IExplorer. I want that same DLL to work in Mozilla. What do I have to do for this? Is it possible? ...

Configuration of Grails plugin

I'm developing my first Grails plugin. It has to access a webservice. The Plugin will obviously need the webservice url. What is the best way to configure this without hardcoding it into the Groovy classes? It would be nice with different config for different environments. ...

Problem with ScriptManager.RegisterClientScriptBlock and jQuery in Internet Explorer 8

I want to use jGrowl plugin for jQuery (http://stanlemon.net/projects/jgrowl.html#samples) to display some messages on a page. To do this, I call the ScriptManager.RegisterClientScriptBlock method like this: ScriptManager.RegisterClientScriptBlock(this, typeof(Page), Guid.NewGuid().ToString(), "$.jGrowl('" + message + "');", true); ...

How do I publish a Dynamics CRM4 plug-in with multiple assemblies?

My plugin DLL is really simple but references fifteen or so other DLLs. How do I register this? ...

What programming language required to created a firefox plugin?

What are the minimum programming requirements to create a Firefox plugin? ...

Stuck in installing Taglist in Vim

I was trying to install Taglist in VIM and I did not understand this step: If the exuberant ctags utility is not present in your PATH, then set the Tlist_Ctags_Cmd variable to point to the location of the exuberant ctags utility (not to the directory) in the .vimrc file. What does it mean? If anybody uses this plugi...

Visual Studio 2008 Plug-in / Add-in development - Getting Started

hey guys, in relation to this stackoverflow question, how would I go about creating my own Visual Studio 2008 plug-in. I've checked the Visual Studio Developer Centre on MSDN, but the amount of info is overwhelming. There are loads of project types, and I don't even know where to start. Where should I start looking if I want to write s...

Jquery.cascade plugin how to match text instead of value?

I am using plugin from here. Thanks for it. I use it for multiple dropdowns. The thing is I want it to filter source list based on text, however plugin filters only by value. Believe it is set in this line: .filter(function() { return opt.match.call(this, opt.getParentValue(parent)); }) opt.match.call - calls match method on dropdown...

How to test Netbeans 6.7 Plugin ?

I created a simple netbeans plugin (see this tutorial) and now i wanna test e.g. the Actionlistener. But how can this be done ? to be more specific what test frameworks suit netbeans plugin development ? how to create a test setup which emulates enough of netbeans e.g. to test the simple actionlistener ? Update a practical example...

A Java Plugin Framework that supports JARs

More specifically, is there any Java plugin frameworks have all of the below features: Support for multiple JAR files JARs can be signed and/or sealed Can perform a license check for each JAR prior to instantiation Can load multiple JARs using multiple threads ...

Filter the jQuery object with a plugin

I'm trying to build a jQuery plugin that filters the provided jQuery object to only return some elements similar to the .filter(expr) function. This is more for educationg myself then for a real world problem. However I can't figure out how to remove elements from the provided jQuery object (or only return certain others, doesn't really ...

OSGi implementation for .NET

Is there work on implementing a .NET version of the OSGi plugin architecture (or something similar)? I have only found this paper, but no real library. Any pointers? ...

Your favorite lesser-known Rails gems/plugins

What are your favorite lesser-known gems/plugins for Rails? This question about Rails plugins brought up only the usual suspects (Paperclip, RSpec, Shoulda, Restful Auth, etc). It'd be great to get a list going about the hidden, less popular ones that rock. ...

Object Registration in Static Library

I have implemented a very basic "plug-in system" as part of a static library. Each "plug-in" implements the support for a specific image format, e.g. GIF, JPEG, etc.. Furthermore, I have a Singleton (a class called PluginManager) that keeps a list of all available plug-ins. The tricky part is that I want to disable/enable the plug-ins b...