Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
8answers
7k views

What's safe for a C++ plug-in system?

Plug-in systems in C++ are hard because the ABI is not properly defined, and each compiler (or version thereof) follows its own rules. However, COM on Windows shows that it's possible to create a ...
14
votes
4answers
7k views

GOOD tutorial for writing Maven plugins?

Can someone please recommend a GOOD online tutorial for writing maven2 plugins? I looked at about 5 tutorials yesterday and each skipped steps, didn't tell you where key components (referenced in ...
13
votes
8answers
10k views

Best way to write a Safari 4 Extension [obsolete]

What is the best way to write a Safari extension? I've written a couple XUL extensions for Firefox, and now I'd like to write versions of them for Safari. Is there a way that would allow you to add ...
13
votes
14answers
1k views

Customizing Visual Studio

I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#) for several months now. For the most part my IDE is set up fairly standard but I have been wondering what are ...
5
votes
2answers
730 views

Netbeans RCP vs Eclipse RCP

I would like to start a new project which will make extensive use of plugins. I know that both Eclipse and Netbeans have their respective Rich Client Platforms, both with their respective strengths ...
5
votes
4answers
602 views

Why should I setup a plugin interface in c++ instead of c

As a result of my previous questions I asked myself: Is it usefull at all to setup a C++ interface for a plugin system? The following points are speaking against it: No common ABI between different ...
5
votes
1answer
774 views

What language must I use for a Pidgin plugin?

I'm a relatively inexperienced programmer looking to make a plugin for the IM client Pidgin as a first major project. I've written a program in Python that has all the functionality I want, but I have ...
5
votes
3answers
246 views

Should a new Visual Studio-Based Application be based on 2008 or 2010?

I am thinking of creating a product based on the Visual Studio Shell (primarily isolated mode). Since Visual Studio 2010 will most likely be RTM before my product, does it make sense to start with ...
5
votes
2answers
816 views

Has anyone seen a tutorial of building a Cocoa Touch plug-in for Interface Builder

Does anyone know where I can find an example or a tutorial of building a Cocoa Touch plug-in for Interface Builder?
5
votes
6answers
2k views

Resources for building a Visual Studio plug-in?

I'd like to build a pretty simple plug-in for Visual Studio, but I don't really know how this has to be done. Is this doable in (non-managed) C++? I'd like to know what resources you'd recommend ...
4
votes
1answer
1k views

How to make Rails load a plugin *after* the application code?

I'm trying to write a plugin that defines a MongoMapper model. The problem is that when I run script/console, I get this error: ...
4
votes
1answer
268 views

Rails plugin development documentation and resources

Are there any resources or documentation for developing Rails plugins? I'm using other plugins as examples, but it's hard to know if I'm doing something wrong, or if there's another way to do ...
4
votes
2answers
112 views

Which one is better (in support, difficulty, …) to develop a plugin, Netbeans or Eclipse?

I would like to make a new plugin for a programming language because there is not any IDE the time I asked this question. I think IDE developing is far more easier if I try to use one of the available ...
4
votes
4answers
2k views

Outlook Plug-In for custom CRM

I would like to write a plug-in that will allow a custom written CRM to read and write to their local Outlook client. I know that this poses a security concern. But, my clients are asking that their ...
3
votes
3answers
351 views

Continuous integration & eclipse plugin development

I am developing a set of eclipse plugins, and I have several JUnit plugin tests that actually start another instance of eclipse, create a mock workspace and a mock project and runs various operations ...
3
votes
2answers
312 views

How to find out what Eclipse is doing in backround?

OS X 10.5.6. My Eclipse 3.4 is going crazy lately. After innocent operations like typing text or moving some files in Navigator view or saving, it sometimes starts "waiting on background ...
3
votes
1answer
2k views

Find composite location on screen

I am implementing a on screen keyboard in Java for SWT and AWT. One important thing is to move the keyboard to a position where the selected text field can show and is not lying behind the on screen ...
3
votes
6answers
409 views

What are the best resources to get started with Eclipse plugin development?

I'm interested in writing eclipse plugins where do I start? What resources have helped you? I'm looking for: 1. Tutorials 2. Sites devoted to plugin development 3. Books
3
votes
1answer
3k views

Eclipse Plugin Dev: How do I get the paths for the currently selected project?

I'm writing a plugin that will parse a bunch of files in a project. But for the moment I'm stuck searching through the Eclipse API for answers. The plugin works like this: Whenever I open a source ...
2
votes
2answers
209 views

Eclipse plugin dependency on SWT classes not being resolved

I have an eclipse plugin project which uses some swt objects, eg - import org.eclipse.swt.widgets.Composite; When I try to compile it with the 'Target Platform' set to 'Running Platform (Active)', ...
2
votes
1answer
197 views

How do I get the file path of the open workspace for developing plugins in eclipse

This is a question specifically about plugin development for the Eclipse platform: I need to implement persistence without hardcoding the name of the datastore I am using. I want to be able to have ...
2
votes
1answer
2k views

How to test with RSpec a Rails plugin using “link_to” and “current_page?”

I'm writing a Rails plugin that builds up a menu in a view. I'm using link_to to build the link and current_page? to set class="active" on the current page. I've included ...
1
vote
0answers
104 views

Wordpress Plugin Upgrade Hook Function

I'm developing new version of my wordpress plugin (http://wordpress.org/extend/plugins/facebook-send-like-button/) . New options (add_option()) coming with new version. But i can't register this new ...
1
vote
1answer
50 views

Eclipse plugin development

I have two questions: Windows has an Eclipse, the same way Linux has an Eclipse. If I develop a plugin for eclipse on windows will that one work on Linux? or I have to develop different versions for ...
1
vote
2answers
144 views

How to read message from console tab view in eclipse plugin development

requirement is to read message from IConsoleConstants.ID_CONSOLE_VIEW and write it into text file.
1
vote
2answers
605 views

Eclipse p2 alternative for custom install handlers

Before p2, one could write a custom install handler with a feature that was executed to do any 'custom' task during installation. I see that with p2 the custom install handler is no longer supported. ...
1
vote
2answers
358 views

dynamic MenuContribution - Get a warning

I am using dynamic MenuContribution and get a warning that two of my referenced identifers "cannot be found". Even though the contribution works. These warnings bug me. I have a ...
1
vote
1answer
52 views

Where can I find good introductory material for creating IE plugins?

I can't seem to find any good introductory material for IE plugin development. MSDN documentation is quite lacking if you ask me. And I can't seem to find a simple intro example for IE plugins ...
1
vote
1answer
470 views

Outlook 2007 plugin

I am about to embark on my first outlook 2007 plugin. I would like to create a new tool bar that will have a button that will initially be disabled. When the user selects a message the button ...
1
vote
3answers
203 views

Customizability of the IDEs

I am thinking of modifying an existing IDE (Ex : By developing a plugin) to provide support for a proprietary scripting language. I just need to implement few features like syntax highlighting, ...
1
vote
2answers
91 views

How do you unit-test a plug-in to an application?

When developing a plug-in to application, using the application API which doesn't run independently of the application, is unit-testing even a possibility? What are strategies to test a plug-in that ...
1
vote
2answers
282 views

Reading from a http-get presenting in Firefox bookmarks

I'm trying to get a Firefox plugin to read data from a HTTP get, parse the results and present them as links in a bookmark-like drop-down menu. My quesion then is: Does anyone have any sample code ...
0
votes
0answers
12 views

plugin development in xt:commerece

I have installed xt:commerece a shoping cart related site. I want to develop a plugin within this CMS. But the documentation that they give in their admin panel is quite minimul. Is there any body who ...
0
votes
1answer
18 views

hbox should be always at the bottom

I develop a Firefox plugin with popup panel. On the panel I have three elements with a hbox. First and second hbox have a fixed size(20px and 400px). The last element should be always on the bottom ...
0
votes
1answer
30 views

Adjusting jquery plugin to accept options?

I'm using a jquery plugin that is supposed to accept options, but isn't for some reason. (Perhaps it was never finished?) The code is already set up to accept options, but it seems that the option ...
0
votes
0answers
120 views

How to make Jenkins UI sample plugin to be part of build steps

there is UI sample plugin and I'm interested in DropDownList. DropDownList.java This plugin implements Action interface but I'm interested to make as part of build step and it means the plugin ...
0
votes
1answer
53 views

Wordpress - Hide specific posts

I am writing a wordpress plugin and I want to hide posts/pages which contain a specific string in their title. For example, I want to hide all the posts/pages where the title contains: [something123] ...
0
votes
1answer
200 views

Eclipse plugin developement-closing Eclipse perspective reset

I wrote a plug-in for Eclipse which is a perspective with some views. I'm having problems resetting the perspective when closing Eclipse. I got to the point where I can release all the things on the ...
0
votes
1answer
285 views

Custom Eclipse project type doesn't save (Plugin development)

I've been following this tutorial to create my own custom project type and for the most part it works. Unfortunately when stepping through the my new project wizard it doesn't create a new project on ...
0
votes
1answer
86 views

Eclipse Plugin Development : Open popup on an action

I have created a right click menu item. On its click I want to show a small popup filled with certain values. Any idea?
0
votes
1answer
78 views

Javascript Plugin Development , Extending Libraries

i got two javascript objects api and myApi : var api = {}; api.foo = function(){ ... }; api.foo2 = function(){ ... }; var myApi = {}; myApi.foo = function(){ ...}; myApi.myFoo = function(){ ...}; ...
0
votes
1answer
381 views

How to tell eclipse preferred content type for a file

I'm working on a plugin that will handle files of a given type, say, .xyz when in eclipse I try to open an xyz file. I'm trying to use org.eclipse.core.runtime.content.IContentType type = ...
0
votes
1answer
62 views

Feedly is based on what ajax framework?

Feedly.com is kind of cool. Can you guys give me some clues about it is developed based on what ajax framework?
0
votes
1answer
56 views

Which one is a better approach for providing instances to plugins?

I am writing an application that supports plugins. Plugin creator is responsible for providing some instances to the plugins it creates. There are two alternatives for providing these instances. ...
0
votes
2answers
127 views

Is there any IDE Plugins available to scan while coding?

There are tools like Fortify available which can be integrated with IDE to scan the source codes for security vulnerabilities. But what I expect is a plugin for IDE like eclipse, which should check ...
0
votes
1answer
949 views

Creating SQL Server 2008 Add-Ons: current equivalent of sqlwb.exe

I'm trying to create a simple Add-On for SQL Server 2008; it is simply going to pass a parameter from SQL 2008 to a console application. Although Add-Ons are not specifically supported, according to ...
0
votes
2answers
871 views

Output content from wordpress plugin and rewrite rules

I have created a wordpress plugin that has a filter on the_content, looking for a specific tag then outputting the plugin content in place of that tag. I would now like to use rewrite rules to call ...
0
votes
1answer
186 views

ASP.NET intranet application with “plug-in” ability

I'm working on an ASP.NET 3.5 site that is intended to be an intranet application. How would it be possible to create a kind of "plug-in" architecture, such that I can add additional functionality to ...
0
votes
1answer
369 views

Getting Bundle [] in Eclipse of all the bundles

I am writing an application that uses Equinox as my OSGi framework. I am trying to discover all of the bundles that are known at the time that my bundle is registered. I attempted to use the ...
0
votes
0answers
423 views

dll “drop in” architecture using Castle Windsor & MicroKernel

I'd like to create a framework that uses IoC without needing any configuration: So instead of (adjusted from http://www.castleproject.org/container/gettingstarted/part1/code.html): IWindsorContainer ...

1 2