|
From: <caw...@us...> - 2006-12-21 19:31:35
|
Revision: 1720
http://svn.sourceforge.net/rubyeclipse/?rev=1720&view=rev
Author: cawilliams
Date: 2006-12-21 11:31:34 -0800 (Thu, 21 Dec 2006)
Log Message:
-----------
try to fix this plugin so it doesn't mangle Eclipse's configuration when users install RDT
Modified Paths:
--------------
trunk/org.rubypeople.rdt.doc.user/build.properties
trunk/org.rubypeople.rdt.doc.user/build.xml
trunk/org.rubypeople.rdt.doc.user/plugin.xml
Added Paths:
-----------
trunk/org.rubypeople.rdt.doc.user/META-INF/
trunk/org.rubypeople.rdt.doc.user/META-INF/MANIFEST.MF
trunk/org.rubypeople.rdt.doc.user/index/
Added: trunk/org.rubypeople.rdt.doc.user/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/META-INF/MANIFEST.MF (rev 0)
+++ trunk/org.rubypeople.rdt.doc.user/META-INF/MANIFEST.MF 2006-12-21 19:31:34 UTC (rev 1720)
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.rubypeople.rdt.doc.user;singleton:=true
+Bundle-Version: 0.0.0
+Bundle-Vendor: RubyPeople, Inc.
+Bundle-Localization: plugin
Modified: trunk/org.rubypeople.rdt.doc.user/build.properties
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/build.properties 2006-12-21 18:57:05 UTC (rev 1719)
+++ trunk/org.rubypeople.rdt.doc.user/build.properties 2006-12-21 19:31:34 UTC (rev 1720)
@@ -1,7 +1,8 @@
bin.includes = plugin.xml,\
toc.xml,\
html/,\
- images/
+ images/,\
+ META-INF/
bin.excludes = build.xml
src.includes = docbook.xml,\
plugin.xml
Modified: trunk/org.rubypeople.rdt.doc.user/build.xml
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/build.xml 2006-12-21 18:57:05 UTC (rev 1719)
+++ trunk/org.rubypeople.rdt.doc.user/build.xml 2006-12-21 19:31:34 UTC (rev 1720)
@@ -12,7 +12,7 @@
<property name="javacSource" value="1.3"/>
<property name="javacTarget" value="1.2"/>
<property name="compilerArg" value=""/>
- <property name="featureVersion" value="0.6.0"/>
+ <property name="featureVersion" value="0.9.0"/>
<!-- featureVersion might also be set from outside -->
<echo message="Using featureVersion=${featureVersion}"/>
Modified: trunk/org.rubypeople.rdt.doc.user/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/plugin.xml 2006-12-21 18:57:05 UTC (rev 1719)
+++ trunk/org.rubypeople.rdt.doc.user/plugin.xml 2006-12-21 19:31:34 UTC (rev 1720)
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin
- id="org.rubypeople.rdt.doc.user"
- name="%Plugin.name"
- version="0.0.0"
- provider-name="RubyPeople, Inc.">
+<plugin>
+
+<!-- ============================================================================= -->
+<!-- Define primary TOC -->
+<!-- ============================================================================= -->
+
+ <extension point="org.eclipse.help.toc">
+ <toc file="toc.xml" primary="true" />
+ </extension>
+
</plugin>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|