<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>gef-dev</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/maillist.html</link>
		<description>gef-dev</description>
		<language>en-us</language>
		<pubDate>Thu, 19 Nov 2009 09:40:08 GMT</pubDate>
		<lastBuildDate>Thu, 19 Nov 2009 09:40:08 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>gef-dev</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/maillist.html</link>
		</image>
 

	<item>
		<title>[gef-dev] problem in mixing layout</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01227.html</link>
		<description> Hello, I'm developping an application about a network diagram and I'd like to apply different layouts on the same graph.Is it possible to select an entity and to apply another layout to this entity or do I have to create a new graph and disconnect the old...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td style="">


Hello, <br>I'm developping an application about a network diagram and I'd like to apply different layouts on the same graph.<br>Is it possible to select an entity and to apply another layout to this entity or do I have to create a new graph and disconnect the old one.<br>I tough I could override the method getNodesTolayout to apply a filter on the set of node in order to choose a part of the graph nodes to make the layout but I seems impossible.<br>Any idea?<br><br>thanks<br> 		 	   		  <br /><hr />Get a great deal on Windows 7 and see how it works the way you want. <a href='http://go.microsoft.com/?linkid=9691812' target='_new'>Check out the offers on Windows 7now.</a>
</td></tr></table>]]></content:encoded>
		<pubDate>Thu, 19 Nov 2009 09:31:39 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01227.html</guid>
		<author>j.bitoune@xxxxxxx (du pre jannot)</author>
	</item>


	<item>
		<title>Re: [gef-dev] proposed possible patch for zest 2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01226.html</link>
		<description>https://bugs.eclipse.org/bugs/show_bug.cgi?id=295002On Nov 11, 2009, at 6:59 PM, Ian Bull wrote:-- R. Ian Bull | EclipseSource Victoria | +1 250 477 7484http://eclipsesource.com | http://twitter.com/eclipsesource ___________________________________________...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td style=""><div><br></div><div><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=295002">https://bugs.eclipse.org/bugs/show_bug.cgi?id=295002</a></div><br><div><div>On Nov 11, 2009, at 6:59 PM, Ian Bull wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Yep, we can probably get this in.<br><br>For legal reasons it will have to come on a bug report.&nbsp; Can you file a bug report and put this patch there.<br><br>Thanks for all this work Miles.&nbsp; When I see positive results, it gives me the motivation to get all this stuff in place.&nbsp; <br>
<br>cheers,<br>ian<br><br><br><div class="gmail_quote">On Wed, Nov 11, 2009 at 10:59 AM, Miles Parker <span dir="ltr">&lt;<a href="mailto:milesparker@xxxxxxxxx">milesparker@xxxxxxxxx</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="word-wrap: break-word;">Hi guys,<div><br></div><div>Please see blog for more details.&nbsp;<a href="http://milesparker.blogspot.com/2009/11/zest-for-life.html" target="_blank">http://milesparker.blogspot.com/2009/11/zest-for-life.html</a> This is obviously self-serving :), but perhaps there are changes you could make along these lines -- perhaps just put an option for node-size favoring in Zest. Or feel free to use the FreeformtreeLayout class that I've got in the blog entry.</div>
<div><br></div><div>cheers,</div><div><br></div><div>Miles</div><div><span style="font-family: Verdana,sans-serif; font-size: 12px;"><pre style="color: rgb(102, 102, 102);"><br>Index: src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java<br>
===================================================================<br>--- src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (revision 170)<br>+++ src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (working copy)<br>
@@ -57,6 +57,7 @@<br><br>private boolean resize = false;<br><br>+<br>private LayoutContext context;<br><br>private DisplayIndependentRectangle bounds;<br>@@ -72,6 +73,7 @@<br> setDirection(direction);<br>}<br><br>+<br>public int getDirection() {<br>
 return direction;<br>}<br>@@ -121,6 +123,10 @@<br>  AlgorithmHelper.maximizeSizes(entities);<br> }<br><br>+  scaleEntities(entities);<br>+ }<br>+<br>+ protected void scaleEntities(EntityLayout[] entities) {<br> DisplayIndependentRectangle bounds2 = new DisplayIndependentRectangle(bounds);<br>
 AlgorithmHelper.fitWithinBounds(entities, bounds2, resize);<br>}<br>@@ -128,6 +134,17 @@<br>void internalApplyLayout() {<br> TreeNode superRoot = treeObserver.getSuperRoot();<br> bounds = context.getBounds();<br>+  updateLeafAndLayerSizes();<br>
+  int leafCountSoFar = 0;<br>+  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>+   TreeNode rootInfo = (TreeNode) iterator.next();<br>+   computePositionRecursively(rootInfo, leafCountSoFar);<br>
+   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>+  }<br>+ }<br>+<br>+ protected void updateLeafAndLayerSizes() {<br>+  TreeNode superRoot = treeObserver.getSuperRoot();<br> if (direction == TOP_DOWN || direction == BOTTOM_UP) {<br>
  leafSize = bounds.width / superRoot.numOfLeaves;<br>  layerSize = bounds.height / superRoot.height;<br>@@ -135,12 +152,6 @@<br>  leafSize = bounds.height / superRoot.numOfLeaves;<br>  layerSize = bounds.width / superRoot.height;<br>
 }<br>-  int leafCountSoFar = 0;<br>-  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>-   TreeNode rootInfo = (TreeNode) iterator.next();<br>-   computePositionRecursively(rootInfo, leafCountSoFar);<br>
-   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>-  }<br>}<br><br>/**<br>@@ -171,4 +182,12 @@<br>  relativePosition += childInfo.numOfLeaves;<br> }<br>}<br>+<br>+ protected void setLeafSize(double leafSize) {<br>
+  this.leafSize = leafSize;<br>+ }<br>+<br>+ protected void setLayerSize(double layerSize) {<br>+  this.layerSize = layerSize;<br>+ }<br>}</pre></span><div><br></div></div></div><br>_______________________________________________<br>

gef-dev mailing list<br>
<a href="mailto:gef-dev@xxxxxxxxxxx">gef-dev@xxxxxxxxxxx</a><br>
<a href="https://dev.eclipse.org/mailman/listinfo/gef-dev" target="_blank">https://dev.eclipse.org/mailman/listinfo/gef-dev</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>R. Ian Bull | EclipseSource Victoria | +1 250 477 7484<br><a href="http://eclipsesource.com/">http://eclipsesource.com</a> | <a href="http://twitter.com/eclipsesource">http://twitter.com/eclipsesource</a><br>

_______________________________________________<br>gef-dev mailing list<br><a href="mailto:gef-dev@xxxxxxxxxxx">gef-dev@xxxxxxxxxxx</a><br>https://dev.eclipse.org/mailman/listinfo/gef-dev<br></blockquote></div><br></td></tr></table>]]></content:encoded>
		<pubDate>Thu, 12 Nov 2009 18:25:27 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01226.html</guid>
		<author>milesparker@xxxxxxx (Miles Parker)</author>
	</item>


	<item>
		<title>Re: [gef-dev] proposed possible patch for zest 2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01225.html</link>
		<description>Yep, we can probably get this in.For legal reasons it will have to come on a bug report.&amp;#xA0; Can you file a bug report and put this patch there.Thanks for all this work Miles.&amp;#xA0; When I see positive results, it gives me the motivation to get all this stuff in p...</description>
		<content:encoded><![CDATA[Yep, we can probably get this in.<br><br>For legal reasons it will have to come on a bug report.&#xA0; Can you file a bug report and put this patch there.<br><br>Thanks for all this work Miles.&#xA0; When I see positive results, it gives me the motivation to get all this stuff in place.&#xA0; <br>
<br>cheers,<br>ian<br><br><br><div class="gmail_quote">On Wed, Nov 11, 2009 at 10:59 AM, Miles Parker <span dir="ltr">&lt;<a href="mailto:milesparker@xxxxxxxxx">milesparker@xxxxxxxxx</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="word-wrap: break-word;">Hi guys,<div><br></div><div>Please see blog for more details.&#xA0;<a href="http://milesparker.blogspot.com/2009/11/zest-for-life.html" target="_blank">http://milesparker.blogspot.com/2009/11/zest-for-life.html</a> This is obviously self-serving :), but perhaps there are changes you could make along these lines -- perhaps just put an option for node-size favoring in Zest. Or feel free to use the FreeformtreeLayout class that I&#39;ve got in the blog entry.</div>
<div><br></div><div>cheers,</div><div><br></div><div>Miles</div><div><span style="font-family: Verdana,sans-serif; font-size: 12px;"><pre style="color: rgb(102, 102, 102);"><br>Index: src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java<br>
===================================================================<br>--- src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (revision 170)<br>+++ src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (working copy)<br>
@@ -57,6 +57,7 @@<br><br>private boolean resize = false;<br><br>+<br>private LayoutContext context;<br><br>private DisplayIndependentRectangle bounds;<br>@@ -72,6 +73,7 @@<br> setDirection(direction);<br>}<br><br>+<br>public int getDirection() {<br>
 return direction;<br>}<br>@@ -121,6 +123,10 @@<br>  AlgorithmHelper.maximizeSizes(entities);<br> }<br><br>+  scaleEntities(entities);<br>+ }<br>+<br>+ protected void scaleEntities(EntityLayout[] entities) {<br> DisplayIndependentRectangle bounds2 = new DisplayIndependentRectangle(bounds);<br>
 AlgorithmHelper.fitWithinBounds(entities, bounds2, resize);<br>}<br>@@ -128,6 +134,17 @@<br>void internalApplyLayout() {<br> TreeNode superRoot = treeObserver.getSuperRoot();<br> bounds = context.getBounds();<br>+  updateLeafAndLayerSizes();<br>
+  int leafCountSoFar = 0;<br>+  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>+   TreeNode rootInfo = (TreeNode) iterator.next();<br>+   computePositionRecursively(rootInfo, leafCountSoFar);<br>
+   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>+  }<br>+ }<br>+<br>+ protected void updateLeafAndLayerSizes() {<br>+  TreeNode superRoot = treeObserver.getSuperRoot();<br> if (direction == TOP_DOWN || direction == BOTTOM_UP) {<br>
  leafSize = bounds.width / superRoot.numOfLeaves;<br>  layerSize = bounds.height / superRoot.height;<br>@@ -135,12 +152,6 @@<br>  leafSize = bounds.height / superRoot.numOfLeaves;<br>  layerSize = bounds.width / superRoot.height;<br>
 }<br>-  int leafCountSoFar = 0;<br>-  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>-   TreeNode rootInfo = (TreeNode) iterator.next();<br>-   computePositionRecursively(rootInfo, leafCountSoFar);<br>
-   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>-  }<br>}<br><br>/**<br>@@ -171,4 +182,12 @@<br>  relativePosition += childInfo.numOfLeaves;<br> }<br>}<br>+<br>+ protected void setLeafSize(double leafSize) {<br>
+  this.leafSize = leafSize;<br>+ }<br>+<br>+ protected void setLayerSize(double layerSize) {<br>+  this.layerSize = layerSize;<br>+ }<br>}</pre></span><div><br></div></div></div><br>_______________________________________________<br>

gef-dev mailing list<br>
<a href="mailto:gef-dev@xxxxxxxxxxx">gef-dev@xxxxxxxxxxx</a><br>
<a href="https://dev.eclipse.org/mailman/listinfo/gef-dev" target="_blank">https://dev.eclipse.org/mailman/listinfo/gef-dev</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>R. Ian Bull | EclipseSource Victoria | +1 250 477 7484<br><a href="http://eclipsesource.com">http://eclipsesource.com</a> | <a href="http://twitter.com/eclipsesource">http://twitter.com/eclipsesource</a><br>

]]></content:encoded>
		<pubDate>Thu, 12 Nov 2009 02:59:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01225.html</guid>
		<author>irbull@xxxxxxx (Ian Bull)</author>
	</item>
	<item>
		<title>[gef-dev] proposed possible patch for zest 2.0</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01224.html</link>
		<description>Hi guys,Please see blog for more details. http://milesparker.blogspot.com/2009/11/zest-for-life.html This is obviously self-serving :), but perhaps there are changes you could make along these lines -- perhaps just put an option for node-size favoring in Z...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td style="">Hi guys,<div><br></div><div>Please see blog for more details.&nbsp;<a href="http://milesparker.blogspot.com/2009/11/zest-for-life.html">http://milesparker.blogspot.com/2009/11/zest-for-life.html</a> This is obviously self-serving :), but perhaps there are changes you could make along these lines -- perhaps just put an option for node-size favoring in Zest. Or feel free to use the FreeformtreeLayout class that I've got in the blog entry.</div><div><br></div><div>cheers,</div><div><br></div><div>Miles</div><div><span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 12px; "><pre style="color: rgb(102, 102, 102); "><br>Index: src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java<br>===================================================================<br>--- src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (revision 170)<br>+++ src/org/eclipse/zest/layouts/algorithms/TreeLayoutAlgorithm.java (working copy)<br>@@ -57,6 +57,7 @@<br><br>private boolean resize = false;<br><br>+<br>private LayoutContext context;<br><br>private DisplayIndependentRectangle bounds;<br>@@ -72,6 +73,7 @@<br> setDirection(direction);<br>}<br><br>+<br>public int getDirection() {<br> return direction;<br>}<br>@@ -121,6 +123,10 @@<br>  AlgorithmHelper.maximizeSizes(entities);<br> }<br><br>+  scaleEntities(entities);<br>+ }<br>+<br>+ protected void scaleEntities(EntityLayout[] entities) {<br> DisplayIndependentRectangle bounds2 = new DisplayIndependentRectangle(bounds);<br> AlgorithmHelper.fitWithinBounds(entities, bounds2, resize);<br>}<br>@@ -128,6 +134,17 @@<br>void internalApplyLayout() {<br> TreeNode superRoot = treeObserver.getSuperRoot();<br> bounds = context.getBounds();<br>+  updateLeafAndLayerSizes();<br>+  int leafCountSoFar = 0;<br>+  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>+   TreeNode rootInfo = (TreeNode) iterator.next();<br>+   computePositionRecursively(rootInfo, leafCountSoFar);<br>+   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>+  }<br>+ }<br>+<br>+ protected void updateLeafAndLayerSizes() {<br>+  TreeNode superRoot = treeObserver.getSuperRoot();<br> if (direction == TOP_DOWN || direction == BOTTOM_UP) {<br>  leafSize = bounds.width / superRoot.numOfLeaves;<br>  layerSize = bounds.height / superRoot.height;<br>@@ -135,12 +152,6 @@<br>  leafSize = bounds.height / superRoot.numOfLeaves;<br>  layerSize = bounds.width / superRoot.height;<br> }<br>-  int leafCountSoFar = 0;<br>-  for (Iterator iterator = superRoot.getChildren().iterator(); iterator.hasNext();) {<br>-   TreeNode rootInfo = (TreeNode) iterator.next();<br>-   computePositionRecursively(rootInfo, leafCountSoFar);<br>-   leafCountSoFar = leafCountSoFar + rootInfo.numOfLeaves;<br>-  }<br>}<br><br>/**<br>@@ -171,4 +182,12 @@<br>  relativePosition += childInfo.numOfLeaves;<br> }<br>}<br>+<br>+ protected void setLeafSize(double leafSize) {<br>+  this.leafSize = leafSize;<br>+ }<br>+<br>+ protected void setLayerSize(double layerSize) {<br>+  this.layerSize = layerSize;<br>+ }<br>}</pre></span><div><br></div></div></td></tr></table>]]></content:encoded>
		<pubDate>Wed, 11 Nov 2009 18:59:20 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01224.html</guid>
		<author>milesparker@xxxxxxx (Miles Parker)</author>
	</item>


	<item>
		<title>[gef-dev] Re: GEF Examples</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01223.html</link>
		<description> -- Nick Boldt :: JBoss by Red HatProductization Lead :: JBoss Tools &amp;amp; Dev StudioRelease Engineer :: Dash Athena http://nick.divbyzero.com </description>
		<content:encoded><![CDATA[All the code&#39;s in CVS.<br><br>Browse it here:<br><br><a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.gef/?root=Tools_Project">http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.gef/?root=Tools_Project</a><br>

<br>Or fetch it from here:<br><br>anonymous@xxxxxxxxxxxxxxx:/cvsroot/tools/org.eclipse.gef/<br><br>Nick<br><br><div class="gmail_quote">On Sun, Oct 18, 2009 at 9:03 AM, Matthias Gerhard <span dir="ltr">&lt;<a href="mailto:matthias_gerhard11@xxxxxxxx">matthias_gerhard11@xxxxxxxx</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;" valign="top">

Hi,<div><br></div><div>is there any possibility to get the source code of the GEF shape diagram editor? This would really help me out.&#xA0;</div><div><br></div><div>Thanks in advance,</div><div><br></div><div>Matthias Gerhard</div>

</td></tr></tbody></table><br>


      </blockquote></div><br><br clear="all"><br>-- <br>Nick Boldt :: JBoss by Red Hat<br>Productization Lead :: JBoss Tools &amp; Dev Studio<br>Release Engineer :: Dash Athena <br><a href="http://nick.divbyzero.com">http://nick.divbyzero.com</a><br>


]]></content:encoded>
		<pubDate>Mon, 19 Oct 2009 06:01:36 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01223.html</guid>
		<author>nickboldt@xxxxxxx (Nick Boldt)</author>
	</item>


	<item>
		<title>Re: [gef-dev] Project Plan</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01222.html</link>
		<description> </description>
		<content:encoded><![CDATA[<tt>You should probably also add some future milestones. I assume that 
you'll line up with the release train.</tt><br>
<br>
<pre style="margin: 0em;">Wayne</pre><br>
<tt>Anthony Hunter wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;"><br>Sure Ian,</pre><br>
<tt>The project plan is here: 
<a  href="http://www.eclipse.org/projects/project-plan.php?projectid=tools.gef">http://www.eclipse.org/projects/project-plan.php?projectid=tools.gef</a></tt><br>
<br>
<pre style="margin: 0em;">It is in CVS in /cvsroot/org.eclipse/www/gef/plan/gef_plan_3_6.xml</pre><br>
<pre style="margin: 0em;">If you want to change anything, go ahead.</pre><br>
<pre style="margin: 0em;">All we should have to do is add the Helios flag to our Bugzilla features.</pre><br>
<pre style="margin: 0em;">Cheers...
Anthony
--
Anthony Hunter <a  href="mailto:anthonyh@xxxxxxxxxx">mailto:anthonyh@xxxxxxxxxx</a>
Software Development Manager: Eclipse Open Source Components
IBM Rational Software: Aurora / GEF / GMF / Modeling Tools
Phone: 613-270-4613</pre><br>
<tt><br>Inactive hide details for Ian Bull ---2009/09/24 04:23:18 
PM---Anthony,Ian Bull ---2009/09/24 04:23:18 PM---Anthony,</tt><br>
<br>
<pre style="margin: 0em;"><br>From: 	
Ian Bull &lt;irbull@xxxxxxxxxxxxxxxxx&gt;</pre><br>
<pre style="margin: 0em;">To: 	
GEF development &lt;gef-dev@xxxxxxxxxxx&gt;</pre><br>
<pre style="margin: 0em;">Date: 	
2009/09/24 04:23 PM</pre><br>
<pre style="margin: 0em;">Subject: 	
[gef-dev] Project Plan</pre><br>
<pre style="margin: 0em;">------------------------------------------------------------------------</pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;">Anthony,</pre><br>
<tt>Are you handling the GEF project plan? Do you need me to help you with 
this? </tt><br>
<br>
<pre style="margin: 0em;">Ping if you need help,</pre><br>
<pre style="margin: 0em;">cheers,
ian</pre><br>
<tt>--<br>
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484_<br>
__<a  href="http://eclipsesource.com_">http://eclipsesource.com_</a> &lt;<a  href="http://eclipsesource.com/">http://eclipsesource.com/</a>&gt; | 
_<a  href="http://twitter.com/eclipsesource________________________________________________">http://twitter.com/eclipsesource________________________________________________</a><br>
gef-dev mailing list<br>
gef-dev@xxxxxxxxxxx<br>
<a  href="https://dev.eclipse.org/mailman/listinfo/gef-dev">https://dev.eclipse.org/mailman/listinfo/gef-dev</a></tt><br>
<br>
<pre style="margin: 0em;"><br>------------------------------------------------------------------------</pre><br>
<tt>_______________________________________________<br>
gef-dev mailing list<br>
gef-dev@xxxxxxxxxxx<br>
<a  href="https://dev.eclipse.org/mailman/listinfo/gef-dev">https://dev.eclipse.org/mailman/listinfo/gef-dev</a><br>
  
</tt></blockquote><br>
]]></content:encoded>
		<pubDate>Thu, 24 Sep 2009 21:41:17 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01222.html</guid>
		<author>wayne@xxxxxxx (Wayne Beaton)</author>
	</item>
	<item>
		<title>Re: [gef-dev] Project Plan</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01221.html</link>
		<description> Sure Ian, The project plan is here: http://www.eclipse.org/projects/project-plan.php?projectid=tools.gef It is in CVS in /cvsroot/org.eclipse/www/gef/plan/gef_plan_3_6.xml If you want to change anything, go ahead. All we should have to do is add the Helio...</description>
		<content:encoded><![CDATA[
<p>Sure Ian, <br>
<br>
The project plan is here: <a href="http://www.eclipse.org/projects/project-plan.php?projectid=tools.gef">http://www.eclipse.org/projects/project-plan.php?projectid=tools.gef</a><br>
<br>
It is in CVS in /cvsroot/org.eclipse/www/gef/plan/gef_plan_3_6.xml<br>
<br>
If you want to change anything, go ahead. <br>
<br>
All we should have to do is add the Helios flag to our Bugzilla features.<br>
<br>
Cheers...<br>
Anthony<br>
--<br>
Anthony Hunter <a href="mailto:anthonyh@xxxxxxxxxx">mailto:anthonyh@xxxxxxxxxx</a><br>
Software Development Manager: Eclipse Open Source Components<br>
IBM Rational Software: Aurora / GEF / GMF / Modeling Tools <br>
Phone: 613-270-4613<br>
<br>
<br>
<img width="16" height="16" src="" border="0" alt="Inactive hide details for Ian Bull ---2009/09/24 04:23:18 PM---Anthony,"><font color="#424282">Ian Bull ---2009/09/24 04:23:18 PM---Anthony,</font><br>
<br>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%"><img width="96" height="1" src="" border="0" alt=""><br>
<font size="2" color="#5F5F5F">From:</font></td><td width="100%"><img width="1" height="1" src="" border="0" alt=""><br>
<font size="2">Ian Bull &lt;irbull@xxxxxxxxxxxxxxxxx&gt;</font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="" border="0" alt=""><br>
<font size="2" color="#5F5F5F">To:</font></td><td width="100%"><img width="1" height="1" src="" border="0" alt=""><br>
<font size="2">GEF development &lt;gef-dev@xxxxxxxxxxx&gt;</font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Date:</font></td><td width="100%"><img width="1" height="1" src="" border="0" alt=""><br>
<font size="2">2009/09/24 04:23 PM</font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Subject:</font></td><td width="100%"><img width="1" height="1" src="" border="0" alt=""><br>
<font size="2">[gef-dev] Project Plan</font></td></tr>
</table>
<hr width="100%" size="2" align="left" noshade style="color:#8091A5; "><br>
<br>
<br>
<font size="4">Anthony,<br>
<br>
Are you handling the GEF project plan? Do you need me to help you with this?&#xA0; <br>
<br>
Ping if you need help,<br>
<br>
cheers,<br>
ian<br>
<br>
-- <br>
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484</font><u><font size="4" color="#0000FF"><br>
</font></u><a href="http://eclipsesource.com/"><u><font size="4" color="#0000FF">http://eclipsesource.com</font></u></a><font size="4"> | </font><a href="http://twitter.com/eclipsesource"><u><font size="4" color="#0000FF">http://twitter.com/eclipsesource</font></u></a><tt>_______________________________________________<br>
gef-dev mailing list<br>
gef-dev@xxxxxxxxxxx<br>
</tt><tt><a href="https://dev.eclipse.org/mailman/listinfo/gef-dev">https://dev.eclipse.org/mailman/listinfo/gef-dev</a></tt><tt><br>
</tt><br>
<br>

<p><a href="gifk6TrKlVgpL.gif" ><img src="gifk6TrKlVgpL.gif" alt="GIF image"></a></p>
<p><a href="gifb0gjUtkVTf.gif" ><img src="gifb0gjUtkVTf.gif" alt="GIF image"></a></p>
]]></content:encoded>
		<pubDate>Thu, 24 Sep 2009 21:36:56 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01221.html</guid>
		<author>anthonyh@xxxxxxx (Anthony Hunter)</author>
	</item>
	<item>
		<title>[gef-dev] Project Plan</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01220.html</link>
		<description>Anthony,Are you handling the GEF project plan? Do you need me to help you with this?&amp;#xA0; Ping if you need help,cheers,ian-- R. Ian Bull | EclipseSource Victoria | +1 250 477 7484 http://eclipsesource.com | http://twitter.com/eclipsesource </description>
		<content:encoded><![CDATA[Anthony,<br><br>Are you handling the GEF project plan? Do you need me to help you with this?&#xA0; <br><br>Ping if you need help,<br><br>cheers,<br>ian<br clear="all"><br>-- <br>R. Ian Bull | EclipseSource Victoria | +1 250 477 7484<br>
<a href="http://eclipsesource.com">http://eclipsesource.com</a> | <a href="http://twitter.com/eclipsesource">http://twitter.com/eclipsesource</a><br>
]]></content:encoded>
		<pubDate>Thu, 24 Sep 2009 20:22:59 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01220.html</guid>
		<author>irbull@xxxxxxx (Ian Bull)</author>
	</item>
	<item>
		<title>Re: [gef-dev] GEF Incubator</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01219.html</link>
		<description> </description>
		<content:encoded><![CDATA[<tt>Hey Ian,<br>
This is still a month or two away [1] - but we have been working on 
getting GEF apps working on the web. Currently the home for this stuff 
has been on e4 but I am wondering if the GEF incubator project would be 
a better home.</tt><br>
<br>
<pre style="margin: 0em;">Any thoughts?</pre><br>
<tt>In the long run this will likely ship to others as a GEF patch - which 
will be applied on GEF to get a library that you would use when you want 
your app working on the web. Beyond the GEF/Draw2D patch we have a swt 
reimplementation, so most of the code is not really GEF code. I would 
think that E4 would be the best home, but the reality is that the work 
has been for a drawing focus, so our work wouldn't be as applicable for 
larger swt/jface apps unless someone else wants to tackle the work. 
I.E., our deployment scenario is alot like RAP and integrating with them 
makes more sense.</tt><br>
<br>
<pre style="margin: 0em;">Vineet</pre><br>
<tt>[1] A month or two away - we have a couple of the toy examples working, 
but we want to get a couple of serious apps brought over so that we are 
comfortable with the stability of the work.</tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
<tt>Ian Bull wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>To host some of the exciting new development we saw over the summer 
(Dot4Zest and the updates to the Zest Layouts), I am putting together a 
proposal for an incubator project.  Currently this will host these two 
projects, and the team from [1] have also expressed interested in moving 
their code to Eclipse.org.</tt><br>
<br>
<pre style="margin: 0em;">The proposal is available here:
<a  href="http://wiki.eclipse.org/Gef/Incubator/Proposal">http://wiki.eclipse.org/Gef/Incubator/Proposal</a></pre><br>
<tt>I've listed Anthony and myself as project co-leads.  Chris Aniszczyk has 
offered to be a mentor for the work.</tt><br>
<br>
<tt>Please take a second to review the proposal and let me know what you 
think. I would like to start the process fairly soon.</tt><br>
<br>
<pre style="margin: 0em;">[1] <a  href="http://code.google.com/p/emfmodelvisualizer/">http://code.google.com/p/emfmodelvisualizer/</a></pre><br>
<pre style="margin: 0em;">cheers,
ian</pre><br>
<pre style="margin: 0em;">--
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
<a  href="http://eclipsesource.com">http://eclipsesource.com</a> | <a  href="http://twitter.com/eclipsesource">http://twitter.com/eclipsesource</a></pre><br>
<pre style="margin: 0em;"><br>------------------------------------------------------------------------</pre><br>
<pre style="margin: 0em;">_______________________________________________
gef-dev mailing list
gef-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/gef-dev">https://dev.eclipse.org/mailman/listinfo/gef-dev</a>
</pre></blockquote><pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Thu, 24 Sep 2009 06:20:20 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01219.html</guid>
		<author>vineet@xxxxxxx (Vineet Sinha)</author>
	</item>


	<item>
		<title>[gef-dev] GEF Incubator</title>
		<link>http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01218.html</link>
		<description>To host some of the exciting new development we saw over the summer (Dot4Zest and the updates to the Zest Layouts), I am putting together a proposal for an incubator project.&amp;#xA0; Currently this will host these two projects, and the team from [1] have also exp...</description>
		<content:encoded><![CDATA[To host some of the exciting new development we saw over the summer (Dot4Zest and the updates to the Zest Layouts), I am putting together a proposal for an incubator project.&#xA0; Currently this will host these two projects, and the team from [1] have also expressed interested in moving their code to Eclipse.org.<br>
<br>The proposal is available here:<br><a href="http://wiki.eclipse.org/Gef/Incubator/Proposal">http://wiki.eclipse.org/Gef/Incubator/Proposal</a><br><br>I&#39;ve listed Anthony and myself as project co-leads.&#xA0; Chris Aniszczyk has offered to be a mentor for the work. <br>
<br>Please take a second to review the proposal and let me know what you think. I would like to start the process fairly soon.<br><br>[1] <a href="http://code.google.com/p/emfmodelvisualizer/">http://code.google.com/p/emfmodelvisualizer/</a><br>
<br>cheers,<br>ian<br clear="all"><br>-- <br>R. Ian Bull | EclipseSource Victoria | +1 250 477 7484<br><a href="http://eclipsesource.com">http://eclipsesource.com</a> | <a href="http://twitter.com/eclipsesource">http://twitter.com/eclipsesource</a><br>

]]></content:encoded>
		<pubDate>Wed, 23 Sep 2009 20:06:55 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/gef-dev/msg01218.html</guid>
		<author>irbull@xxxxxxx (Ian Bull)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
