Here is what i'm trying to do
<?php
class My_Controller_Plugin_SomePlugin extends Zend_Controller_Plugin_Abstract
{
public function preDispatch(Zend_Controller_Request_Abstract $request)
{
$this->_helper->layout()->disableLayout();
}
}
but it doesn't work, any ideas on how could i disable the layout inside a ...
I'd like to add a custom field to Projects in FogBugz and have that field show up in the project administration page. This way, when a user creates a new project, or edits an old one, the field can be edited immediately.
My only other alternative would be to create a custom page with a form for associating the field specifically, but t...
I want to have the PluginManifestEditor functionality in my view(not in a editor). Also I need to add some extra pages to it(along with the existing ones like Overview, Dependencies, runtime etc.).
I know that its implemented in org.eclipse.pde.ui plugin. I just started diggin in to the code and found that the javadoc is sparse and not ...
Is there any Jira extension or plugin that adds rich text for Description field, for comments of issue? Something like COnfluence style.
...
Is there a way to make a Firefox plugin intercept certain requests and respond to them without hitting the network?
Example: every time the browser is about to request http://www.example.com/page.html, the plugin automatically returns "Hello world!" for that page.
Cheers!
...
I've searched (google and SO) about this topic and couldn't find a thorough answer to my question(s).
I'm building an ASP.NET MVC 2 application that will be distributed to other people (with source code). These people will need to create modules/plugins that use the application's base.
The base is a simple ASP.NET MVC Application with ...
Hi,
I'm not very experienced in C#/.NET [WebMethod] (note: I am on Mono) and I wonder how could I use the JQuery.form plutin.
I have a Service.asmx and Service.asmx.cs with methods I call with standard jQuery AJAX call.
In the form "action" attribute I put link to the Service (/blah/blah/Service.asmx/myMethod). Which firm and/or attr...
Hi, I've created a couple of Office plugins. The plugin shows a set of html files installed on the clients computer. The plugin uses a COM-accessible assembly which shows a WinForm with a WebBrowser on it. The plugin makes the WebBrowser navigate to a file on the clients computer. The assembly is also used in other programs to show the s...
Hello,
I need to write an app that that will iterate over our database, and perform various anaylsis on each record. In order to do this (partially for the learning exercise in creating plugin support) I want to use a Plugin model.
Currently, I have a simple Interface in my main app, which plugins can Implement. My app then loads all...
I am looking for a karma (reputation) plugin or gem for Ruby on Rails. Preferably one that was integrated many of the best practices and research around the topic of community management & development. Any recommendations?
...
hi all,
i'd like to use this plugin for dynamic includes:
http://plugins.jquery.com/project/jquery-plugins
i managed to include one file + getting a done-callback.
my question: is it possible to include several files at once (eg. 10 .js + 10 .css files) and getting a global done-callback?
thx,
fuxi
...
I have my page setup to start an automatic scroll of images (with the cycle plugin) when you hover over it's category link. That works fine. What I want now is to have the automatic cycling stop when you hover off the link and then to start the manual 'next/prev' slideshow.
Basically, when you hover over the category link, cycle through...
"I need to fetch the absolute file path of any .mdzip file opened in Eclipse editor. The MDZIP file corresponds to a Magicdraw project which can be opened in Eclipse after integrating the Magicdraw plugin into Eclipse.
Normally, the path of opened file in Editor can be fetched by using:
FileStoreEditorInput fipp = (FileStoreEditorInput)...
I have created a Eclipse plugin application, in which there are many secondary views created at runtime for a single static view. In the menu 'Window-> Show View', only the entry for the view statically created in the plugin.xml is displayed.
But the view that is created statically is useless in terms of showing results because the resu...
"I have created an Eclipse plugin which creates a view in Eclipse. Currently it is displayed in the Eclipse menu as :
'Window->Show View->Others'.
I want to show it in 'Window -> Show View' and not under the submenu 'Others'.
I have tried it giving the 'Category' of the view in the plugin.xml file as 'org.eclipse.ui' but it is still sh...
I want a code snippet editor for VS2008.
I'd like to just hit a hot key, bring up an editor, type in my snippet, run to my break point and step through.
I don't want to have to create a project, create an xml file, or even have to save my file if I don't want to.
I've looked through What plugin would you really like to have for Visu...
I'm trying to install will paginate.
I installed the gem, as detailed on the github page. The gem installed OK, but when I tried a line like
@user = User.paginate
I just got an error message about the paginate method not existing.
So, I uninstalled the gem and tried using the plugin method:
script/plugin install svn://errtheblog.co...
I am currently using this autocomplete plugin. It's pretty straightforward. It accepts a URL, and then uses that data to perform an auto-complete.
This is my code to auto-complete it.
autocompleteurl = '/misc/autocomplete/?q='+$("#q").val()
$("#q").autocomplete(autocompleteurl, {multiple:true});
If someone types "apple", that autoco...
Hello. I am developing a plugin for eclipse. In this plugin I need to be able to add an item to the context menu in the text editor. So far I have been unsuccessful in this, does anyone know how to add this item.
Also, how do I get a string with the text currently selected in the editor.
Thank you so much.
...
I'm building an open-source autocomplete plugin for my text editor b/c it doesn't have one yet. Are there any autocomplete libraries I can use i.e. some sort of data file containing commonly used functions in Java, C, PHP etc?
I have the plugin built, but I don't particularly want to go through all of Java's documentation and hand-write...