plugins

can android load dll's from sdcard in native mode

I want to port a program I wrote to android. The program is in c++ on windows and linux. The program uses dll's for a plugin architecture. New plugins can be added to the program by downloading a dll which the program loads from a specific folder. My question is... Is it possible to download dlls built for android to a directory on the ...

JQuery Validation Plugin: remote method data issue

I'm using the jquery validation control remote method to test if an email address already exists in the database. Everything works fine the first time validation fires. However, on subsequent validations, the data being passed to the web service is the old data and not the new data entered into the textbox. e.g. An email address is ty...

Reduce chances of PHP plugins being malicious

Hey all, I was wondering what steps you use to keep downloaded plugins from being malicious? For example, what does wordpress do to ensure that the plugins you download do not simply execute unlink('/') I'm assuming it partly depends partly on downloader to install plugins to use his or her own discretion, but do plugin systems take m...

Using two jquery plugins in one page doesn't seem to work...

I am using a jquery cycle plugin and flexdropdown in one page... What happens is either one of the plugin is working but not both.... <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/...

Lift plugins like in Grails

Hi, is there an equivalent in Lift to Grails' plugins ? IMHO they save a lot of time in installation and the configuration often works right away. It's been really easy to integrate things like Melody - monitoring - Google Analytics, JCaptcha, PDF generation and WYSIWYG editors. In Grails performance has not been an issue but I'd really ...

What's the name of a jQuery plugin acting like a slideshow

Hello, I want, in my website, to present my employees, and i want to do it like a slideshow or similar using jQuery. You know, example i have 6 emplpoyees photo, and when i hover them, there is a little presentation with a bigger photo of them. I completely lost the name of the plugin i found months ago (if you know others jquery pl...

Useful Vim plugins for web development and design (php, html, css, javascript)?

Right now I'm using surround.vim to enclose text in HTML tags, and a plugin that highlights text according to the hex value in the CSS file (e.g. #888 will have gray background in the CSS file). Are there other useful plugins for web development? Recommendations Here is a list of the plugins mentioned in the answers so far: surround...

Limit number of words on front page posts (on WP 3.0)?

I all, I have a blog with variying lengths of posts, and I want the homepage to only present the first (let's say) 100 words of the post. After which, it should (automatically) add "more". What is a good way for doing this with WP 3.0 ? (I found the "Content and Excerpt Word Limit" plugin: http://wordpress.org/extend/plugins/content-a...

Interface Library Versioning - Breaking Changes

I currently have a C# project which uses plugins and has a fairly common approach to plugin handling: an IPlugin interface is stored in a dll which is linked in a tranditional dynamic way. The host app looks for class libraries exporting classes exposing this interface and loads them via reflection at run time. The dll containing the in...

How can I disable moving in jsTree, but not disabling drag'n'drop plugin?

How to disable moving in jsTree 1.0, but not disabling dnd plugin? Thanks. ...

Including another plugin with mine

Is it considered bad practice to include a plugin from another source (MIT licensed) with your own zipped plugin files (or even on github)? To elaborate: I wanted to include another plugin as part of my plugin package, not my site, but the github file or zip that I provide to others when they grab my plugin. It's not a required plugin t...

Rails - how do I confirm the version of a plugin.

I noticed that a rails plug-in I am using has had several fixes made to it, and im a little worried about all the other rails apps i have written. Ideally I would like to have a script that can compare the checked out version of the plug-in against the repo version. Does anyone know if rails stores this info anywhere or if there is a p...

CAKEPHP : Can use plugin in plugin ?

example: I want use plugin tree in plugin forum I cant do this . Who can suggest about this ? plugin in plugin , i mean: Folder App ----|plugin -----------|plugin ...

Where do I find Flex plugin for IntelliJ IDEA 9.0 on a MAC?

I have read about the wonders (and sometimes bugs) of working with flex in IntelliJ. I though the Flex pluggin was alredy installed in the Community Edition 9.0.2 version of IntelliJ, but to my surprise I can't find it. Not in the installed plugins nor in the available ones. Nothing. I followed the directions in this tutorial but on the ...

using custom Id column mapping with Searchable plugin

I have a Domain class with a custom Id mapping ... ... String ensemblGeneId String ensemblTranscriptId String ensemblProteinId String proteinSequence String topologySequence String topologyRatio String description String geneName .. .. .. static ma...

Custom form in Wordpress?

Hello, I'm making a wordpress site which looks like and behaves less like a blog and more like a classic web site. I need to make plenty of custom forms and by now I have three equally bad solutions to this. One would be to create each form as a theme template file. Those pages would submit data to themselves and all would be great, ex...

What is this type of web control/widget called?

I'm looking to create a menu that is a hybrid of an accordion control and a fly-out menu, but I want to have it expand across the x axis instead of the y: Is there a name for this widget? The name of a jQuery plugin would be even better. Thanks ...

How do I create a submit button for a wordpress hosted blog?

I would like to create a button for a wordpress blog that does just what the digg button does for Digg. Anybody can paste a code to their website or blog which will generate a button. When the button is pressed, I want the link that they are on and maybe a little content to be submitted to my blog. I searched ... but no luck. If anybody ...

RAD 7: Debug GWT based Portlets

Hi, I have a Portlet which is based on GWT and it must be deployed on Websphere Portal Server. For development purposes, I need to have debugging working inside RAD (with embedded Portal Server). So, i installed RAD 7.5.4 with Portal Server 6.1. I made all configuration on both Server and RAD to work with debugginh. But when i make brea...

jQuery plugins - accessing element from the options

Hi. Most jQuery plugins have options like this one for example (cycle): $("ul").cycle({ fx: 'fade', startingSlide: 1, speed: 500, pause: true}); The plugin will do his thing on all elements with the class/ID you specify, in this case all <UL> elements. How can I access this <UL>'s child elements from within one of th...