Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-core-dev] enablement of dav target management

For those interested in spinning its wheels...

>>Just a note, in today's build the target management is "turned off" since
it wasn't in solid enough shape for >>extensive community testing.  For
those who are curious, it can be enabled by copying org.eclipse.team.webdav
>>plugin.xml.off to plugin.xml.

The plugin.xml.off didn't make it into the build because the build
properties weren't updated (this is why I always get someone else to do the
submission <g>).

Use the following to enable Dav.  Apologies,
Kevin

=================================

<?xml version="1.0" encoding="UTF-8"?>
<plugin
   id="org.eclipse.team.webdav"
   name="WebDav"
   version="2.0.0"
   provider-name="Object Technology International, Inc."
   class="org.eclipse.team.internal.webdav.core.WebDavPlugin">

   <runtime>
      <library name="webdavprovider.jar">
         <export name="*"/>
      </library>
   </runtime>
   <requires>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.team.core"/>
      <import plugin="org.eclipse.team.ui"/>
      <import plugin="org.eclipse.webdav"/>
      <import plugin="org.eclipse.core.runtime"/>
      <import plugin="org.apache.xerces"/>
      <import plugin="org.eclipse.ui"/>
      <import plugin="org.eclipse.swt"/>
   </requires>


   <extension
         point="org.eclipse.team.ui.targetConfigWizards">
      <wizard
            name="%webdavwizard.name"
            icon="icons/full/wizards/davicon_wiz.gif"
            category="org.eclipse.team.ui"
            class
="org.eclipse.team.internal.webdav.ui.WebDavConfigurationWizard"
            id
="org.eclipse.team.internal.webdav.ui.WebDavConfigurationWizard">
         <description>
            %webdavwizard.description
         </description>
      </wizard>
   </extension>

      <extension point="org.eclipse.team.core.targets">
            <targets id="org.eclipse.team.webdav" class
="org.eclipse.team.internal.webdav.core.WebDavSiteFactory"/>
      </extension>


</plugin>





Back to the top