plugins

Extensibility without Open-Source

My company is currently in the process of creating a large multi-tier software package in C#. We have taken a SOA approach to the structure and I was wondering whether anyone has any advice as to how to make it extensible by users with programming knowledge. This would involve a two-fold process: approval by the administrator of a produ...

Using acts_as_list and in_place_editing at the same time

I have a rails project where the the view displays a list of items. I use acts_as_list to make the list DnD orderable and in_place_editing on each item to, well, edit it. My problem is that when I DnD the items around, the item I drag automagically becomes editable when I drop it. Any tips on how I can avoid that behavior. Ideally,...

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 following line to retrieve all of the available bundles. However, EclipseStarter.getSystemBundleContext().getBundles(); gives me a warning of....

Monitoring Eclipse-plugin heap size *programatically*

I know we can monitor heap size manually by , "Show heap status" under Window -> Preferences -> General So is there anyway to say automatically grab the highest memory used in my eclipse plug-in? This would be convenient to me because my plug-in could run for a long time and monitoring manually is not feasible. Thanks ...

How to create a browser plug in?

I have to create a plug-in that will have to display information when user hovers over certain terms. Can anyone show me the direction how to do it? I do not have much ideas about creating plug-ins. I know what i want to do can be done by java script. But can a java script file be installed as a browser plug in? any ideas on this will b...

Eclipse Extensions and Declarative Services

I'm a little confused on the approach to extensions/services in the Eclipse architecture. There are two options available to a developer: The use of Eclipse plugin extensions - http://www.eclipse.org/articles/Article-Plug-in-architecture/plugin_architecture.html The use of declarative services - http://www.eclipse.org/equinox/bundles/ ...

Forcing Frame by Frame rendering in Microsoft's Virtual Earth 3D

I'm writing a plugin for Virtual Earth 3D and I'd like to force rendering frame by frame so that each frame is rendered 100%. Currently when I use it's built in movement methods, movement is more important than rendering, so the frames are blurry to say the least. Does anyone know how I can do this? Thanks. ...

Gedit html export plugin

Does anyone know of a plugin for Gedit that will export the highlighted syntax text to html? I want to use it to type in some code (say in Ruby) and easily export the text as HTML so that it displays in a web page exactly the same way as in Gedit. I have already tried Markus Jonsson's "HTML Export plugin for GEdit" but it does not seem ...

Where can I find a good example of Open-Flash-Charts and Java

There are a handful of open-flash-charts tutorials on the web, mostly php from what I can see. I know there is a Java helper class, but I haven't found documentation or examples. The helper library is also includes in the ofcharts grails plugin. Java/Groovy or Grails suggestions welcome. thanks! ...

OSGi plugin won't start in tomcat.

I have an OSGi plugin with an activator that I am requesting to start under my tomcat jsf project. Based on: http://www.eclipse.org/equinox/documents/quickstart.php and some other docs, I have placed this structure under my WEB-INF directory to start the equinox implementation of osgi. I have been able to access plugins directly, but n...

Photo Gallery Editor (some product planning questions)

I need to create an interface for building photo galleries. I've got a good idea of how I want the UI to work, and I'm looking for input regarding existing scripts I could use, jquery plugins, general advice, etc.. The UI will consist of a narrow column on the left that will contain small thumbnails of all the users images. The rest of ...

Disable Markdown for a block

Markdown syntax is often convenient to write blogs and comments; But at times it interferes with the content when you would want to write a simple html Is there a tag / syntax that asks markdown to ignore that part like the pre html tag? If pre works, what if the markdown part needs to include an html tag? ...

How and by what should I create plugin to Firefox?

Hi, I'd like to write a plugin for Firefox with the idea of taking HTML code user is presently onto, process it and send it to external php script. How would you proceed? What programming languages can I use? ...

rails plugin installation and upgrades

I have a rails plugin written in v 2.1.1. When I install it in a 2.2.2 app, it breaks the app. I'm unable to use polymorphic routes so something like <%= link_to @object %> Doesn't work, because it says: ActionView::TemplateError (undefined method 'polymorphic_path' for #<ActionView::Base:0x1a95c1c>) If I script/plugin remove th...

Is there a way to force Visual Studio 2008 (or below) to use a spellchecker for comments?

I'm not sure if this can be done at all, but it'd certainly make my life easier. I was wondering if maybe the MS spellchecker could be used as a plug-in for other applications... or something like that. Thanks. ...

Implementing A Plugin System in C or C++

What are your tips on implementing a plugin style system? ...

Dynamic Compiled Plugins in .NET

Hi, Is there a possibility that I can put some of my code in non-compiled form with my application and then make changes to it on the fly and the application can then just use the new version onwards? If it is possible (which i secretly know it is using CodeDOM), are there any issue to watch out for using this approach for pluggability...

What's the best edit-in-place plugin for jQuery?

Hi, I need an edit-in-place plugin for jQuery but there are quite some around. I've been testing jeditable (http://www.appelsiini.net/projects/jeditable) but it lacks some basic options (like hover effect). I also found JEIP (http://josephscott.org/code/javascript/jquery-edit-in-place/) which has recently been developed but comes with m...

Is MEF OSGi for .NET?

I'm just trying to get my head around the Managed Extensibility Framework (MEF) at the moment and digging into a bit. I have an Eclipse background so in my brain I currently have the equation: MEF =~ OSGi for .NET Based on what I have heard so far. Am I on the right lines? ...

Community Engine and tiny mce: undefined local variable or method error

I did something that caused this error when loading the home page: undefined local variable or method `javascript_include_tiny_mce_if_used' I'm basically at the beginning of my project. I'm using Rails 2.3, and worked through debug issues and got the home page and other user profile loaded fine. I'm working on adding another use case u...