plugins

Jira and TFS integration?

Does anybody know of an plugin that can be used to integrate Jira with TFS? ...

Wordpress init remove_action with conditional tags

I need to do this for a theme: remove_action( 'wp_head', 'rel_canonical' ); BUT I need to do that with conditional tags. The code below don't work. if(is_page('comment')) { remove_action( 'wp_head', 'rel_canonical' ); } AND I need to do this with a plugin. I tried to hook the if statement into the function test, like this: add...

Proper alternative for the unreliable Search and Replace of Visual Studio?

Today I was actually wondering why I've stuck with it for so many years without actively complaining about it. Doing a "search & replace in all files and folders of a solution" is something I quite regularly need to do, esp. when refactoring tools fail me. Unfortunately, "all folders and files" means "some projects and some other files"....

difference between extension and plugin?

what is the actual difference between a extension and plugin? eg. is phplivex a extension or plugin? i have to know in which folder i should put it in ...

Where can I find Flash Plugins?

Are there any plugins for Flash CS3 (or greater) that expand Flash's ability. Actually, i'm sure there are, where can I find them? EDIT: Preferably free and from places besides Adobe. (Not that Adobe's bad, but I want variety.) EDIT2: I amreferring to extesions, not components, although references to free component's are also helpfu...

NPAPI plugin : NPN_Invoke returns false

Hi, I have the following code in my npapi plugin: NPIdentifier idcreate = NPN_GetStringIdentifier("createElement"); NPVariant ret; VOID_TO_NPVARIANT(ret); NPVariant arg; STRINGZ_TO_NPVARIANT("div",arg); bool result = NPN_Invoke(instance(), NPVARIANT_TO_OBJECT(doc), idcreate, &arg, 1, &ret); The return ...

NPAPI plugin inject script

Hi, I'm developing an npapi plugin. I am trying to inject a script into the current webpage of the browser,but am not able to do it. Any hints or suggestions as to how i should proceed with it, would be really helpful. Thanks ...

Version numbers of Rails plugins?

Is there a standardized command to determine the version number of a plugin, similar to ruby script/about? For example, I need to figure out which version of exception_notification I'm running. Here's my list of plugins in my vendor/plugins directory active_merchant annotate_models calendar_date_select gruff ...

Writing Visual Studio 2010 Plugin, would like to show a toolbox like Resharper in code editor.

Hello, I would like to write a plugin for Visual Studio 2010 but in fact I face some problems. What I want to do seems easy, I would like that a little toolbox appears when selecting the text in code editor like in Resharper (little pen with menu that helps in refactoring) or like here: http://www.axtools.com/products-vs2010-extensions...

CakePHP Media plugin with php safe_mode

Hi, i'm trying CakePHP( 1.2.6 ) and Media plugin( 0.60 ) on shared server with php_5.2.5( safe_mode : On ). And upload jpeg file by media plugin, following error message apear on attachments.ctp( media plugin's element ). An error occured while transferring the file. How can i fix this error without php cgi_mode on shared server...

Is it possible to run the Android emulator as root from NetBeans on the Mac

I have installed NetBeans 6.8 on my Mac OS X (Leopard) system and use the Kenai plugin for this platform to create an Android application. The trouble is that I cannot run the Android emulator from NetBeans logged in to the Mac as a normal user. I can run the emulator from the command line and the Eclipse environment when logged in as ...

Eclipse J2EE plugin

I want an Eclipse J2EE plugin which I can install directly from Eclipse. I searched about it on Google and found some ones but couldn't figure out how to download them directly from Eclipse. One plugin I found was WTP but couldn't find the location of the WTP repository that I can enter in the Eclipse's Software Update tool. I am usin...

a special kind of jquery slider plugin

i want to have a special kind of slider that contains elements like this one: http://jqueryfordesigners.com/coda-popup-bubbles/ the differences are: you can scroll with your KEYBOARD right pile and left pile. the slider jumps to the next element and NOT the next set of elements. the element in the center will be LARGER than the other...

Running C# app inside browser as a plugin

I have a small 2D game engine written in C#, using DirectX. Is it possible to somehow run it in a browser as a plugin? Like for example Flash and others, where you go to a site with a game and it will ask you to install a certain plugin and then you can play the game in the browser, with mouse and keyboard input. I have searched around f...

In Firefox, how do I disable "Install Missing Plugin" when my custom plugin is not found?

I don't want users to see the "install missing plugin" on their firefox when a custom plugin isn't found. How do I disable this? <object height="0" width="0" id="mycustomPlugin" type="application/x-vnd-puppyt"></object> ...

Rails Browser Syntax Highlighting Plugin?

What is the standard Rails plugin for syntax highlighting (in a website admin panel for example, not for TextMate) that works right out of the box in a Rails project? ...

wordpress external javascript file for inline editor plugin?

Hi php wordpress people, I'm using inline editor plugin for wordpress I am aware that for seo purposes it is best to make sure these are external files. When I view the source in my browser I can see the javascript for inline editor plugin is displayed in the page code. Is there a way to make this an external js file, within the wordpr...

jQuery auto-apply plugins

hi, wrote a little jquery gallery plugin and i'm initializing like this: myDiv.tGallery(); my question: is it possible to have jQuery detect if the HTML markup contains gallery code (eg. defined by its classname .myPlugs_gallery) and auto-apply the plugin code? currently i'm having a global init-routine which goes like $(".myPlugs_tGa...

Rack-Bug panels won't appear in my Rails app

I've installed Rack-Bug for my Rails app, but can't get the panels to appear. project: http://github.com/brynary/rack-bug additional instructions: http://wiki.github.com/brynary/rack-bug/security yet more instructions: http://stackoverflow.com/questions/1912983/rack-bug-installation-issue-server-does-not-start (the docs really suck for ...

Issue with code using Interface Options Addon in World of Warcraft

I am writing a UI to a pre-existing addon. Or, more specifically, adding configuration options and trying to take advantage of the Interface Options Addons (IOA) panel. I've been referencing wowwiki, specifically the page that talks about using that panel, but more generally a bunch of pages. I'm running into a problem that I'm sure is ...