plugins

What does a browser plug-in enable that can't be done natively in WebKit on the iPhone/iPad?

The google earth API looks awesome. Unfortunately you can't use it on the iPhone/iPad, because the UIWebView does not allow plug-in's. The functionality as rendered in maps.google.com - earth view is amazing. What is the technical reason for using a plug-in vs doing something with just AJAX/native? Is it a technical hurdle, or a busi...

How to bind plugin with element

I decide to write a plugin, but there is a moment I don't know,and i can't find documentation about it so I decide to ask here. For example when we wrote $("#some_element").nameOfPlugin(); There are a lot of functions in nameOfPlugin, but how some_element connects with the plugin? An example, or a link to some documentation will be...

custom Tab Builder with tabs_on_rails plugin

I have use tabs_on_rails plugin to do tabs view. and its documentation told me that we can custom a builder to override methods like open_tabs: the method called before the tab set close_tabs: the method called after the tab set tab_for: the method called to create a single tab item the problem is I don't know where to put the overri...

JQuery DynaTree plugin - how to invoke hyperlink

I have a link on web page <li data="url: 'www.mypage.com?index.php?CId=2&MId=14&MTId=1'">mylink In my js script I have $(document).ready(function() { $("#tree").dynatree({ persist: true, onPostInit: function(isReloading, isError) { this.reactivate(); }, onActivate: function(dtnode) { var isInitializing = dtnod...

jquery airport plugin : How can I make it work with special characters ?

I'm using the cool jquery airport plugin and trying to make it accept special characters (like accents, "&", etc.). By default it only works with a-z. Has anybody found how to do that ? ...

(Wordpress) Only show future posts in archive & search results

Hi there, I have an events category which is searchable by a sub-category (by city where the event is being held). I have the 'The Future is Now!' plugin to allow me to publish future dated posts but hoping that I can set up a paginated template that, when a post 'expires' it will no longer show up in the loop/archive. I'm also wonderi...

Which authentication gem/plugin should I use for Rails 3 running on CouchDB?

I'm building a Rails 3 application on CouchDB (using SimplyStored gem) and I'd like to use some existing gem/plugin for authentication, instead of building it from scratch. Problem is, I can't find anything that works smoothly for CouchDB, everything assumes that you're running on ActiveRecord. Do you have any tips? ...

PHP Plugins System

Possible Duplicate: Best way to allow plugins for a PHP application Hello all.. I'd like to learn how does the php plugins system works.. So can anyone explain the idea of it for me in detail, I saw many posts and explanations but I didn't learn and understand any of it. Edited: Sorry.. I meant if I want to make a plugins sy...

Firefox crash instantiating NPAPI plugin

I had the whole plugin working previously as a very simple implementation with lots of global and static variables, i've now converted it to an object based design so I can instantiate multiple instances safely etc. However, since I have done that, when creating an instance of the plugin it gets as far as the MyScriptableNPObject::NewOb...

Eclipse 3.5+: Loading plug-ins from auto-created .eclipse directory inside user's home directory

I have downloaded the latest Eclipse (3.6) for my Linux machine and extracted tar.gz to the /opt/eclipse directory as root. I started Eclipse as a normal user and successfully installed some plug-ins through Eclipse. The plug-ins are visible under "Installed software" from Eclipse, but they doesn't seem to be working - no new perspective...

How to have a plugin import UTI types

I'm working on a video sharing application that can load plugins that share to different places (Youtube, Twitvid, Facebook, etc.) I have a plugin that reads in a custom file type. We'll call it a .foo file with some information about the video being shared. So I put this foo UTI type in the imported UTI type section of the plugin bundle...

how to detect model belongs to which plugin in cakephp?

How to detect in AppModel, model that is loaded, belong to which plug-in? EDIT: When I check model name or other details in AppModel, there is no difference between the model loaded from the main program and a model that within the plugin loaded. I need to know if model belongs to the plugin to do some operation on it. ...

Usage Tracking / analytics software for widget and bookmarklet/plugin

Launching a summary technology and looking to generate analytics on the performance and usage of the different products offered. We have a widget, a bookmarklet, and soon a plugin. Need to see individual usage details and manipulate stats for meaningful performance analytics to make intelligent decisions on ux optimizing. ...

Simple: how can I get this jQuery plugin to work?

I found a plugin that scales and positions an image as background. I'd like to use it but there is no documentation. Here is the plugin: http://wearebuild.com/wp-content/themes/build/js/jquery.bleedImage.js It says: Usage: $('#img').bleedImagebut I don't know what that means. How do I get it to use my image with class "bleedImage"? T...

jQuery effect plugin

I'm looking for a jQuery plugin that wobbles DOM elements like on http://www.iconatlas.com/ I checked their source and they use jQuery but it doesn't look like they're using a plugin to do that. Anyone know of a plugin that does something similar? ...

Eclipse RCP get elements by ID

I don't know RCP very well yet, but I've been reading a lot of the docs. I don't know if my question makes sense; I apologize if not and beg that you try to work out what I mean and come up with some kind of answer. I have a tree view element, which has a double click listener on it. In another part of the window there is a layout folde...

Interface Builder: Tool Kit (BWtoolkit) Installation

I tried installing BWtoolkit in my interface builder following the instructions on the BWtoolkit site. I downloaded the toolkit and installed it by clicking on BWToolkit.ibplugin. I can see the BWtoolkit when i go to Interface Builder>Preferences>Plug-ins but none of the objects are appearing in the library window. The only folders ...

How to start IntelliJ idea despite of a plug-in error

Hi, I have a problem with my IntelliJ idea 9 IDE. I installed the La Clojure plugin (http://plugins.intellij.net/plugin/?id=4050) and the IDE needed to restart. Now I get the following error on startup and it won't let me continue working: java.lang.AssertionError: Source file C:\Users\foo\.IntelliJIdea90\system\plugins\org.intellij.cl...

How can I debug a Vim plugin not being loaded?

I'm trying to use the Vim snipMate plugin, and I've installed it as it directs, but when I press tab nothing happens. How can I debug this? Are there log files Vim makes when it tries to load stuff? How can I see what plugins its loaded correctly? I've tried :sni<tab> to see if there's anything called snipsomething installed but noth...

JQuery Simple Colour Picker Click Not Firing

Hello! I've downloaded the Really Simple Color Picker in jQuery from this site I've followed the instructions, an implemented the colorpicker like so: The HTML <input id="DashboardTreeHeaderFontColour" type="text" value="#333399"/> The Javascript $(document).ready(function () { $("#DashboardTreeHeaderFontColour").colorPicker() });...