Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Pawlowski2006-09-01 16:30:45 +0000
committerMike Pawlowski2006-09-01 16:30:45 +0000
commit296d79294b8d4c623b9b98552c9ab504c248d90e (patch)
tree09295613c4866ea50f77597bfc41d300e7499934
parent9311cb4791d308f2f41fa706bf45c5611ccf436b (diff)
downloadeclipse.pde-296d79294b8d4c623b9b98552c9ab504c248d90e.tar.gz
eclipse.pde-296d79294b8d4c623b9b98552c9ab504c248d90e.tar.xz
eclipse.pde-296d79294b8d4c623b9b98552c9ab504c248d90e.zip
155984 - [Cheat Sheet Authoring] New simple cheat sheet editor UIv20060905
-rw-r--r--org.eclipse.pde/plugin.properties2
-rw-r--r--org.eclipse.pde/plugin.xml14
2 files changed, 16 insertions, 0 deletions
diff --git a/org.eclipse.pde/plugin.properties b/org.eclipse.pde/plugin.properties
index e978485..8c0fc98 100644
--- a/org.eclipse.pde/plugin.properties
+++ b/org.eclipse.pde/plugin.properties
@@ -32,3 +32,5 @@ It also helps you install and uninstall a feature using Install/Update.
cheatsheet.rcpapp.name = Creating a Rich Client Application
cheatsheet.rcpapp.desc = This cheat sheet helps you to create, define, test and export a fully-branded standalone RCP product.
+
+content-type.name.simpleCS = Simple Cheat Sheet File \ No newline at end of file
diff --git a/org.eclipse.pde/plugin.xml b/org.eclipse.pde/plugin.xml
index f2accb6..6ba7b71 100644
--- a/org.eclipse.pde/plugin.xml
+++ b/org.eclipse.pde/plugin.xml
@@ -139,6 +139,20 @@
base-type="org.eclipse.jdt.core.JARManifest"
priority="high"
describer="org.eclipse.pde.internal.core.content.BundleManifestDescriber"/>
+ <content-type
+ base-type="org.eclipse.core.runtime.xml"
+ file-extensions="xml"
+ id="simpleCheatSheet"
+ name="%content-type.name.simpleCS"
+ priority="normal">
+ <describer
+ class="org.eclipse.core.runtime.content.XMLRootElementContentDescriber">
+ <parameter
+ name="element"
+ value="cheatsheet">
+ </parameter>
+ </describer>
+ </content-type>
</extension>

Back to the top