plugins

How to set has_many_polymorphs CRUD parameters restfully

Working on a simple example of double sided polymorphic relationships using the has_ many_ polymorphs ActiveRecord plugin. I have two classes, "cats" and "dogs", which can have "friendships" with each other, so three classes in all: "cats", "dogs" and "friendships". A cat can be friends with a dog (yes, it does happen!) and of course als...

Piwik plugins

I'm building a plugin, and I want to have a Subtable, so that my users can click on the overview data, and display the data from there. Following the code that I've been able to glean: public function getCompanyList($idSite, $period, $date ) { $dataTable = new Piwik_DataTable(); $query = Piwik_Query("SELECT cl.id, cl.company_name na...

How can I change the ContextRoot that Maven Glassfish Plugin deploys to?

Hey, I'm deploying a webapp (WebApp.war, say) using the Maven Glassfish Plugin. Rather than it being deployed to http://localhost/WebApp I want it to be deployed to http://localhost/AnotherName - that is, I want to change the context root it's deployed to. I can't work out how to do this with the plugin, is it an option? ...

ASP.NET MVC, a plugin architecture and id collisions

So I have been waxing lyrical about a ASP.NET MVC to a friend who is about to start development of a new user interface.... He asked me if you could solve the following problem with ASP.NET MVC: Imagine a web app that supports plugins. In the current ASP.NET WebForms app the pluggin developer provides a usercontrol and some JQuery. The...

Browser Helper Object UI

I am a newbie working towards developing an IE extension that would appear as an overlay in certain webpages. I am getting started by creating a simple BHO in VS2008 (using C++), but I am wondering how UI may be incorporated within the project. Any ideas? Just to give you an idea, I'm looking for overlays similar to what was developed by...

Effective Extensions for Development Wiki

Our small team of 3-4 developers uses a wiki for documentation and collaboration. I'm trying to put together a list of some solid extensions which would help make it better. We are using MediaWiki, but if you know of a good extension/plug-in for another platform I'd like to hear about that too. Thanks. Here is my list so far: Geshi...

Why is my VS2008 very slow at saving and renaming files

Windows Vista - using the following plugins - Codesmith and CodeKeep. I quess it started after installing the CodeSmith plugins .. ...

Jquery cycling through multiple images and showing 3 at a time

Hi folks! Can you please point me to a jquery plugin, or a snippet I can use to make this? Here's the question: Say I have 12 images and I want to show 3 at a time and cycle through the 12 in this fashion: (img1-img2-img3) then (img2-img3-img4) then (img3-img4-img5)... See what I mean? In fact, I want a kind of marquee for images. ...

How to split jQuery plugin over multiple files

I'm writing a small CMS as a jQuery AJAX plugin and though it's by no means excessively long (currently about 500 lines) I can see it would be nice to be able to split it into separate files, one for each "subclass": (function($) { $.fn.myCMS = function() { this.classOne = function() { ... } this.classTwo = function() { ... ...

Eclipse plugin

I want to write an eclipse plugin to show the actual value of the message code. The values are to be loaded from the given resource bundle. Only classes of the resource bundle will be available. So I require to load the resource bundle class which is declared in the current file. These class files will be in the classes folder or in a ja...

jquery autocomplete keypress database

I am trying to use jquery autocomplete plugin, I want it to suggest ItemCodes as user types... The problem is its not showing autocomplete box/frame/.... Just to make sure webmethod returns data on every keyup event, I assigned data to a div element, and it works as it should. <script language="javascript" type="text/javascript"> ...

attachment fu - file path

how to get 'manually' the path of a file created with attachment fu without calling model.public_filename ? ...

Qt designer plugin (custom widget) in Eclipse integration

I have made custom widget plugin, which is recognized and visible in Qt designer, but Qt creator and Qt eclipse integration doesn't show it. Does anyone have ideas how to solve this problem? ...

Unhandled Exception checker plugin for Visual Studio

I would like to be able, at compile time, to ask any given method what possible Exceptions might get thrown by invoking it. The list of Exceptions should include any uncaught Exception that might get thrown in any nested method invokation. Caught Exceptions should not be included in the list as I'm only interested in the Exceptions that ...

Eclipse plugin reuse outside eclipse

Is it possible to run an Eclipse Plugin outside of Eclipse? ...

Application Plugin

Hello, I'm developing some plugins to my application using the JEDI Plugin tecnology, but I run into a lot of problems with memory sharing specially when it handles Database connection. The main application uses the FASTMM4 memory manager. Does any one knows a bit more easy framework to work with plugins? ...

Available NetBeans tools for JavaServer Faces (JSF/Facelet) support

Which NetBeans plug-ins or tools would you recommend for JSF development? ...

Hudson email ext plugin bug?

Hello everyone, I am getting an error using my email ext plugin from hudson. I am trying send an email to the following schema = "< firstName >_< LastName >@< subgroup >.< companyName >.com ex: [email protected] I cannot send emails to this address via the email extension plugin. The regular email generator works wi...

Eclipse Plugin

I want to get notified when an editor is opened in Eclipse. What is the best way to do that? Thanks in advance. ...

System.Reflection.Assembly.LoadFile Locks File

I'm loading a DLL via System.Reflection.Assembly.LoadFile and reflecting over it's members in a plugin-esque system. I need to be able to update/overwrite these DLL while the system is running but it appears that after calling System.Reflection.Assembly.LoadFile the file is subsequently locked. Does anyone know of a way to unlock the fil...