plugins

What's your favorite mootools widgets and plugin

Hi people, I'm still new with Mootools. I'm trying to collect informations regarding the good and worth using Mootools plugins out there around the net. Please list your favourite Mootools widgets and plugins. One widgets and plugins per post only please so others can vote. ...

PHP CMS Plug ins require others

Hi! I'm writing a CMS, but I've got a problem. I have a mysql table called modules. Modules are similar to Wordpress' plug-ins, or Drupal Modules. Some modules require functions of other modules. I'm now writing the part which includes the modules. Here's my code: //Load modules $res_modules = mysql_query("SELECT * FROM ".$db_prefix."m...

When to use '$(this)' and 'this' in a jQuery plugin? (Article on net.tutsplus.com)

Hello, I'm learning jQuery now, and was reading an article of Jeffrey Way, "You Still Can’t Create a jQuery Plugin?" Almost everything is clear, but there are some points that I still cannot understand. Problems begin on the 'Step 3: Building the Plugin', heading title 'For Each...', and next 'Error Checking'. this.each(function() ...

Prototip-like plug-in for jQuery

I am very impressed with the Prototip plug-in, and I was wondering if there we're a similar plug-in available for jQuery? The plug-in has to have been around longer than a few months and has to be updated regularly--or at the very least; on new releases of jQuery. ...

How Does One Refresh the File List Using FuzzyFinder in Vim?

Using the FuzzyFinder plugin in Vim, how does one regenerate the file list displayed? ...

Restrict Certain Java Code in a Plug-in

Hi, I am creating an application which uses the Java Plugin Framework to load plug-ins and intergrate them into the program. My question is: Is there anyway restrict certain operations (such as starting a new process) in the plug-ins? What I have in mind is something like Java WebStart, i.e when the application wants to access the File...

Delphi - .bpl plugins for application - problem while loading > 1 plugin.

Hi, I'm using TJvPluginManager to build simple application with ability to load .bpl plugins. I have common interfaces declaration in "uIntfs.pas" file, which is kind of SDK ;) The problem is, that if I try to load more than one plugin, the app throws an error: Cannot load package 'test2'. It contains unit 'uIntfs,' which is als...

Vim plugins/features you'll die without?

Possible Duplicate: Favorite (G)Vim plugins/scripts? I mostly do front end development and I'm wondering what sort of plugins others have grown accustomed do, that has helped them in their career. I'd greatly appreciate ones related to editing say xml/html markup, plugin to jump back and forth between start/end tags, maybe autom...

My custom Wordpress plugin is ignoring the <!--more--> tag

Hi, I am trying to figure out I can only execute my plugin on the single post page rather than the main index page. It is ignoring the tag which I thought would resolve this issue. Currently, this is how it is working: add_action('the_content', 'my_plugin'); I tried detecting the but it would return false all time. I thought it...

how to write Nginx module ?

Hello all im trying to find tutorials on how to build module/plugin for Nginx web server can someone please help me here .. i just can't find it any where Thanks ...

How to use mod_rewrite to change external incoming images to local images?

Hi, I'm trying to figure out how to use mod_rewrite so that I can replace linked images (coming in externally) and use local ones instead. Why am I doing this? I have a plugin which I'm integrating into my site, which uses ugly external images as buttons, and I want to redo these buttons to match my site. The links come in external...

eclipse plug-in dependencies and classnotfoundexception

Hi, I am new to Eclipse RCP plugin development and I have the following problem: I am trying to instantiate a MessageConsole object in my plugin. I create the appropriate dependency for org.eclipse.ui.console in MANIFEST.MF, build the plugin, and then load the plugin inside the same Eclipse application (I export the plugin as a zip, s...

How to check and access javadoc/source for Maven Artifacts

I am writing a Maven plugin which needs to check if a certain project dependency has javadocs and sources available... and if so, would like to download them and archive them on a server. I cannot find out how to check if the javadocs and source are available or how to access them if they are. Any help would be appreciated. ...

Plugins system for Delphi application - bpl vs dll?

Hi, I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's better to use .bpl type plugins instead of .dll plugins ... What are the pros of this solution versus dll type plugins? So far I've found only cons of this solution...

jRails Alternative

Hello, do you know an alternative to jrails? It's more or less outdated (uses jQuery 1.5 - now 1.7 is the current release). Does anybody know an alternative? Thanks EDIT: I know how to build the rails helper with jquery allone - but I like the rails helpers, so I dont want to use jquery allone (without jrails) ...

Visual Studio keyboard shortcut for Method Name combobox

In VS 2008 (and prior versions as well I believe) when in the code editor there are 2 comboboxes at the top of the editor. On the left is a Class Name combobox and on the right is a Method Name combobox. Those are the tooltip descriptions but are a little misleading for instance the Method Name box shows all the methods, properties, even...

How to create a Plugin Model in .NET with Sandbox?

Is there a way to load a .NET Assembly into a Sandbox environment that is also restricted in custom ways? I know you can run an Assembly in a different AppDomain, but can you limit it from being able to do certain things that you want to restrict? For example: I want to be able to load up a Plugin (simple, just defined via a specific in...

How do you create rules for jquery form validate plugin with names that are arrays?

Hi Does anyone know how to create the rules for the jquery form validate plugin when you have a name attribute that is an array? eg. <form id="myForm"> <input type="checkbox" name="data[]" id="firstId" value="1" />One <br /> <input type="checkbox" name="data[]" id="secondId" value="2" />One <br /> ... I'm trying to attach a rule to ...

Good Javascript plugin to display tooltip briefly on page load

Hi, I need a plugin which highlights/points to a div box on the page on page load. The tooltip should then be able to be closed and/or will disappear after a few seconds. I am having difficulty finding one, as all the current ones seem to require the mouse to hover over the intended target. Are there any plugins that people recommend o...

Are there any articles/examples of using System.AddIn with ASP.NET?

Does anyone know about any articles/examples of using System.AddIn with ASP.NET and/or ASP.NET MVC applications? I'm looking to use System.AddIn to make an ASP.NET MVC application extensible. ...