Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7219037
By: fabioz

I've checked and none of the templates seem suitable... Just create a new plugin
(file > new > plugin project) and create a new one without using any of the
templates.

You don't have to use a pydev extension point. The extension you need to use
is the org.eclipse.ui.newWizards.

Pydev declares its wizard as below (so, you just have to customize those for
your own wizard) -- that's in org.python.pydev/plugin.xml.

   <extension point="org.eclipse.ui.newWizards">
      <category
            id="org.python.pydev.PythonCategory"
            name="Pydev"/>
      <wizard
            canFinishEarly="false"
            category="org.python.pydev.PythonCategory"
            class="org.python.pydev.ui.wizards.project.PythonProjectWizard"
            descriptionImage="icons/python_logo.png"
            finalPerspective="org.python.pydev.ui.PythonPerspective"
            hasPages="true"
            icon="icons/python_16x16.png"
            id="org.python.pydev.ui.wizards.project.PythonProjectWizard"
            name="Pydev Project"
            preferredPerspectives="org.python.pydev.ui.PythonPerspective"
            project="true"/>
   </extension>



Cheers,

Fabio
            

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to