Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 43030 Details for
Bug 140557
GEF Examples are inconsistent with other project example wizards
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch that takes care of the rest of the GEF naming issues.
gefExamplesPatch_20060530.txt (text/plain), 14.86 KB, created by
Syed Atif
on 2006-05-30 17:54:56 EDT
(
hide
)
Description:
Patch that takes care of the rest of the GEF naming issues.
Filename:
MIME Type:
Creator:
Syed Atif
Created:
2006-05-30 17:54:56 EDT
Size:
14.86 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.gef.examples.logic >Index: plugin.properties >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef.examples.logic/plugin.properties,v >retrieving revision 1.20 >diff -u -r1.20 plugin.properties >--- plugin.properties 28 Sep 2005 20:57:31 -0000 1.20 >+++ plugin.properties 30 May 2006 21:48:05 -0000 >@@ -9,6 +9,6 @@ > # IBM Corporation - initial API and implementation > ############################################################################### > Logic_example_graphical_editor_name = Logic Graphical Editor >-GEF_example_wizard_category_name = GEF (Graphical Editing Framework) >+GEF_example_wizard_category_name = GEF (Graphical Editing Framework) Diagrams > Logic_example_wizard_name = Logic Diagram > Logic_example_wizard_description=A wizard that creates a sample Logic file >\ No newline at end of file >Index: buildZip.xml >=================================================================== >RCS file: buildZip.xml >diff -N buildZip.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ buildZip.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,56 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!-- Copyright (c) 2005 IBM Corporation and others. --> >+<!-- All rights reserved. This program and the accompanying materials --> >+<!-- are made available under the terms of the Eclipse Public License v1.0 --> >+<!-- which accompanies this distribution, and is available at --> >+<!-- http://www.eclipse.org/legal/epl-v10.html --> >+<!-- --> >+<!-- Contributors: --> >+<!-- IBM Corporation - initial API and implementation --> >+<project default="zip.source" basedir="."> >+ >+ <target name="init"> >+ <property name="project.folder" value="${basedir}"/> >+ <property name="temp.folder" value="${basedir}/temp.folder"/> >+ </target> >+ >+ <target name="zip.source" depends="init" description="Zip all source code."> >+ >+ <!-- Copy & map Enum.java --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.java,**/*.properties,.classpath,plugin.xml,**/MANIFEST.MF"/> >+ >+ <!-- Suppress tokens --> >+ <filterset >+ begintoken="/*" >+ endtoken="*/"> >+ <filter >+ token="@BEGIN@" >+ value=""/> >+ <filter >+ token="@END@" >+ value=""/> >+ </filterset> >+ </copy> >+ >+ <!-- Copy binaries --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.gif"/> >+ </copy> >+ >+ <!-- Zip file in temporary folder --> >+ <zip >+ destfile="${project.folder}\logic.zip" >+ basedir="${temp.folder}" >+ filesonly="false" >+ whenempty="skip" >+ /> >+ >+ <!-- Delete temporary folder --> >+ <delete dir="${temp.folder}"/> >+ >+ </target> >+ >+</project> >#P org.eclipse.gef.examples.shapes >Index: plugin.xml >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef.examples.shapes/plugin.xml,v >retrieving revision 1.3 >diff -u -r1.3 plugin.xml >--- plugin.xml 15 Apr 2005 19:17:32 -0000 1.3 >+++ plugin.xml 30 May 2006 21:48:05 -0000 >@@ -13,7 +13,7 @@ > </editor> > </extension> > <extension point="org.eclipse.ui.newWizards"> >- <category name="Examples" >+ <category name="GEF (Graphical Editing Framework) Diagrams" > parentCategory="org.eclipse.ui.Examples" > id="org.eclipse.gef.examples"/> > <wizard name="Shapes Diagram" >@@ -22,6 +22,9 @@ > class="org.eclipse.gef.examples.shapes.ShapesCreationWizard" > id="org.eclipse.gef.examples.shapes.ShapesCreationWizard"> > <selection class="org.eclipse.core.resources.IResource"/> >+ <description> >+ A wizard that creates an editor for making simple shapes. >+ </description> > </wizard> > </extension> > </plugin> >Index: buildZip.xml >=================================================================== >RCS file: buildZip.xml >diff -N buildZip.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ buildZip.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,56 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!-- Copyright (c) 2005 IBM Corporation and others. --> >+<!-- All rights reserved. This program and the accompanying materials --> >+<!-- are made available under the terms of the Eclipse Public License v1.0 --> >+<!-- which accompanies this distribution, and is available at --> >+<!-- http://www.eclipse.org/legal/epl-v10.html --> >+<!-- --> >+<!-- Contributors: --> >+<!-- IBM Corporation - initial API and implementation --> >+<project default="zip.source" basedir="."> >+ >+ <target name="init"> >+ <property name="project.folder" value="${basedir}"/> >+ <property name="temp.folder" value="${basedir}/temp.folder"/> >+ </target> >+ >+ <target name="zip.source" depends="init" description="Zip all source code."> >+ >+ <!-- Copy & map Enum.java --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.java,**/*.properties,.classpath,plugin.xml,**/MANIFEST.MF"/> >+ >+ <!-- Suppress tokens --> >+ <filterset >+ begintoken="/*" >+ endtoken="*/"> >+ <filter >+ token="@BEGIN@" >+ value=""/> >+ <filter >+ token="@END@" >+ value=""/> >+ </filterset> >+ </copy> >+ >+ <!-- Copy binaries --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.gif"/> >+ </copy> >+ >+ <!-- Zip file in temporary folder --> >+ <zip >+ destfile="${project.folder}\shapes.zip" >+ basedir="${temp.folder}" >+ filesonly="false" >+ whenempty="skip" >+ /> >+ >+ <!-- Delete temporary folder --> >+ <delete dir="${temp.folder}"/> >+ >+ </target> >+ >+</project> >#P org.eclipse.gef.examples.flow >Index: plugin.xml >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef.examples.flow/plugin.xml,v >retrieving revision 1.15 >diff -u -r1.15 plugin.xml >--- plugin.xml 15 Feb 2006 22:26:55 -0000 1.15 >+++ plugin.xml 30 May 2006 21:48:06 -0000 >@@ -17,7 +17,7 @@ > <extension > point="org.eclipse.ui.newWizards"> > <category >- name="GEF (Graphical Editing Framework)" >+ name="GEF (Graphical Editing Framework) Diagrams" > parentCategory="org.eclipse.ui.Examples" > id="org.eclipse.gef.examples"> > </category> >@@ -30,6 +30,9 @@ > <selection > class="org.eclipse.core.resources.IResource"> > </selection> >+ <description> >+ A wizard that creates an editor for making flow diagrams (includes a sample flow diagram). >+ </description> > </wizard> > </extension> > >Index: buildZip.xml >=================================================================== >RCS file: buildZip.xml >diff -N buildZip.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ buildZip.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,56 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!-- Copyright (c) 2005 IBM Corporation and others. --> >+<!-- All rights reserved. This program and the accompanying materials --> >+<!-- are made available under the terms of the Eclipse Public License v1.0 --> >+<!-- which accompanies this distribution, and is available at --> >+<!-- http://www.eclipse.org/legal/epl-v10.html --> >+<!-- --> >+<!-- Contributors: --> >+<!-- IBM Corporation - initial API and implementation --> >+<project default="zip.source" basedir="."> >+ >+ <target name="init"> >+ <property name="project.folder" value="${basedir}"/> >+ <property name="temp.folder" value="${basedir}/temp.folder"/> >+ </target> >+ >+ <target name="zip.source" depends="init" description="Zip all source code."> >+ >+ <!-- Copy & map Enum.java --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.java,**/*.properties,.classpath,plugin.xml,**/MANIFEST.MF"/> >+ >+ <!-- Suppress tokens --> >+ <filterset >+ begintoken="/*" >+ endtoken="*/"> >+ <filter >+ token="@BEGIN@" >+ value=""/> >+ <filter >+ token="@END@" >+ value=""/> >+ </filterset> >+ </copy> >+ >+ <!-- Copy binaries --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.gif"/> >+ </copy> >+ >+ <!-- Zip file in temporary folder --> >+ <zip >+ destfile="${project.folder}\flow.zip" >+ basedir="${temp.folder}" >+ filesonly="false" >+ whenempty="skip" >+ /> >+ >+ <!-- Delete temporary folder --> >+ <delete dir="${temp.folder}"/> >+ >+ </target> >+ >+</project> >#P org.eclipse.gef.examples.ediagram >Index: plugin.xml >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef.examples.ediagram/plugin.xml,v >retrieving revision 1.5 >diff -u -r1.5 plugin.xml >--- plugin.xml 19 Aug 2005 16:43:04 -0000 1.5 >+++ plugin.xml 30 May 2006 21:48:07 -0000 >@@ -17,7 +17,7 @@ > <extension > point="org.eclipse.ui.newWizards"> > <category >- name="GEF Examples" >+ name="GEF (Graphical Editing Framework) Diagrams" > parentCategory="org.eclipse.ui.Examples" > id="org.eclipse.gef.examples"> > </category> >Index: buildZip.xml >=================================================================== >RCS file: buildZip.xml >diff -N buildZip.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ buildZip.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,56 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!-- Copyright (c) 2005 IBM Corporation and others. --> >+<!-- All rights reserved. This program and the accompanying materials --> >+<!-- are made available under the terms of the Eclipse Public License v1.0 --> >+<!-- which accompanies this distribution, and is available at --> >+<!-- http://www.eclipse.org/legal/epl-v10.html --> >+<!-- --> >+<!-- Contributors: --> >+<!-- IBM Corporation - initial API and implementation --> >+<project default="zip.source" basedir="."> >+ >+ <target name="init"> >+ <property name="project.folder" value="${basedir}"/> >+ <property name="temp.folder" value="${basedir}/temp.folder"/> >+ </target> >+ >+ <target name="zip.source" depends="init" description="Zip all source code."> >+ >+ <!-- Copy & map Enum.java --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.java,**/*.properties,.classpath,plugin.xml,**/MANIFEST.MF"/> >+ >+ <!-- Suppress tokens --> >+ <filterset >+ begintoken="/*" >+ endtoken="*/"> >+ <filter >+ token="@BEGIN@" >+ value=""/> >+ <filter >+ token="@END@" >+ value=""/> >+ </filterset> >+ </copy> >+ >+ <!-- Copy binaries --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.gif"/> >+ </copy> >+ >+ <!-- Zip file in temporary folder --> >+ <zip >+ destfile="${project.folder}\ediagram.zip" >+ basedir="${temp.folder}" >+ filesonly="false" >+ whenempty="skip" >+ /> >+ >+ <!-- Delete temporary folder --> >+ <delete dir="${temp.folder}"/> >+ >+ </target> >+ >+</project> >#P org.eclipse.gef.examples.text >Index: plugin.xml >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef.examples.text/plugin.xml,v >retrieving revision 1.10 >diff -u -r1.10 plugin.xml >--- plugin.xml 12 Aug 2005 04:45:26 -0000 1.10 >+++ plugin.xml 30 May 2006 21:48:08 -0000 >@@ -16,7 +16,7 @@ > </extension> > > <extension point="org.eclipse.ui.newWizards"> >- <category name="Examples" id="org.eclipse.ui.Examples/org.eclipse.gef.examples" /> >+ <category name="GEF (Graphical Editing Framework) Diagrams" id="org.eclipse.ui.Examples/org.eclipse.gef.examples" /> > <wizard > name="GEF WYSIWYG Document Example" > icon="text.gif" >@@ -125,4 +125,4 @@ > schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"> > </key> > </extension> >-</plugin> >\ No newline at end of file >+</plugin> >Index: buildZip.xml >=================================================================== >RCS file: buildZip.xml >diff -N buildZip.xml >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ buildZip.xml 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,56 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!-- Copyright (c) 2005 IBM Corporation and others. --> >+<!-- All rights reserved. This program and the accompanying materials --> >+<!-- are made available under the terms of the Eclipse Public License v1.0 --> >+<!-- which accompanies this distribution, and is available at --> >+<!-- http://www.eclipse.org/legal/epl-v10.html --> >+<!-- --> >+<!-- Contributors: --> >+<!-- IBM Corporation - initial API and implementation --> >+<project default="zip.source" basedir="."> >+ >+ <target name="init"> >+ <property name="project.folder" value="${basedir}"/> >+ <property name="temp.folder" value="${basedir}/temp.folder"/> >+ </target> >+ >+ <target name="zip.source" depends="init" description="Zip all source code."> >+ >+ <!-- Copy & map Enum.java --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.java,**/*.properties,.classpath,plugin.xml,**/MANIFEST.MF"/> >+ >+ <!-- Suppress tokens --> >+ <filterset >+ begintoken="/*" >+ endtoken="*/"> >+ <filter >+ token="@BEGIN@" >+ value=""/> >+ <filter >+ token="@END@" >+ value=""/> >+ </filterset> >+ </copy> >+ >+ <!-- Copy binaries --> >+ <copy toDir="${temp.folder}"> >+ <fileset dir="${project.folder}" >+ includes="**/*.gif"/> >+ </copy> >+ >+ <!-- Zip file in temporary folder --> >+ <zip >+ destfile="${project.folder}\text.zip" >+ basedir="${temp.folder}" >+ filesonly="false" >+ whenempty="skip" >+ /> >+ >+ <!-- Delete temporary folder --> >+ <delete dir="${temp.folder}"/> >+ >+ </target> >+ >+</project>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 140557
:
41057
|
41166
|
41167
|
43028
|
43030
|
43797
|
43798