plugins

How to make controls "tabable" when loaded from plugin in Cocoa app?

I have an application thad loads in plugins that have their own UI. There is an IBOutlet called ContainerView in my AppDelegate. When the plugin loads, it puts its own view (that is stored in a xib in the plugin bundle) into the Container view like so [ContainerView addSubview:viewFromPlugin]; When the view loads, everything is fine ...

Setting up magic routes for plugins in CakePHP 1.3?

I'm working on upgrading my project from CakePHP 1.2 to 1.3. In the process, it seems that the "magic" routing for plugins by which a controller name (e.g.: "ForumsController") matching the plugin name (e.g.: "forums") no longer automatically routes to the root of the plugin URL (e.g.: "www.example.com/forums" pointing to plugin "forums...

How can i use the Pluggable ASP.NET Components on my project.

http://msdn.microsoft.com/en-us/library/aa479332.aspx form this site i download the MSDNElmah.msi.After install this, i get a solution Contain .aspx and web.config file and one dll.This site have some information about this plugin,but it's seems to difficult to me.I can not use it on my Project.I want to use this plugin on my project.Ple...

IntelliJ IDEA plugin development: Get classes VirtualFile (or paths) for a specific source VirtualFile

Hi all. This is a cross-post from http://www.jetbrains.net/devnet/message/5264436#5264436 - I failed to get any answer on that forum for two weeks now, so I'm re-asking it here (please don't flame). This question refers to plugin development for the IntelliJ IDEA IDE, specifically targeting java development: Is there any API to get th...

Cannot install Visual Editor Plugin on Eclipse

I try to follow the instructions from here to install a Visual editor pulgin for Eclipse: http://wiki.eclipse.org/VE/Update Both online and offline installations fails with the following mistake: Cannot complete request. Generating details. Here is the complete log: Cannot complete the install because of a conflicting dependency. So...

ASP.NET plug-in architecture, settings problem

I want to divide business layer (BLL) of an asp.net application into multiple components. Each component is a .NET class library which is compiled as a standalone DLL. These components should have their own configuration files. For example "MyNameSpace.Users.dll" contains classes about users of the website and there's a password policy t...

Problem with writing mobilesubstrate plugins for iOS

I am trying to hooking message sending for iOS 3.2, I implement my own hook on a working ExampleHook program I find on the web. But my hook apparently caused segmentation fault everytime it hooks and I don't know why. I want to hook to [NSURL initWithString:(NSString *)URLString relativeToURL:(NSURL *)baseURL; and here is my related...

what does calling ´this´ outside of a jquery plugin refer to

Hi, I am using the liveTwitter plugin The problem is that I need to stop the plugin from hitting the Twitter api. According to the documentation I need to do this $("#tab1 .container_twitter_status").each(function(){ this.twitter.stop(); }); Already, the each does not make sense on an id (the author uses $(´#twittersearch´) ) and w...

Writing a Bazaar plugin - register command?

Hi, I'm having a problem with writing my Bazaar plugin. I've been trying a few different things, and this is the current state of my file: ''' Testing Bzr plugins ''' from bzrlib.commands import Command, register_command version_info = (0,0,1, 'dev') ...

How to use server,Xml,email error log store process on elmah

using elmah i can save error log on database,email,xml .They are individually works well .I want to work in together.Suppose in my config file i can can active server log than i can not active xml log but i want to work on both .How to do. <elmah> <!-- Change this to 1 to allow remote access. If you do, be sure to lock down the...

jQuery Autocomplete plugin not working with jQuery 1.4.1

I've been using the JQuery Autocomplete plugin with JQuery version 1.3.2, and it has been working great. I recently updated JQuery in my project to version 1.4.2, and the Autocomplete plugin is now broken. The JQuery code to add items to a textbox on my web page doesn't seem to be getting called at all. Does anyone know if the JQuery ...

Useful Qt Plugins

I'm a tad new to qt and so far I really only added qwt; but I was wondering, what are some other useful qt plugins? And is there a list somewhere? Thanks in advance. ...

Creating a jQuery Plugin, How do I do Custom Scopes?

I would like to create a jQuery plugin with an API something like this: $("#chart").pluginName().attr("my_attr"); Instead of these: $("#chart").pluginName_attr("my_attr"); $.pluginName.attr("#chart", "my_attr"); Basically, instead of having to namespace every method that acts similar to ones in jQuery, I'd like to "scope" the metho...

Ideal place to compose parts when using MEF + MVVM light toolkit?

Now that I'm working on my newer application that uses MEF with the MVVM light toolkit, I've run into a case where I can't load specific plugins because they rely on a part that isn't getting exported. That part isn't getting exported because it's a View, and the View isn't resolved with MEF (yet). It seems that every time I play with ...

Safari/Chrome problem with ajaxsubmit?

Hi I'm currently having some weird issues with ajaxsubmit (http://jquery.malsup.com/form/#ajaxSubmit), which I'm currently using in a project. I have a flow where I need to open a form into a modal window. I'm using fancybox for that and it works like a charm. When the form has been forced to open in the fancybox window there can happ...

How to extend Eclipse's compare context menu?

I want to create a plugin that displays additional information about Eclipse's compare results. For example, clicking a difference in Eclipse will bring up additional meta-information in my new view about who made the change, when it was made, what are the related changes, etc. I've got everything else figured out except how to call the ...

Plugin update strategies

I'm developing a plugin which is used in several applications. This plugin is a rails engine with own controllers, models and routes. The controllers, views and models are being generated via simple generator in plugin. Also generator creates migrations for models' tables. The problem I'm facing now is that on any updates to plugin mode...

When is onBind or onCreate called in an android service browser plugin?

I have adapted the example plugin of the android source and the browser recognises the plugin without any problem. Here is an extract of AndroidManifest.xml: <application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true"> <service android:name="com.domain.plugin.PluginService"> <inte...

WMP_PLUGINTYPE_DSP_OUTOFPROC definition in wmpservices.h

Cannot download the WMP 11 SDK. It is now included in the huge Windows SDK and I am not able to download it now. I need to know the exact definition of WMP_PLUGINTYPE_DSP_OUTOFPROC in the form similar to WMP_PLUGINTYPE_DSP in the WMP 9 version of wmpservices.h which is: EXTERN_GUID( WMP_PLUGINTYPE_DSP, 0x6434baea, 0x4954, 0x498d, 0xab,...

When it is necessary to use Classes in PHP

Hello, I am a wordpress plugin developer. I saw the source of many pluginsand many plugin use "classes" in them and some without classes. Many huge coded plugins like "wp-postratings" does not use Classes and some small plugins use Classes. edit: Since classes have private, public and protected access specifiers, i feel a taste of s...