plugins

C# plugin system design

So I am creating a plugin system for my app. I have the following components: 1) Main Application 2) PluginInterface.dll 3) Plugin(s).dll The problem now is that, when I create my plugins and compile them, there are more then just the Plugin.dll file. It has other required files in the Release directory such as the PluginInterface.dll ...

Hide Pages from certain "Contributor/Editor/Etc..."

Hi there, curious if there's a WP plugin that lets me control what Pages certain admin Users (not front-end) can edit. Thanks in advance, -g ...

Writing 3rd party plugins for closed-source Netbeans Platform Application

I have created a Netbeans Platform Application and deployed it (created installer / zip bundle etc.). I have also made provision for extension points by creating Interface modules in the application (is this the correct way?). Now my question is, how do I write modules to extend this application, without having to depend on the source o...

MEF: "Unable to load one or more of the requested types. Retrieve the LoaderExceptions for more information".

Scenario: I am using Managed Extensibility Framework to load plugins (exports) at runtime based on an interface contract defined in a separate dll. In my Visual Studio solution, I have 3 different projects: The host application, a class library (defining the interface - "IPlugin") and another class library implementing the interface (the...

Error (in GTK?) when trying to install EclipseXul plugin

When installing EclipseXul plugin on EclipsePHP, it says: Cannot complete the install because one or more required items could not be found. Software currently installed: Shared profile 1.0.0.1288098146566 (SharedProfile_epp.package.php 1.0.0.1288098146566) Missing requirement: Shared profile 1.0.0.1288098146566 (Shar...

Accessing audio stream through browser.

Let's say I'm playing some audio on my system (streaming or stored on the system). Is there a way for a browser to access the bitstream being played? Can a Java applet do this? What about Flash or Silverlight? ...

BrowserPlugin crash in android 2.1/2.2

I meet the same problem as below mentioned: http://code.google.com/p/android/issues/detail?id=6172 Since it's not answer yet, i move it here for help below is the description in detail: Segfault - Steps to reproduce the problem 1. Download eclair source code 2. make 3. make SampleBrowserPlugin 4. adb install out/target/product/gene...

Modify Protocols With Chrome Extension?

I have an idea for a chrome extension where I take a protocol, just for example, helloworld:// and in the url bar you could do helloworld://check this out and i could have the plugin alert "check this out" or do some other complex AJAX stuff? Is this possible? ...

Creating a foreign language on-screen keyboard for CKEditor

I am using CKEditor as a rich text WYSIWYG Javascript editor. I would like to add an on-screen keyboard so that they can easily enter text from non-English alphabets. I was planning on finding a JavaScript on-screen keyboard and adding a custom button with a CKEditor plug-in to trigger it. I've found a couple of JavaScript on-screen...

Plugins + Extensions on Safari 5.0.1

Hey guys, My question is very simple: Is it possible to pack plugins into extensions for Safari? For instance, the exact NPAPI plugins which work on Google Chrome also work on Safari. However in Chrome I'm shipping the plugins as a part of an extension (a CRX package). This is needed because HTML and JavaScript is injected into a specif...

does anybody know a simple base for a plug in python application?

I'm discovering python, and I want to create a plug in application, I guess this is simple using python, but it will be nice create a generic start point application. To be more specific, it could be a file.py that reads a XML or INI file to get the plug in's directory path, then load all .py files as plug in Any Ideas? ...

Do tools exist for pair programming with a developer and a domain expert?

I would like to know if any tools exist to enable pair programing activities between a developer and non developer expert in the related field. An example of such a tool could be an IDE plugin that would require a plain language description of functions/methods inline with their arguments. This plugin could then render a section of cod...

problem with nextgen plugin

I have a problem with Nextgen gallery,after activating some plugins it doesn't show the submit buttons(insert, cancel). Then i have deactivated all plugins, but that doesn't help. I haven't any experience with wordpress, so any suggestions would be very useful. Thanks much ...

Rails plugin failing with an empty folder

Hi, I'm trying to install Abingo for my Rails application which seems can only be installed as a plugin, but it consistently fails silently with just an empty folder created. I've installed plugins in the past (although not on this app, with another in my InstantRails folder), but for some reason today nothing is installing at all, and ...

c# plugin system question

so I implemented a really simple plugin system. i have the following Assemblies: MainApp IPlugin PluginApp Both MainApp and PluginApp conatin a reference to the IPlugin. Now, in MainApp I scan a plugins folder and search for things that implement the IPlugin interface. However, it is not working because both MainApp and PluginApp r...

Disclaimer delay in Wp-disclaim-me plug-in

Hi guys, how i can delete horrible delay disclaimer appearing during index loading on piccolipeccati.com website? I use Wordpress plugin called Wp-Disclaim-me... i want as first thing disclaimer's loading, not a delay of disclaimer and the appearing of the home page for just 1/2 seconds... Help Me! thank you! ...

Set default button on html elements with jquery plugin

I am looking at writing a jquery plugin that takes a number of input elemts such as input elements, textareas, select html elements etc and once the enter key is pressed in any of the above items, a input button is triggered. As such, the button is set as the default for the fields. Any tips on doing this? ...

Need help with jquery validation plugin submitHandler redirect

I am having problems using the jquery validation plugin's submitHandler. I am working within the confines of some code that I do not have access to change so I am trying to find some work arounds. This is what I would like to do... After the form validates, when the user clicks the submit button, and it is successful redirect the page...

how to use thrid party plugin in rails3

class Category < ActiveRecord::Base acts_as_tree :order=>position scope :top, where("parent_id is null") scope :sub, where("parent_id is not null") before_create:add_uuid private def add_uuid require 'uuid' self.uuid=UUID.new.generate end end i used a uuid plugin into rails i have test the code UUID.new...

Use classes from one plugin in another, extend them

Is it possible to do this in V1 plugin? http://confluence.atlassian.com/display/JIRA/Component+Plugin+Module - isn`t our approach, because we want not to inject objects, but have Abstract class on classpath, so that we can extend them and not to double our code. Thx in advance! ...