plugins

How to identify Projects/Plugins etc suitable for your Project?

Here is a small example of my experience with that issue: I started to write code to initialize Java Objects out of an XML File. After a while one of my colleagues showed me Apache Commons Digester, which was the solution for my needs. How do you guys identify useful Projects/Plugins etc for your Project. For example: Google,Ask on S...

Deployment of a Browser Helper Object

hi all, I wrote an IE Plugin with the .NET SpicIE Framework. During development I tested it with the following commands: "C:\Windows\Microsoft.NET\Framework\v2.0.50727\regasm" "plugin.dll" "C:\Programme\Microsoft SDKs\Windows\v6.0A\bin\gacutil" /if "plugin.dll" Now I want to create an MSI Installer with the Microsoft WiX Toolkit. But...

Running maven goal in multiple lifecycles

Hi, I have a case where I want to run the cobertura plugin in both the verify phase and the reporting phase. I have two profiles and they should both be running the cobertura plugin, but in profile A, I only want to create the xml/html output, but in profile B, I will be generating full site documentation that includes these results. I ...

Looking for "day view" javascript library/plugin/calendar

Hi all, Our project seeks to render calendars similar to outlook's web view (i.e. where you can view a calendar in 'day', 'week', or 'month' view). To clarify: we do not need 'date picker' functionality (i.e. used by the out-of-the-box jquery UI calendar plugin). At this point I've found jquery plugins to render a calendar in "month vi...

Making Silverlight App plugin capable

Hi, I want to know about general methods to dynamically load content into your silverlight application. More specifically, I want to create something like a widget-based application, where all GUI objects are small independent widgets. I want to provide a static chrome, like a frame, hosting the actual widget, that is loaded from an ex...

Problems using wxWidgets (wxMSW) within multiple DLL instances

Preface I'm developing VST-plugins which are DLL-based software modules and loaded by VST-supporting host applications. To open a VST-plugin the host applications loads the VST-DLL and calls an appropriate function of the plugin while providing a native window handle, which the plugin can use to draw it's GUI. I managed to port my origi...

Hide a base class method from derived class, but still visible outside of assembly

This is a question about tidyness. The project is already working, I'm satisfied with the design but I have a couple of loose ends that I'd like to tie up. My project has a plugin architecture. The main body of the program dispatches work to the plugins that each reside in their own AppDomain. The plugins are described with an interfa...

Extending PHP with C++?

I have a performance intensive routine that is written in PHP that I'd like to port to C++ for a performance increase. Is there any way to write a plugin or extension or something using C++ and interface with it from PHP? WITHOUT manually editing the actual PHP source? ...

How do I load an assembly that references a Win32 DLL?

I am developing a .NET application that uses reflection to load plugins. My plugins are C# class libraries. The trouble is that some of my plugins reference conventional Win32 DLLs, and C# is blindly attempting to load the dependencies as if they were .NET DLLs. Here is how I load a plugin: string fileName = "plugin.dll"; Assembly.Lo...

[Eclipse Intro] Make my own welcome page.

Hello everyone. I am facing difficulties to make my own Eclipse Intro Page (as shown here). It seems that I have some probleme with my product ID but I dont know how to get a product ID, I have tried to extend org.eclipse.core.runtime.products but when it asks me which application I want to register I dont know what to answer and it se...

Best jQuery Date Plugin for Dates of Extreme Difference (1000+ BC - Today)

I'm working on a project right now that requires great flexibility on the date-selector. Users may insert dates several thousands of years ago, as well as dates all the way up to today. Typical date-selectors are great for selecting dates within a few years from eachother, but not too well when it comes to selecting dates of vast differe...

Live query plugin doesn't work with the visible attribute selector

Hi, I have the following running in the jquery ready function $('[id$=txtCustomer]:visible').livequery( function() { alert('Hello') }, function() { alert('World') } ); I get an alert for the first time saying 'Hello' but the functions are not called onwards when i toggle this visibility of the textbox. Please help...

Using TPTP to profile an Eclipse Plugin

I’m currently trying to profile an Eclipse Plugin using the TPTP tools. However, I have run into issues when trying to profile an plugin. I can profile a Java application fine, however when I try to profile an plugin, the runtime workbench fails to load and the profiling terminates after a few seconds. I’m at a lost to what I’m doing ...

Can't install a single plugin on Eclipse 3.5

I'm trying to install the Subversion team provider on Eclipse 3.5, and it fails with the following message: An error occurred while collecting items to be installed session context was:(profile=SDKProfile,phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=). Result of processing steps. Unpack faci...

video plugin in chat

hi i m developing a social networking application using php and i want to make a chat application which supports video chat features like in Gmail ( google provides browser plugin for that ) thanks ...

Open .NET Plugin in Tab

I am creating a Visual Studio .NET plugin using DXCore for my group to use and have been trying to figure out how to open the plugin in a tab like source control does instead of it opening in a new window. Any Ideas how this can be done??? ...

Extend my Java application with R?

Im building an application that i want to have extended with modules that does some nr crunching and i would like to have R for that. What are my best options for extending my Java application with R? ...

jQuery: how to produce a ProgressBar from given markup

So I'm using the ProgressBar JQuery plugin (http://t.wits.sg/misc/jQueryProgressBar/demo.php) to create some static progress bars. What I want to achieve is to from this markup: <span class="progress-bar">10 / 100</span> produce a progress bar with maximum value of 100 and current value of 10. I am using html() method to get the cont...

JRuby on Rails and calendar_date_select

Anyone have any success with a JRuby on Rails war deployment and calendar_date_select? The gem wouldn't include the helper functions and I would receive the following error since the function wasn't declared in the app: undefined method 'calendar_date_select_includes' for #<ActionView::Base:0xbe823> After installing calendar_date_sele...

JQuery - AJAX load() method help

I need to get content from an external page and pass it as an argument to a function. I have looked into the url() method in the JQuery documentation but it seems it's only possible to use it to insert external content into div or some other HTML element. Basically what I need to do is: // I need to insert external page's content into ...