plugins

J2EE + Eclipse, What plugins do you use? And What for?

Hey Guys, I want to start working with J2EE, used to .NET What plugins do you use for java&j2ee on eclipse? Interesting things would be, Database Javascript UML UI Hibernate(are there plugins to work with hibernate?) Anything else that you use that helps your work. Cordially, ...

How do I formulate a query using the Symfony Plugin DbFinderPlugin to count grouped by columns?

I cannot figure out how to write the following query using the DbFinderPlugin 1.2.2 with Symfony and Propel: SELECT species, COUNT(*) FROM Bird GROUP BY species; Here is the DbFinderPlugin page I am rather new to the plugin, and I do love it so far, but this query has so far stumped me. ...

Design questions about a plugginable Java framework

Hello, During the last 4 years, I was working on a project in my spare time having two goals : to improve myself as a software engineer and to build something which(I hoped) it will help me to build faster and better Java applications. I've always liked modular applications, so I though a plugginable framework wouldn't be bad to have. ...

Building a minimal plugin architecture in Python.

I have an application, written in Python, which is used by a fairly technical audience (scientists). I'm looking for a good way to make the application extensible by the users, i.e. a scripting/plugin architecture. I am looking for something extremely lightweight. Most scripts, or plugins, are not going to be developed and distribute...

.NET Assembly Plugin Security

I have used the following code in a number of applications to load .DLL assemblies that expose plugins. However, I previously was always concerned with functionality, rather than security. I am now planning to use this method on a web application that could be used by groups other than me, and I would like to make sure that the securit...

jQuery reload div's content (dynamically rendered)

I have a div that is generated html via Expression Engine. I'm using ajax submit: $('#login-form').ajaxForm({ // success identifies the function to invoke when the server response // has been received; here we apply a fade-in effect to the new content success: function() { $("#panel").RELOAD!!();//Just refresh this...

jQuery Plugin not working with 1.3

I am using this time-picker plugin. labs.perifer.se/timedatepicker/jquery.timePicker.js It works fine with jquery 1.2. see here. labs.perifer.se/timedatepicker/ but when used with jQuery 1.3 IE is throwing some errors.. like Error: 'jQuery' is undefined. I am using IE 8. ...

Most useful jQuery plugins

Which are the most useful jQuery plugins you have used. List out one per answer(to rank the best plugins individually), and describe what it does as well. BlockUI - Can block certain elements (or the whole page) during ajax requests. Form Plugin JQueryUI JQuery Validation TableSorter Taconite ...

Reflection vs. Attributes in plugin architecture

I am working on an application that loads plugins at startup from a subdirectory, and currently i am doing this by using reflection to iterate over the types of each assembly and to find public classes implementing the IPluginModule interface. Since Reflection involves a performance hit, and i expect that there will be several plugins a...

Adding references to ASP MVC Page Compilation Engine

Hello, I have written a plugin solution for ASP MVC applications based on the advice found on this site, however, I have reached a roadblock and would appreciate some help. Without going too deep into how the plug-in system works, it does successfully load the controller and finds its appropriate view - the problem is that the view does...

Programatically modify Eclipse workspace and CDT options from a plugin

I want to modify an Eclipse workspace programatically from within a plugin (adding existing projects is my main request). Also I want to modify CDT options (environment, indexer options) from within that plugin. Does anyone know how to best do this or can point me to good documentations on that topic? EDIT: Actually I don't want to mod...

How do you create a configurable Ruby on Rails plugin?

i am trying to create my first rails plugin, and i want it to be configurable, that is to say, i want to be able to set a variable in the environment.rb file or something. UPDATE: i'm trying to do something like what's done here: http://soakedandsoaped.com/articles/read/exception-notifier-ruby-on-rails-plugin. i have tried mimicking th...

Packaging Jar

Hi, It has been a frustrating day trying to package multiple plugins and their property files into an executable jar. How to I package these plugins into a single jar, leaving the properties files outside: - pluginA with pluginA.properties - pluginB with pluginB.properties - pluginC that requires pluginA and pluginB The property files...

write eclipse junit plugin test

where do i start on writing plugin test? I have written some toy plugins and would like to start on doing TDD with my plugins. ...

Validating a node move in a nested set

I am creating a Category model and using the awesome_nested_set plugin (a replacement for acts_as_nested_set) to deal with the hierarchy. With awesome_nested_set, objects are created, then saved, and then placed within the set. As well, lft, rgt and parent_id are attr_protected so they cannot be written to directly. I am running into tw...

Eclipse CDT and lib

Hello, Below I m mentioning what is my requirement. In my project Understand’s API were used. Using that APIs I was able to open database, close it, list the names of a project , list the names of functions in a file n so on. Understand provided a udb.lib for that which I will be including. But in Eclipse CDT, there are plug-ins no ...

How to listen to 'SendMail' event in Thunderbird?

I need to intercept all mail sent by Thunderbird and block sending if there is a predefined string in the mail body. It should be a part of our already existing XPCOM dll addon. Do you have any ideas how to implement it? ...

List eclipse installed plugins at runtime

Here's something obvious that should be easy to do... How do I retrieve a list of installed plugins at runtime? Can't see an obvious way to do this a Platform.getBundle() requires a specific plugin name. Is this perhaps a restriction for some kind of security reason? ...

Trac: code review plugin

I'm looking for a code review plugin for our trac installation. I found these two as the top result for "trac code review" query on google PeerCodeReview CodeReview I'm leaning towards PeerCodeReview plugin. Requesting the SO community for inputs about these plugins to help me select the one for our trac installation. If you kn...

jQuery Form Plugin does not catch response

hey there, i just tried the jQuery Form plugin with the code example from http://malsup.com/jquery/form/#code-samples it actually shows the Request (beforeSubmit), but it doesnt catch the response (success). It opens the response in the current window, as the browser would do a regular form submit. (response is plaintext). any ideas? ...