plugins

Qt plugin + DOM access

Hi, I am writing a browser plugin with Qt. Im currently facing a problem of getting the dom object of the current page of the browser from my plugin. Any info/help on how to do this would be extremely appreciated. version: 4.6 browser: firefox/opera If it isnt possible to get it directly via Qt, how do i convert the NPObject that i get ...

jQuery submit, how can I know what submit button was pressed?

I'm using ajaxSubmit plugin to send Ajax forms, but for some reason this plugin doesn't send names/values of input[type=image]'s. So now I 'm catching submit event before ajaxSubmit will handle form and I'm guessing if it possible to find out what button was pressed? ...

Rails Plugin|Gem that emails error reports?

can you recommend me a Rails Plugin/Gem that emails error reports? ...

Is it possible to display Indentation guides in Vim?

I'm a longtime Vim user (3 or 4 years) who has recently started dealing with some deeply nested code. This code is indented with spaces, not tabs. I would like some clean and non-distracting indication of indentation to help with keeping track of which block of code I'm in when I'm looking at something many levels deep. :set list ...

jquery plugin local variables between methods

I'm with trouble with a jquery plugin i've quickly playing around. Its fades in when a start handle event of ajax is called and stops with complete handle. Exemple: start : function (e,o) { target.mask(); target.showMaskAjax(); }, complete : function (e,o) { target.hideMaskAjax();.... }, The question is..when I fire 2 ...

visual studio 2008 dll issue

Hi, I am new to Visual Studio environment and QT, I am working on developing a browser plugin using QT on visual studio 2008. A 'dll' has been prepared and copied to the plugins folder of the Mozilla firefox and Internet Explorer, it works just fine, I viewed the content using the plugin in the browsers, It all started when I tried to t...

jquery cycle with previous and next previews

I have created a slideshow using the jquery cycle plugin with previous and next buttons. What i am trying to do is when the user hovers the previous or the next button to get a tooltip with a preview of the previous or the next image respectively. Any ideas on how to achive something like that? ...

Java import error in eclipse

I have a code written in java. when i load it in eclipse it shows an error in the java code import line " The import com.sun.java.browser.plugin2 cannot be resolved" import com.sun.java.browser.plugin2.*; How can i fix this error..?? ...

Windows Explorer: How to create additional button?

Hello Explorer of Windows 7 uses a new light-blue bar with buttons like "Organize", "Share", "New Folder" etc. How can I create a new button ? Do I need to create a plugin for explorer.exe, and if, how do I do it (using Visual Studio .NET) ? Or is it a simple registry key I have to set which points to an exe or bat? Thanks in advance...

AppDomain for loading plugins changing when writing to network??

I wrote a plugin loader that sets up a new AppDomain and loads the plugins from a directory inside the main application folder. The plugins write out various types of files to a given directory when requested. Everything seems to be working fine, but when some users try and write to a valid network path, we're seeing errors in loading ...

Using jquery plugins inside prettyPhoto

I have been trying to combine prettyPhoto and 'Simple Jquery Panorama Viewer' with little success (especially in IE!!). I have attempted to use the inline method with the panorama viewer in a hidden div, didn't work. So I tried pulling it through from a seperate page using iframes - didn't work. I am guessing there is a conflict between...

Firefox 3.6 plugins fail on Mac?

I just upgraded my mac to Firefox 3.6, and now neither of my TIFF Viewing plugins work. in 3.5, If I had Quicktime on, then I'd get the tiff, viewed through quicktime. If I had Quicktime disabled, but my own plugin, AcellViewTIFF enabled, then I would get ViewTIFF viewing the TIFF. Since I'm the author of ViewTIFF, That's how I had it ...

How do I include an instance method inside a before_save callback in a plugin?

Hi there, I'm creating a plugin and am having a hard time defining a before_save filter that calls an instance method I've just defined. Here's a quick sample: module ValidatesAndFormatsPhones def self.included(base) base.send :extend, ClassMethods end module ClassMethods def validates_and_formats_phones(field_names = [...

How do I get the VIM matchit plugin working with ColdFusion and HTML?

I've been attempting to follow the instructions on the Vim wiki to get the matchit plugin working with ColdFusion (*.cfm) files containing both ColdFusion and HTML tags running on MacVim. I've got the syntax file for ColdFusion (cf.vim) installed in $HOME/.vim/syntax/cf.vim, the latest version of matchit installed in .vim/plugin/matchit...

What vim plugins mix results in this interface

I saw this VIM UI and thought it was awesome and now I want it. Anyone know what plugins the author is using? http://werkzeug.pocoo.org/wiki30/files/wiki30.mp4 ...

GWT+IntelliJ Idea 9

Hi I am Rupeshit. I download IntelliJ Idea 9.0 community version and now I want to create a gwt application in it but I am not getting that GWt option while creating the project.I also saw some video on google but still not get solutions.We add to add plugin for IntelliJ idea for gwt as we are doing it for Ecllipse or what is the method....

Which browser plugin technology to use for cross platform design?

I mean ActiveX is IE only and dead, and so java applets are dead. Flash is still not present in mobile browsers, Mozilla is present only on 1 phone, so XPCOM is also not an option. How do you write a plugin that need access to file system, and do some other things, like unzip files, upload, download, etc. ...

How to delete bookmarks in NERDTree (Vim)?

I checked the documentation but couldn't find it. Does anybody knows? ...

Firefox plugin that can modify incoming data before the page processes it?

Hi, Say a webpage loads an external javascript at load, is there any such FireFox plugin that I could use to modify the javascript before the page actually processes it? (not just specifically javascript) Thanks in advance. (also I'm pretty sure Tamper Data plugin only changes header data and not actual content being received) ...

Polymorphic / Plugable PHP Classes

I have a question which is sonewhat more of a design question. I have a class which defines a bunch of functions. However, I want that the behaviour of some functions are changeable during runtime - or at least working like a plugin interface during design time. eg: class MyClass { public function doSomething(); } $obj = new MyClas...