plugins

How to create a plug-in for Windows Mobile web browser (IE) using C#?

I have a plug in for IE created in .NET C# now I want to port it to IE for Win mobile (5, 6, 7) how to do such thing? (I mean a plug in like Flash for example...) ( I vant to see some kind of special visual element on the page that appeare when some special tag appeares in html document... like bla bla bla ) ...

How can I make .NET C# ActiveX plugin work on Mac Safari?

So I've created a plugin for windows working in IE Chrome etc (there is an eazy way to make active x plugin work on Netscape based browsers under windows) how to port it to mac? ...

Redirect in Front Controller plugin Zend

Hi, I'm trying to centralise my redirects (based on authentication and various other states) into a front controller plugin. So far I've tried: $this->setRequest(new Zend_Controller_Request_Http('my_url')); at various points in the plugin (i.e. from routeStartup to dispatchLoopShutdown) and also: $this->setResponse(new Zend_C...

PackageManager 3.0.2 - Adding Plugins

Hi, I've programed a plugin for an installer package I am planning to use.I've used Apple's Package manager 2.4 (Tiger) before where I could right click packages (*pkg), navigate through the contents folder, create a plugins directory and paste my plugin plus the installersections.plist file. However in version 3.0 (Snow Leopard), I can...

Wordpress and Authentication

I am looking for a wordpress plugin that can check for the existence and validity of a post variable. I want to create a documentation site that requires a specific POST code. Any ideas? ...

How to ensure loading of classes of external jars when called from an eclipse plugin?

Hi All, I have developed an eclipse plugin which references an external jar present in a external installation directory. So I have added an entry to my bundle classpath as below: Bundle-ClassPath: external:C:\mylib.jar My class loads properly - and the plugin is able to detect a class MyClass present in this external lib. However, t...

euml2 and android wont work together

i have the problem that i need an uml editor for eclipse and i think the only good one is eUml2 but i cant use it when i have installed the android plugin. when i install both with the update mechanism, their gui elements and everything else just disapears. does anybody know this problem or has any tips for me how to solve this plugin co...

Maven easyb plugin java heap space settings?

Hi, I attempted to change my heap size for maven easyb plugin http://www.easyb.org/maven-easyb-plugin/. In my easyb test I added standard code to print the heap size using the code Runtime.getFreeMemory() and Runtime.getTotalMemory(). I tried setting the MAVEN_OPTS=-Xmx1024m -Xms1024m and also set the maven opts in Maven surefire ...

Is there a way to edit and save files on an FTP server in Visual Studio 2008+?

I want to create a project and manage the files in Visual Studio 2008 on my computer, but I want VS to upload everything to an FTP server whenever I save the project, so that I can quickly compile and test my program on UNIX. I have been using BBEdit on my Mac, which has built-in FTP opening and saving, but I want to move over to Visual...

How to make Java plugins?

If I want to make my Java program to be able accept plugins, how can I make Java plugins to use classes of core program without including all the code to the plugin code? How plugin can have access to programs interface without including it to it's own jar file? ...

Eclipse Plug-In Installation Issues

Hi all I'm beginning to work with Eclipse for some Java development. I'm quite new to Eclipse, as I am a Visual Studio developer normally. I tried to install the CheckStyle Eclipse Plug-In and Subversive, using the Eclipse "Install new Software" feature. No errors, everything seems to have worked well. Clicking on "What software is alr...

cannot install rails plugins

My problem is: ruby script/plugin is not working (I don't see any HTTP traffic, nor an error message or something) What can be failing? Did I forget to setup something? My progress so far (using Windows XP): Unpacked hxxp://files.rubyforge.vm.bytemark.co.uk/rubyinstaller/ruby-1.9.1-p378-i386-mingw32.7z (to d:\prog\Ruby) Unpacked hxxp:...

What's a good approach to separate JavaScript-based plugins and configurations for performance improvement

Hi! I'm working on a high traffic web application that uses increasingly more JavaScript-based plugins. Improving and keeping front-end performance at high levels is a great concern for me. I want to rearchitect the way plugins and specific plugin configurations are included in the page. Currently some plugins are merged into a monolit...

Run plugin updates outwith Eclipse UI

I'm trying to update the plugins for an Eclipse Galileo SR2 installation from the command line. Something similar to this command (which asks for a specific feature): java -jar org.eclipse.equinox.launcher_*.jar -application org.eclipse.update.core.standaloneUpdate -command update Does anyone know if a command exists using p2 or any ...

Intercept WordPress Admin Dashboard for Alerts

How can I make a plugin send an alert to one's dashboard at the top right below where the WordPress upgrade notice might normally appear? I imagine I need some kind of add_filter() or add_action() call in the plugins' code. ...

Installing Epic (Eclipse Plugin) in Pulse Explorer

I'm trying to install EPIC using the Pulse Explorer for Eclipse (as I'm rather fond of sharing profiles :). When I go to install the plugin under my account, I get asked for a login into http://e-p-i-c.sf.net. However, the Epic's team documentation doesn't mention anything about a login. Here's what I've done: Gone into Pulse and cre...

Wordpress - Harvard Gazette - How did they do X ?

Hi all, I just came a cross matt's post on the new Harvard Gazette wordpress based magazine. This theme is doing some very cool things I would like to know how to do too. So if any one knows of tutorials/plugins on how to do them, please share. Here are some of the things: 1) Amazing calendar. 2) A very strong multimedia section. ...

Getting selected text win CKEditor Plugin

I have made a plugin for CKEditor, but it relies on the currently selected text. In FF and Chrome I can use: var selectedText = editor.getSelection().getNative(); but this doesnt work in IE and I only get [object Object] Any suggestions? ...

Creating my own plug-ins for my own project in C#

Hey, I'm working on a project in C#, it's about E-learning.This project should use plug-ins as its main inputs, it can't function without them. I have no idea how can I work with plug-ins, I know nothing about how can a plug-in compile inside my program, or how can I install them inside my application. I'm asking here about references, ...

Late Loading a .net plugin dll

I have a C# .Net 2.0CF application where I would like to load a .NET 'plug-in' DLL at runtime. As I understand it, I should be able to use the System.Reflection.Assembly.LoadFrom() to load the DLL to an Assembly. Then use Assembly.GetTypes() to get the list of types within the plugin to match them to my expected interfaces. The problem...