plugins

Jquery DataTables Plugin

Hello Everyone , JQuery noob here ... I have a Question regarding the DataTables Plugin.DataTables link. The Plugin claims that: A common use case for this is when you are displaying live information which could be periodically updated Being a newbie, I cannot figure out how to initialize the Table using Ajax, so that the ta...

editor with plugins in ruby?

Hi. I'm looking for extensible linux editor(GUI) that may be extended with plugins written in ruby. Editor shouldn't be written in java or ruby. Any ideas? ...

jQuery + jQuery Form Submit Plugin + jQuery Validation Plugin

I realize this has been asked a few times, but wondering if you can help my situation out. Background: I've tried to create a form that submits using Ajax (jQuery Form Submit). Which I have gotten to work fine, and then I wanted to get validation on the form. Which I was able to get to work using jQuery Form Validation Plugin. But I can...

Handling application exit in a Cocoa plug-in loaded into a Carbon application

I have a Cocoa plug-in that is loaded into an existing Carbon application. When the plug-in is first loaded, the Carbon application calls an initialization function, Plugin_Init() and in that function I set up the environment like so: //this is the global autorelease pool static NSAutoreleasePool* globalPool = nil; void Plugin_Init()...

Npapi set timer function

I'm still running Firefox 2.0.0. For backward compatibility reasons I'd like to know weather there is a easy way to replace the NPN_PluginThreadAsyncCall, NPN_ScheduleTimer mechanism that the newer npapi supplies. The only solution that I would come up with is to evaluate a javascript "setTimeout" that would call the plugin then ......

How I can access resources of local filesystem and manipulate them from browser

I need a technology to: a) From the a browser, a web page, browse to the user filesystem (with his authorization) b) Let user select a folder and search for images c) The folder can contain huge jpg images (up to 20Mb) d) show a resized version, very tiny version, of the founded images inside the browser e) play with the thumbnail (reor...

Silverlight Issue with Firefox 3.6?

Recently I updated my firefox to 3.6 and the silver light app on my web app has weird behavior. No button click happens in the silverlight app, it just gives it the focus and if we 'TAB' around, we can get the click working. But this is not like the previous behavior in FF 3.5.7. Very inconvenient for the unsuspecting users. This woul...

m2eclipse : Maven dependencies as JAR's not projects

I'm having maven project on Eclipse with m2eclipse plugin. This project has some dependencies. Some of them are libraries as slf4j, apache-commons etc. But there are also mine libraries, that I'm developing simultaneously in eclipse. Unfortunately m2eclipse creates build path in such a way that my libraries are added to the classpath not...

Is it possible to use the TestNG plugin with Netbeans 6.8?

I downloaded the TestNG NetBeans Plugin and tried to install it in my NetBeans 6.8. I'm running NetBeans IDE 6.8 (Build 200912041610). When I click install, I get this message: Some plugins require plugin External Execution Support to be installed. The plugin External Execution Support is requested in version >= 1.19 but onl...

Generating Scala code trees from a Scala compiler plugin

There are a few resources on the web that are instructive in writing Scala compiler plugins that pattern-match against the code, but these don't help in generating code (constructing symbol trees). Where should I start to figure out how to do this? (If there's an easier way than to manually build symbol trees, I'd be interested as well.)...

Can I have Vim ignore a license block at the top of a file?

Is there a way to use folds or some other Vim-script black magic to hide license blocks at the top of files? I don't like that they take up such a large section of my editing pane; I like to get a sense for what a file is doing when I first open it, rather than a face-full of boilerplate. ...

Searching for a good PHP based Web Counter

hi, I am running a php based web application and within that application I am using bbclone to count visitors and site activity. Unfortunately it doesn't work that nice as expected because bbclone counts a lot of robots and therefor my statistic is not that accurate as it should be. So do you know any good php based web application cou...

What is best practice on ASP.NET MVC projects and extensionable/skinned systems?

Hi! I've been wondering about best practices on creating a project in MVC, and let others create extension/modules/plugins and skins/themes etc, for it. For example WordPress is great at this. Just upload a file or folder. Or even browse the plugins directly from your WP administration and install by a simple click. Does anybody here...

Jquery form plugin. Issues submitting loaded form

I have been using the jquery form plugin to submi forms on my page and it works great. But when I try to submit a form that has been loaded using .load it doesn't work. This is my code: $(document).ready(function() { //shows loading screen whilst posting via ajax $().ajaxStart($.blockUI).ajaxStop($.unblockUI); ...

Looking for a plug in for eclipse to draw state charts

I am using Java in eclipse, It would be wonderful if I could find a plug in which can draw state chart from a XML format. ...

Visual Studio Web Deployment project auto compress js and css

Is there a way to make the web deployment project automatically compress js and css files when building it? how can I automate this process? ...

jquery plugin to show multiple elapsed time timers on a page?

Hello everybody. I need to show on a page multiple -time zone independent- elapsed time timers. I'd like to have something similar to what is shown on the NASA mission pages, where they show the mission time (e.g. http://www.nasa.gov/mission_pages/shuttle/main/index.html). I'd like to use a jquery plugin for that, so I'd like you to adv...

Gedit folding plugin

Hi! I am looking folding plugin for gedit. Try this http://clck.ru/zPL, but he did not satisfy me. Maybe that tells something. ...

How to detect/prevent a third-party class's constructor code?

I have a plugin interface that allows third-party developers to add custom plugins into my application. Performance and application responsiveness is very important to me, so I provide explicit "Initialize" and "Shutdown" implementations in my interface contracts. However, one thing out of my control is constructor code that should not ...

Dynamic class loading in Python 2.6: RuntimeWarning: Parent module 'plugins' not found while handling absolute import

I am working on a plugin system where plugin modules are loaded like this: def load_plugins(): plugins=glob.glob("plugins/*.py") instances=[] for p in plugins: try: name=p.split("/")[-1] name=name.split(".py")[0] log.debug("Possible plugin: %s", name) f, file, desc=imp.find_module(name...