Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-build-dev] i cant use my exported plugin - any ideas?

To: pde-build-dev@xxxxxxxxxxx
From: Peter Rader <p.rader@xxxxxxxxxxxx>
Sent by: pde-build-dev-bounces@xxxxxxxxxxx
Date: 04-06-2005 21:54
Subject: [pde-build-dev] i cant use my exported plugin - any ideas?

Hi folks,
its my first time i write an message to you.
And its my first plugin too. Here we go:
iv written an plugin that extend the contextmenu, its force file location of selection, and then its uploading these files to an ftp server.
in my workbench PDE runtime test, works fine. So i exported this. But it did'nt work in eclipse/plugin - folder. is it why i use windows? is it why i am stupid? is it an bug? is it an plane? no it is superma..... *hm i need an hobby*
thats my plugin.xml - the package can be download next time at www.nocturne.net.ms (this location does not represent my job or firm)
[code]

<?xml version="1.0" encoding="UTF-8"?>

<?eclipse version="3.0"?>

<plugin

id="ftpupload"

name="Ftpupload Plug-in"

version="3.0.1"

provider-name="Peter Rader"

class="ftpupload.FtpuploadPlugin">

<runtime>

<library name="ftpupload.jar">

<export name="*"/>

</library>

</runtime>

<requires>

<import plugin="org.eclipse.ui"/>

<import plugin="org.eclipse.core.runtime"/>

<import plugin="org.eclipse.core.resources"/>

</requires>

<extension

point="org.eclipse.ui.popupMenus">

<objectContribution

objectClass="org.eclipse.core.resources.IFile"

nameFilter="*.*"

id="ftpupload.contribution1">

<menu

label="FTP Connection"

path="additions"

id="ftpupload.menu1">

<separator

name="group1">

</separator>

</menu>

<action

label="Upload"

class="ftpupload.popup.actions.NewAction"

menubarPath="ftpupload.menu1/group1"

enablesFor="*"

id="ftpupload.newAction">

</action>

</objectContribution>

</extension>

</plugin>

[/code]
---------------------------------------------
Peter Rader
Auszubildender Fachinformatiker Anwendungsentwicklung

NEW VOICE GmbH
An der großen Wisch 2
26133 Oldenburg

FON: +49 (0)441 8001-425
FAX: +49 (0)441 8001-111
WEB: www.new-voice.de
MAIL: p.rader@xxxxxxxxxxxx

Back to the top