plugins

dynamic_cast returns NULL but it shouldn't

Hi I'm having the following class hierarchy: class IStorage { [...] } Q_DECLARE_INTERFACE(IStorage, "ch.gorrion.smssender.IStorage/1.0") class ISQLiteStorage: public IStorage { Q_INTERFACES(IStorage) [...] } Q_DECLARE_INTERFACE(ISQLiteStorage, "ch.gorrion.smssender.ISQLiteStorage/1.0") class DASQLiteStorage: public Q...

jQuery "Please Waiting, Loading..." animation?

I would like to place a "please wait, loading" spinning circle animation on my site. I'm having trouble to find a plugin for it, so here I am asking a weird question :) Thank you for your help. ...

What's the best dialog plugin ( jquery based ) ?

I used to use jquery's native ui dialog plugin, felt a bit bloated to me. I'm looking for something lighter. Any suggestions? What I'm trying to get from a dialog plugin is that it can help popup panel like interface which allows dragging and resizing. ...

looking for jquery form plugin for easy filling form fields

The example ajax form <form method="post"> <input type="text" name="name" /> <input type="text" name="email" /> <select name="group"> <option value="1">group 1</option> <option value="2">group 2</option> </select> <button type="submit">submit</button> </form> each time the form is show an ajax call is sent and the s...

pass a jquery object from one plugin to another

Hi, I am trying to create an html element with one jquery plugin then pass the jquery object created to another plugin for more modifications. for example : 1 plugin would create the object the second one would add css ( i know this isnt the best way to do things) but a 3rd plugin calls the first one then the second one. I hope my descri...

Maven Eclipse plugin and classpath issues in Eclipse

I am using Eclipse 3.51, Maven 2.0.9, Java 1.4, with the Maven Eclipse plugin 2.7 with WTP 2.0 (not m2Eclipse). I have a flat multi module project that is set up as follows (module Parent with the parent pom, module A and B is dependent on C). Importing the four modules in for the first time will show compile errors as expected since I...

Vim: How to manually load an ftplugin after startup?

Say I load a .txt file into Vim. Then I want to change the filetype=html but I also want an associated ftplugin loaded. How can I do this? I've tried stuff like: :set filetype plugin on and :set filtype plugin_name on and also :filetype plugin_name on etc etc., but I can't seem to manually load the ftplugin. Any suggestions? I've tried...

jQuery table / list context menu

Hi all, I am looking for an intuitive js plug in for table rows. Something similar to Sharepoint list view, where when hovering over a table row the row gets highlighted and when clicking the row a context menu appears at a fixed position. I am developing in ASP.net and prefer jQuery since the plugins are always easy to use. Thanks i...

Trying to avoid AppDomains

I have a long running C# server application running on Linux/mono, and I have added the ability to load DLL assemblies on the fly to extend the application. I have discovered updating those DLL assemblies at runtime cant be done without using AppDomains, which by the looks of will just get in the way of what I have already done. Sure t...

Can Hudson check out from multiple SCMs ?

Due to some politics at work we have our project in two different SCMs, SVN and Dimensions. I was wondering if anyone knew of a plugin available that would change Hudson's radio buttons into checkboxes to allow me to configure multiple SCM repositories in the project's config on hudson? ...

Safety when installing plugins on domains I don't own

I developed a wordpress plugin entirely on localhost and tested it on a live server (CPanel) that I have full access to. What I'd like to know is what information I would need from a website owner if I were to install the plugin on their website? The assumption is that the website owner wants to give me as little information as possible,...

Opensearch plugin: Use %20 instead of + space encoding

Is there a way to write an open search plugin to encode a space character into %20 instead of into + character? I.e. the lala plugin -- http://mycroft.mozdev.org/search-engines.html?name=lala -- contains the following line: <os:Url type="text/html" method="GET" template="http://www.lala.com/#search/{searchTerms}"&gt; Searching for Tom...

Rails plugin to clean up (reformat) html output?

Is there any plugin (gem) that after rendering page can clean and reformat it? By cleaning I mean removing unnecessary new lines and whitespaces. ...

Suggestion for a good jquery pagination plugin for a complex table

Hi all... I have a table with the following complex structure.... <table> <tr> // 1st row <td> <table> <tr> <td> </td> </tr> <tr> <td> </td> </tr> </table> <table> <thead> ...

Recommended NetBeans UML plugins

It appears that the NetBeans UML plugin has been discontinued, as per a discussion on the NetBeans forums. This was a great, free tool with nice model->code and code->model generation. There are a number of other UML NetBeans plugins out there. However, I've never used any of them. Any suggestions? ...

Bind Event to Custom Plugin Function in jQuery

How would I modify my plugin to allow to load with an event on the call? Right now the plugin is loading when the page loads and I want it to work with .blur() or whatever event I want to assign it instead. Any help would be appreciated: // The Plugin (function($) { $.fn.required = function() { return this.each(function() { ...

QTextCodec subclass - how to register my codec

I need to create my own codec, i.e. subclass of QTextCodec. And I'd like to use it via QTextCodec::codecForName("myname"); However, just subclass is not enough. QTextCodec::availableCodecs() does not contain my codec name. QTextCodec documentation does not cover the area of proper registration of a custom codec: Creating Your Own Co...

How Can a Plugin Hijack a URL in WordPress?

Of course I can always edit WordPress' .htaccess file, but that would kind of make my WP plugin a little non-standard. Instead, what is the way to hijack a URL via a custom plugin in WordPress? For instance, let's say I want to build an elaborate product catalog that could be installed in WordPress as a plugin. Once activated, you could...

Rails custom script/console?

In this movie http://media.railscasts.com/videos/181_include_vs_joins.mov you can see he is using a custom ./script/console and all find results are shown nicely like this Is there a plugin for that? ...

Email server that supports .NET plugins that can do actions according to email content.

I have an application where I need to check emails as they come, however using POP3 to poll an email server is a major pain. Ideally I'd just like to setup an email server and write a plugin for it to handle some sort of EmailReceived event, that contains all the headers and content of the e-mails received. I'm not looking to create an...