Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornhauge2010-05-19 20:04:58 +0000
committernhauge2010-05-19 20:04:58 +0000
commitb4ec504a1fdbeab1420881539b9c3051c355b3d4 (patch)
tree36be97328e675de76e761f6bf1e7415dfc7efc98
parent8bb59dc672ca26d67f5c1336c6953da78db0d0f2 (diff)
downloadwebtools.dali-b4ec504a1fdbeab1420881539b9c3051c355b3d4.tar.gz
webtools.dali-b4ec504a1fdbeab1420881539b9c3051c355b3d4.tar.xz
webtools.dali-b4ec504a1fdbeab1420881539b9c3051c355b3d4.zip
312815 - minor doc updates to plugin and manifest files.
-rw-r--r--jpa/plugins/org.eclipse.jpt.doc.user/META-INF/MANIFEST.MF10
-rw-r--r--jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml16
2 files changed, 16 insertions, 10 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.doc.user/META-INF/MANIFEST.MF b/jpa/plugins/org.eclipse.jpt.doc.user/META-INF/MANIFEST.MF
index 6b85b224a0..9549f42ee2 100644
--- a/jpa/plugins/org.eclipse.jpt.doc.user/META-INF/MANIFEST.MF
+++ b/jpa/plugins/org.eclipse.jpt.doc.user/META-INF/MANIFEST.MF
@@ -1,3 +1,9 @@
Manifest-Version: 1.0
-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
-
+Bundle-ManifestVersion: 2
+Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
+Bundle-SymbolicName: org.eclipse.jpt.doc.user;singleton:=true
+Bundle-Version: 2.0.0.qualifier
+Bundle-Localization: plugin
+Require-Bundle: org.eclipse.help;bundle-version="[3.3.100,4.0.0)",
+ org.eclipse.ui.cheatsheets;bundle-version="[3.3.100,4.0.0)"
diff --git a/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml b/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
index 8bfb4e14dd..342c5199d0 100644
--- a/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin name="JPA Documentation Plug-in" id="org.eclipse.jpt.doc.user" version="2.3.0" provider-name="Oracle">
+<plugin>
<!-- =========== -->
<!-- Define TOC -->
<!-- =========== -->
@@ -23,15 +23,15 @@
<!-- Cheatsheets -->
<!-- =========== -->
<extension point="org.eclipse.ui.cheatsheets.cheatSheetContent">
- <category name="JPA Development" id="com.jpa.category"/>
- <cheatsheet name="Create a JPA Project" category="com.jpa.category" contentFile="$nl$/cheatsheets/add_persistence.xml" id="org.eclipse.jpa.cheatsheet.createproject1">
- <description>Learn how to create a JPA project.</description>
+ <category name="%jpaDevelopment" id="com.jpa.category"/>
+ <cheatsheet name="%createAJpaProject" category="com.jpa.category" contentFile="$nl$/cheatsheets/add_persistence.xml" id="org.eclipse.jpa.cheatsheet.createproject1">
+ <description>%createAJpaProjectDescription</description>
</cheatsheet>
- <cheatsheet name="Create a Persistent Entity" category="com.jpa.category" contentFile="$nl$/cheatsheets/create_entity.xml" id="org.eclipse.jpa.cheatsheet.addentity">
- <description>Learn how to add a persistent entity to a Java project.</description>
+ <cheatsheet name="%createAPersistentEntity" category="com.jpa.category" contentFile="$nl$/cheatsheets/create_entity.xml" id="org.eclipse.jpa.cheatsheet.addentity">
+ <description>%createAPersistentEntityDescription</description>
</cheatsheet>
- <cheatsheet name="Map a Persistent Entity" category="com.jpa.category" contentFile="$nl$/cheatsheets/map_entity.xml" id="org.eclipse.jpa.cheatsheet.mapentity">
- <description>Learn how to map a persistent entity to a database.</description>
+ <cheatsheet name="%MapAPersistentEntity" category="com.jpa.category" contentFile="$nl$/cheatsheets/map_entity.xml" id="org.eclipse.jpa.cheatsheet.mapentity">
+ <description>%MapAPersistentEntityDescription</description>
</cheatsheet>
</extension>
</plugin>

Back to the top