plugins

How to turn-off a plugin in Vim temporarily?

I have multiple plugins in Vim and some of them modify the default behavior of Vim. For example I use Vimacs plugin, which makes Vim behave like emacs in the insert mode alone. Sometime I want to turn off the Vimacs plugin without moving the vimacs.vim out of the plugins directory. Is there a way to do it? ...

Listening to plugin events in eclipse

Hi, I am working on Eclipse ide. I want to know how an action done on one plugin can be listened by other plugins so that they can also handle the same event. Please do reply if you have anything... ...

GUI Framework Plugin Design

As a plugin framework developer, I want to specify an interface, myNameSpace.IPlugin, that the plugins must implement. The return value of one of the interface members, IPlugin.GetWidget(), must be of a type derived from System.Windows.Forms.Control and it also must implement myNameSpace.IFoo interface. I also want to allow the plugin d...

Flex 3 and flash plugin error

Hi guys, I have built a flex 3 application using Flex Builder. I am then embedding it in a portal application but having problems with installing the Flash Player When i load up my application in Firefox or IE6 (without Flash installed) i get a message where my flex app should be, ("Additional plugins are required to display all the m...

Freeware Plugin to View HTML source generated by ASP.NET?

Are there any freeware plugins that would help me view the HTML Source generated by ASP.NET? ...

Anyway to error check PHP in Dreamweaver?

I do all my PHP coding in Dreamweaver (currently version CS3) I am used to it and like it. There is one thing I would like though, is to be able to check for errors. Currently I don't see them until I upload the page to a server. Is there anyway to setup PHP error checking in Dreamweaver? Thanks. ...

PHP: Storing objects in a Symfony plug-in module's lib/ directory

I am building a Symfony project, and have created a new plug-in named sfUtilsPlugin. I currently have a directory structure that looks like this: sfUtilsPlugin/ modules/ sfSearchLucene/ actions/ config/ lib/ templates/ Now, in the sfUtilsPlugin/modules/sfSearchLucene/lib dir...

Eclipse plugin that generates convenience methods around collections

Sample case: class Test { final Set<String> uniqueNames = new HashSet<String>(); } But w/ the help of a plugin can generate methods like this (similar to Generate getters/setters) class Test { final Set<String> uniqueNames = new HashSet<String>(); public boolean add(String name) { return uniqueNames.add(name); }...

How to localize a Rails plugin?

I'd like to translate the OpenIdAuthentication plugin into another language but I'd like not to change the plugin directly. Here's the basic structure of the messages I want to translate: module OpenIdAuthentication class Result ERROR_MESSAGES = { :missing => "Sorry, the OpenID server couldn't be found", :invali...

Is .NET 3.5 a reasonable pre-requisite for a media center plugin?

We have an open source media center plug-in. At the moment its download size is one measly megabyte. If I change my plug-in to require .NET 3.5, users may have to download 197 megs just to be able to use my plug-in. I am in the middle of a big refactoring process, and am aching to use some of the functional aspects of LINQ, which would...

How do you add event to Trac event time line

I am writing a plug-in for Trac. I would like to add an event to the time line each time the plug-in receives some data from a Git post-receive hook. Looking at the timeline API, it seems you can only add new source of events. So you are responsible for retrieving and displaying the data. I would prefer saving my event to an existent so...

First jQuery plugin issues

Hey guys, first off let me just say Im a jQuery noob! I want to make a simple plugin that auto-populates a html select element, it works fine on the first element but when I call it again to populate a second it appends nothing. Here are my calls in the ajax tab where #product and #new-category are the select elements: $(function(){ ...

How Do You Reinstall Installed Eclipse Plugins?

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 this plugin installed on my other version of eclipse? If so, how? Also, does it matt...

Creating an IE Toolbar

Hi, Where can I find information on adding a toolbar to IE like "Snagit" and other tools does? What I am basically trying to do is add a button, such that when clicked my tool will be launched. ...

Rails: Ajax auto-suggest plugin?

Is there a rails (or other javascript framework) plugin that does the auto suggest like the Related Questions suggestions here in Stack Overflow where after leaving the text field a list of related items shows up? Also is there a name for this UI patterm? ...

Embedding flash within a custom desktop application, using NPAPI?

Note: Please don't answer with just use Adobe AIR". I am aware of it, and it's not applicable in this situation. I've been reviewing the Gecko Plugin API reference. I'm assuming I'd have to implement all the required browser-side functionality. My goal is to be able to access the graphical output of Flash at a low level, in order to in...

Problem with ImageTools plugin in Grails

Hi guys, i have a grails project with an Image Domain Class and Controller. I just installed the grails ImageTools 1.0.4 Plugin and i would like to generate thumbnails for images wich will be uploaded. My Image-Domain-Class: class Image { byte[] data //String name byte[] thumbnail static constraints = { //name() data() } } ...

How do I debug the Eclipse Plugin error "Plugin was unable to load class"?

It is trying to load my TabGroup from the Debug Dialog but I get the error that it is unable to load my tab group class. In the "details" of the error all it says is: "org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup" Which is the class that my TabGroup extends. ...

Audible 'click' in IE when using the jQuery .click() event and <a href='#'/>

I often use links with href='#' when calling ajax resources. I noticed that IE makes an audible "click" when clicking these links. Here's a workaround: $("#element") .click(function(){return false;}) .bind("click", function(){ alert(this); }); HOWEVER, when I try to encapsulate this functionality in a jQuery plugin, I'm not succes...

Separate DLL and native call in different plugin

I want to separate some DLLs from the associated native JNI classes. Plugins: In plugin A the dlls are placed and loaded when the plugin is loaded. In plugin B (depend on A) the JNI classes are placed which include the native method calls for the DLLs in A. At runtime i get a UnsatisfiedLinkError because the JNI class can't be foun...