plugins

After 17 years is it too late to fix C++ runtime extensibility?

The 1992 to 1993 timeframe was pivotal and fateful for C++. In the '92/'93 time frame I worked on a plugin architecture for Aldus PageMaker, which was coded in C++. PageMaker was built on a C++ OOP framework called VAMP, which assisted its portability between Mac OS and Windows. So we tried to use the features of C++ to build a plugin ...

Writing plug-ins for Adobe (Reader and PhotoShop) using .NET(C#)

I want to write plug-ins for Adobe products in .NET (C#) (specifically Acrobat Reader and PhotoShop). The requirement is to add a new command in the File menu. So for example in Acrobat Reader, I need to add a new "File >> Open My File" command that displays my dialog to open some file. I have heard about the Adobe Development Kit. Is t...

how to install javax and apache plugins in eclipse?

I'm new to java and trying to rebuild in eclipse 3.4.2 an old package that require javax (classes InternetAddress, Session and others) and org.apache.xpath.* (I don't know exactly why). I'm looking for update sites but google reports billions of pages. An explaination about how/where to find eclipse plugins without getting sick will be a...

Collapsing If-Then-Else statements in code editor (Delphi 2007)

Every once in a while I'm editing some long pair of if-then-else statements (or worse, nested if-then-else statements) , like, say, this: if A < B then begin DoSomething; DoSomethingElse; {...and more statements going on and on and on...} FinallyWrapUpThisBit; end else begin DoThis; DoThat; {......

Outlook Web Access Plugin Development

Has anybody written a plugin for outlook web access? Are there any resources to which you could point me or tips you can pass on? I'm probably more interested in OWA 2007 than 2003 but whatever you've got would be great. ...

Plugins, Interfaces or something else for customer specific exports

I'm writing a web application that needs to export data out of it. The problem is that every client requires a different format. Some want tab delimited, some comma seperated and even fixed width. Different data may also be needed by each export. What approaches should i consider to make it so that each client can have their own forma...

How to extend windows explorer functionality?

How would I go about extending the functionality of windows explorer in XP? Is there some way whereby I could create a "plugin" of some sorts that could hook into explore.exe to add additional folder browsing functionality? What language could I use to achieve this? This is an expansion of a question I asked here. ...

How to efficiently "make" with Vim

Hi, what I am triing to do seems a very basic stuff, but I can't find anything about it. I am working on a project built as usual: project |-- bin |-- inc `-- src I would like to make my project using the make command included in Vim. But each time I have to specify :make -C ../. I would prefer, if there is not Makefile file in the c...

How can I run the superscript plugin in Jedit?

The superscript plugin provides an environment to run a buffer text in different script engines. I have installed the plugin via the plugin manager -> superscript but now, when I enter in the buffer "2+2" and press "execute script" all I obtain is: bsh.util.BeanShellBSFEngine or org.apache.bsf.engines.activescript.ActiveScriptEngin...

Recommended Eclipse plugins for Java source code analysis.

Which plugins for Eclipse do you recommended for analyzing your code? Bug finding, unused code detection, suggested refactoring, ... ...

WordPress audio plugin: Display mp3 link if browser dosen't support Flash

I'm using the 1pixelout audio player plugin (version 1.2.3) in WordPress (version 2.7.1) to post short audio clips. When I load the site in a browser that doesn't have a flash plugin, there's no fallback method to play the audio. Is there any way to get the plugin to gracefully degrade to provide a vanilla link to the MP3 file when fla...

Validating against a schema that lives inside a plugin

Background: I have a small problem with Eclipse. I'm working on a workbench plugin which has some classes that validate incoming XML data against a schema. The schema lives inside the plugin project in a "./schemas" folder. Questions: When I run the application, how can I read the schema without using a hardcoded path? When the ap...

Firefox plugin and document.ready

Hi, I am trying to develop a firefox plugin, which should be executed, whenever a page is loaded.Can someone please tell me which event to use it. In firefox, document.ready gets executed when I open a new window and it does not gets executed, when I open a new tab :(. Any help is appreciated. Thanks ...

Hibernate Tool with eclipse ganymede

Hi i an using Hibernate tool with eclipse ganymede 3.4.1 . Now when i create the .hbm.xml file using the code generation of Hibernate tool,it is automatically creating a composite key. I need a mapping something like : <id name="id" type="java.lang.Integer"> <column name="id" /> </id> <key-pro...

Visual Studio Language Service with C# intellisense

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor. To clarify, NHaml is a html template language that can mix in code elements like an aspx file can. This plugin adds support to the IDE for editing NHaml files, but basically only adds syntax h...

Can't install Eclipse plugin

I'm trying to install an Eclipse plugin for Mylyn/Fogbugz, and I get the following error when I try either EclipseBugz or Foglyn: Cannot find a solution satisfying the following requirements Match[requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.swt I'm using Eclipse 3.4.1 ...

What is the best way to implement a plugin architecture for asp.net webforms application?

We have a 3-tier web application written in ASP.Net Webforms where we will not be able to port it - recession really sucks! - to MVC. Our goal is to implement a plugin architecture. One way would be to use the App_Code folder. Are there any better alternatives? ...

Something like MEF (Managed Extensibility Framework) for .NET Framework 2.0

I used MEF in own of my projects and I liked it a lot. It was easy and after figuring our awkward API model, it just worked. Now I need something like that for .NET Framework 2.0. Is there any similar project out there which can work under .NET Framework 2.0? I'm simply looking for adding plug-in support to my project in a simple way. ...

plug-in for MOODLE

How can i add a plug-in that i developed in MOODLE, considering the fact that MOODLE is an open source project? ...

Is ruby on rails plugin, acts_as_ferret, very buggy?

I am doing a very simple search on my DB using acts_as_ferret. I put this in my "Venue" model: acts_as_ferret :fields => [:name, :city] And this is in my controller search action: @t = Venue.find_by_contents(params[:search]+'~') and then I just render the results. render :text => @t.to_json, :success => true, :status => :ok I...