plugins

Com Error creating Visual Studio 2010 Plugin

I am attempting my first Visual Studio 2010 plugin and am attempting to reference the ActiveSolutionProjects like so private DTE2 _applicationObject; public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom) { _applicationObject = (DTE2)application; ...

jQuery: Simple, lightweight modal box

What is the simplest jquery plugin for modalboxes that do the following: Ajax by href Inline content modal Simple slide-down effect Little supplied styling (I don't want it wrapped in 15 divs of junk) Thanks! I've tried jQuery UI's dialog, but it's becoming problematic. ...

Reuse Loaded Assemblies in Web-Based Plugin architecture. Maximize Performance

Edit: I would like to keep the infrastructure as is, so while the framework ideas are appreciated, please keep your suggestions centered on the context I have provided. Background I'm building a web-based application that dynamically loads plugins. Each plugin comes with a manifest file that contains its dll location, namespace, and ...

Programatically creating menu hiearchy in Joomla

Hi, Let's say that I have a vast quantity of restaurant reviews in a database -- not Joomla articles, just database tables. I want to display these restaurant reviews as part of a Joomla 1.5 web site. I can write a component to display each review. That part is fine. But rather than listing the reviews as a list on a page, I want to us...

Problem with loading data from Java Struts2 Action into jqGrid using Java Struts2 jQuery Plugin

Hi I'm using Java at the core backend and JSP pages as GUI frontend. and also I'm using Struts2 to connect JSP Pages to my Java Core. struts2 jQuery plugin provides jquery capabilities as struts tags. see the showcase here: now I wanna load 2 very simple 1 columned rows into the grid provided by jQuery Plugin. I've got just this tag in...

extend jquery plugin object with functions

so im trying to write a new jquery plugin. base (this is not my plugin, just for better understanding): (function($) { $.fn.mySuperCoolPlugin = function(options) { // Build main options before element iteration var opts = $.extend({}, $.fn.mySuperCoolPlugin.defaults, options); var editText= 'pre ' + opts....

jQuery plugin to populate form controls from a JSON response?

Is there any plugin to populate any form control from JSON data with one command? I have a form with many selects, checkboxes and radiobuttons in it. Almost all controls depend on each other (many dependencies). Which way will be the shortest to describe all relations with controls? Example: Form to choose travel package contains contr...

How to send value of textfield using onClickTopics struts2 jquery plugin

Hi all, I'd like to send my textfield value when onClickTopics of one button. This button will reload the data from Jquery grid, but before reloading back bean of struts needs to compare few values from textfield. This is my button tag: <sj:a button="true" onClickTopics="submitSuccess" indicator="indicator" targets="result">Tampilkan</...

CakePHP: Use some javascript in plugin is error

example 1 : I maked tinymce helper I intent use compress tinymce but it dont run valid if i insert tinymce javascript folder in plugin's webroot. It'll dont compress but if I move tinymce javascript to app's webroot it 'll run compress good. example 2: http://www.jstree.com/ . I must move it app's webroot , too If anyone saw this ca...

Extending WCF Interface with Plugins

I'm building an application with a Silverlight frontend that communicates with a backend service via WCF. My service has an interface that handles all of the core communication with the frontend. The backend can be extended with various plugins and I plan on loading custom silverlight modules for configuring these plugins with prism....

how can I change wordpress editor Inset link's Class Names?

Hi how can i add one more class name to wordpress editor insert link style. Any wordpress plugin available for that? ...

Get title from textfield then use to display function

Hi. I asked this question previously although I don't think I did a great job of explaining it and the answers didn't seem to work so this is my second attempt. FYI, I'm using Wordpress. I wish to create an image slideshow plugin. The idea is that the user can enter the name of the slideshow into a text field then submit it which will u...

Firefox plugin dll dependency on the filename

Hello all, my current work tasking requires creating a firefox plugin. I've done this relatively easily on Linux but porting to windows has exposed a peculiar problem. To do the port, I refactored the basic windows example given in the mozilla source tree. I did this operation slowly and methodically, testing as I went. Aside from the oc...

How do I extend acts-as-taggable-on

I recently replaced acts_as_taggable_on_steroids with acts_as_taggable_on in my application and I keep running into a problem where rails cannot find a class associated with the new plugin. I think this is because I'm using the desert plugin and have extended some of the classes that exist both in the acts_as_taggable_on and acts_as_tagg...

Better to hack restful authentication or swap out to something newer like AuthLogin or Warden/Devise?

I've got a rails app with a functioning restful_authentication system but I need to add password reset (never got around to it before...). Also I'm going to be probably adding things like invitations and some features that don't require login. And to be honest I was never completely happen with the way that restful authentication invaded...

C# multiple sources, different threads, one event handler

Hi guys, I need somebody with high skills in threading and event raising. I have an abstract class A and two concrete classes C1, C2 (e.g plugins). Since I need them to communicate between each other, like "plugin-application" "plugin-plugin" communication, I have a method ExecuteCommand in the abstract class which should accomplish...

How do I run a specific goal with a particular configuration in a Maven plugin when I have several configurations for that goal.

See plugin config from pom.xml below. I can do: mvn myplugin:myGoal Which runs myGoal (both executions I suppose) but I want to be able to choose either the first or the second executions independently. I know I can add an id to the execution element, but how do I refer to that id on the command line. I'd like to get to something whi...

Adding a link on every date in jQuery plugins: datepick

Hi, I would like to add links on every date in my calendar. For example, if I click on the 25 august 2010, I would like that the page gets redirected to : xxxxxx/25082010/ (ddmmyyyy) The plugins is this one : http://keith-wood.name/datepick.html I can add an event when a date is selected (onSelect) but I can't get the date in the goo...

Create a Wordpress plugin that finds text in a post/page and replaces it with links

wordpress , plugins : hi , I want to create website by wordpress but I want to make speacial plugins .. and I made it but there are problem .. _ I have a website and I using it with wiki for contries in the world .. I want from the plugins 'when the visitor open the page for example 'United State' , I want from the plugins to search ab...

jQuery youtubin plugin only working with a selector

I'm using youtubin to embed youtube videos on a secure page. It works whenever I specify a jQuery selector: <script> $(function() { $('#foo a').youtubin(); }); </script> <div id="foo"> <a href="http://www.youtube.com/v/kUini08olkQ&amp;amp;hl=en_US&amp;amp;fs=1"&gt;YouTube Video</a> </div> It doesn't work when I just call youtubi...