I've searched but the questions so far seem to be Java/C# orientated. I was wondering if there was a class diagram GUI for eclipse - or it could be standalone - that better describe PHP classes?
It seems that the ones i've used so far assume you are writing for Java or C#.
Cheers for any pointers
...
i'm looking for a rails plugin for open id authentication.
I'm using restful-authentication
Can you tip me any plugin?
Do you know any tutorials for using these plugins?
thanks
...
Hi,
I'm writing an NPAPI plugin. In every webpage that the browser goes to, I inject my plugin with an object tag. Something like:
<object id="myplugin" type="plugin-mime-type" >
In some pages where i dont want it, after injection i remove it by finding the element using the id and doing a document.removeChild. From my logging i found...
I am looking for a good jquery pagination plugin to use in my aspx page....
I have the following parameters
currentpage,pagesize,TotalRecords,NumberofPages... I would like my plugin to same as stackoverflow paging ....
EDIT:
It should paginate through json data....
similar to this
I use my json data and iterating with jquery
var...
I'm developing a Maven plugin, and I realise I'm not sure how to write unit tests for it since I don't know how to exercise the functionality of the plugin except by just running Maven. How have other Maven plugin developers managed testing of their code?
...
I am working on a plugin for our CakePHP CMS that will handle blogs. When getting to the tags I needed to set the HABTM relationship to unique = false to be able add tags to a post without having to reset them all.
The BlogPost model looks like this
class BlogPost extends AppModel {
var $name = 'BlogPost';
var $actsAs = array('...
Hi everybody.
I'm looking for a way to deploy an Internet Explorer plugin for SVG-rendering without manually installing it on every client machine.
Is there a way to use some ActiveX voodoo stuff to automatically install a plugin?
I have no reliable information about the IE versions that are used on the client side so I assume the wor...
Hi all,
I would like to breakup certain phases in the maven life cycle into sub phases. I would like to control the execution flow from one sub-phase to another, sort of like with ant dependencies.
For example, I would like to use the NSIS plugin in order to package up my project into an installer at the package stage, AFTER my project...
I would like to create a new page in Elgg where I can put my own content. I would like to have there all the default menus, etc. but with empty space where I can put my code. I would like to have a link to this page on my profile page. Should it be done as a new plugin? If yes, how to create empty page with my current template settings?
...
Is it possible to to check that programmatically?
...
Hello!
I want to write video filter for Adobe Premiere, and I need to print/draw/render some text into the output video frame.
Looking into adobe premiere cs4 sdk I couldn't find a quick answer - is it possible?
Please provide some samples!
Thanks!
...
Hi,
I have developed a simple cheat sheet in eclipse.
Now I want to install that cheat sheet plugin in eclipse itself
Can anyone help me how to do that???
...
I have netbeans 6.8 with java ME platform setup on my ubuntu 9.10.
My code requires the package org.netbeans.microedition.lcdui which is either not installed or not in the path.
Surprising this runs perfectly in netbeans 6.8 on windows on my friend's pc.
Is there any java ME plugin I need to install?
Can somebody help me out with this?
...
Hi all,
I am wish to create a zip archive of my "target" directory (${project.build.directory). using the maven-assembly-plugin seems to me like overkill for such a simple task (and a bit complicated - why must I use another file, the assembly descriptor, for such a task)
I can't locate the seemingly more simple maven-zip-plugin in the ...
Hi
I'm working on a plugin framework using dynamic loaded shared libraries which is based on Eclipse's (and probally other's) extension-point model. All plugins share similar properties (name, id, version etc) and each plugin could in theory satisfy any extension-point. The actual plugin (ie Dll) handling is managed by another library, ...
I am trying to customize a dialog window (without a theme). First, I want to display a custom "close X" button. Second, a user should be able to drag and resize the dialog. Finally, I would like to position the dialog in the top center of the window. However, I am having some problems and need some help.
I have the following:
<style>
...
There are many places in my application where I need to generate links with unique tokens (foo.com/g6Ce7sDygw or whatever). Each link may be associated with some session data and would take the user to some specific controller/action.
Does anyone know of a gem/plugin that does this? It's easy enough to implement, but would be cleaner ...
How can I changing/ adding code of the Themes with a wordpress plugin? Example: Adding before or after the comments-forms a few lines.
...
I have some content that I am loading using jquery ajax. The content has jquery plugins attached (example a modal box).
My problem is that because the ajaxed content isn't part of the original dom it hasn't had the plugins applied to it.
How do I apply the plugins to ajaxed content??? Is there someway I can reinitialize i the plugins?...
add_action('admin_menu', 'pag_admin_menu');
add_filter('wp_list_pages_excludes','exclude_PAG');
function pag_admin_menu()
{
add_options_page('Exclude', 'Exclude Page', 'administrator', 2, 'Pages');
}
function Pages()
{
if( $_POST[ 'xclu_pag' ] )
{
$message = process_PAG();
}
...