plugins

How to make a self contained jQuery plugin that finds the tallest image height?

I have been trying to make this to be a little jQuery plugin that I can reuse in the future without having to write the following into my actions.js file in full. This works when loaded in the same file where I set the height using my variable tallest. var tallest = null; $('.slideshow img').each(function(index) { if ($(this).height...

Is there a way to validate the presence of Javadoc and/or inline code comments?

We are trying to put quality code processes in place for a large project I am working on. Right now a lot of developers are not putting in Javadoc or in-line code comments into their code. Ok right now. But it will severely hurt us in the very near future. We are using Maven 2.0.9 as our build tool, as well as Hudson for Continuous In...

Creating a web application that can be extended by plugins/modules

I'm currently involved with developing a C# CMS-like web application which will be used to standardise our development of websites. From the outset, the idea has been to keep the core as simple as possible to avoid the complexity and menu/option overload that blights many CMS systems. This simple core is now complete and working very w...

Convert grails app to plugin

Hello, I started a grails application by grails create-app. For modularity, I feel like it would be better that component be a plugin. Can I convert this application into a grails plugin? thanks, Babu. ...

Are there any Rails Plugins that use JS to poll the server for completion of a background process?

I know it might be simple to write some polling JS that asks the Rails application if it has completed a background job. But I wonder if anyone has already packaged up this functionality as a plugin. Basically, I have a few delayed_jobs running, and am looking for a plugin that will poll the server for completion of a particular job, th...

Problem testing a plugin with 2 diff versions of rails installed on the system

Hi, I have some unit tests for a plugin I have written. This plugin is attached to a sample rails application. Both the rails application and the plugin is configured for rails 2.2.2. So far my system had ruby 1.8.7 with rails 2.2.2 and I faced NO issues running the unit tests in my plugin or the tests of my sample rails app. Just a c...

Converting a jQuery plugin to work on any object, not just DOM objects

I am using the jQuery physics plugin for a pet project I am working on. The plugin enables the moving of DOM objects in realistic ways using velocity, gravity, wind etc. However I want to use the plugin to calculate where objects are to be placed inside a canvas element, not DOM object. How do I change the plugin script to work for AN...

"User Friendly" .net compatible Regex/Text matching tools?

Currently in our software we provide a hook where we call a DLL built by our clients to parse information out of documents we are processing (the DLL takes in some text (or a file) and returns a list of name/value pairs). e.g. We're given a Word doc or Text file to Archive. We do various things to the file, and call a DLL that will retu...

Creating Modules for VB Program (Similar to firefox add on)

Hi all. I have a contact manager program that I'd like to design for multiple network marketing companies. My desired structure would include a core program which covers basic contact management functions. After that one could purchase a module for their specific network marketing company. This module would contain a variety of controls ...

Prototype/Scriptaculous Cycle (Slideshow) Plugin

I've got a bunch of websites that use a few Prototype/Scriptaculous plugins such as lightbox and modalbox, hence include references to these two libraries on various pages. I now need to implement a slideshow on every page, and to follow suit, I need a Prototype cycle or slideshow plugin. The requirements are fairly simple: images sho...

C# DLL reference changes version and becomes unloadable (Plugin-system)

I will try to keep this as simple as possible. I have a rather simple plugin system that has run into a problem. I have 2 assemblies: Host.exe Plugin.dll Plugin.dll references Host.exe (which contains interfaces and classes that Plugin.dll implement and use). At runtime, Host.exe loads Plugin.dll through reflection and this works g...

Generating jax-ws client using eclipse plugin

I'm using eclipse (eclipse-jee-galileo-win32). I generated ws clients by using eclipse build in plug-in (right click on wsdl -> web services -> generate client) and they working fine. For a automatic builds I need ant scripts that will generate such client's code automatically. I tried using wsimport (of glassfish and jdk6), but I've got...

Configurable UI Plugin frameworks for .NET Compact Framework

Is anyone aware of any frameworks for configuring UIs and possibly plugins for .NET Compact Framework (rich client) applications? Ideally, I'm hoping to find something that would allow you to bascially configure an application's UI and screenflow via an XML file, or some other configuration mechanism, and allow you to plugin different "...

jQuery: looking for a lightweight suckerfish menu plugin

hi, i'm looking for a good suckerfish-like-menu which supports both vertical and horizontal layout, multi levels and delayed collapsing on mouseout. any recommendations? thx ...

Datanucleus 2.x AND Eclipse RCP 3.4

Hi, ANYONE using Datanucleus (http://www.datanucleus.org/) with ECLIPSE RCP? Eclipse DOES NOT recognize Datanucleus has a PLUGIN, with versions of DN newer than 1.1.0m3 :-( The JARS i currently use, and the LAST ONES being recognized has plugins by eclipse (copied directly to \eclipse\plugins folder) are from datanucleus-accessplatfor...

IntelliJ and Ruby plugin: Won't load

I'm trying to enable Ruby via the plugin manager, and I receive the following error: Plugin "Ruby" won't be able to load because required plugin "com.intellij.modules.ultimate" is disabled. I'm using the latest community edition. What's going on? ...

Plugin for making marquee like text using jquery

Hi everyone... In the process of making an old webpage standard compliant, the validator came across a marquee tag... and screamed bloody hell.... Is there any good jquery plugin to achieve the same effect as the marquee tag...? I googled around a bit and found a couple but both involved enhancing the animation of the marquee tag... A...

Internet Explorer plugin

I have created the plugin which change the content (add a small picture after each link). But when I visit HTTPS-sites then IE shows popup: "To help protect your security, IE has restricted ......". I pressed allow button, my pictures were displayed. However IE shows it again. And it happens again and again. What have I done wrong? Have...

Live testing jQuery selector

Is it possible to conveniently test jQuery selectors on some random web page using some sort of plugin for browser (Firefox)? It would be nice if it could automatically highlight selected elements. ...

How do I make a textbox take only numeric characters using jQuery?

I need to make a textbox that only allows numeric characters. I've looked through several numeric plugins and can't find one that I like. I'm looking for either a plugin recommendation with the associated URL or syntax showing how to get started on making my own plugin. ...