<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3563144813378269956</id><updated>2012-02-17T01:46:32.778Z</updated><category term='Improving Eclipse Search'/><category term='eclipse'/><category term='Integate and Connect your Clients'/><category term='soc'/><category term='Status'/><title type='text'>Eclipse Summer of Code</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ian Bull</name><uri>http://www.blogger.com/profile/02668098567506210626</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_RIwhvjncU4c/Su5ngebhzaI/AAAAAAAACqs/4Fl8yC94IiA/s1600-R/77e02a3c8c665155ad1acaac8c2742e0%3Fd%3D404'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6117670491019570353</id><published>2008-06-18T14:49:00.001Z</published><updated>2008-06-18T14:50:55.638Z</updated><title type='text'>A disruptive technology for code generation</title><content type='html'>OK, now I have to support my claim. Here we go.&lt;br /&gt;&lt;br /&gt;I've been using &lt;code&gt;StringBuffer.append()&lt;/code&gt; for code generation (like everyone else) while looking for safer alternatives (safer meaning, compile-time type-checked). I've  seen all the &lt;a href="http://www.eclipse.org/modeling/m2t/"&gt;model-to-text languages&lt;/a&gt;. But the rest of this post is not about them.&lt;br /&gt;&lt;br /&gt;One way to ensure syntactic validity when generating source code relies on instantiating EMF classes that stand for Java source elements. Verbosity can be reduced using fluent interfaces instead of directly invoking EMF factories, as reported in &lt;a href="http://bugs.eclipse.org/234003"&gt;http://bugs.eclipse.org/234003&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But problems remain. Another (perceived?) problem of AST-to-AST is the laborious coding of visitors, pattern matching and rewriting, multi-stage AST transformations, yes, &lt;span style="font-weight:bold;"&gt;model transformations&lt;/span&gt;. As usual, DSLs have been proposed to solve that, too. They are DSLs, i.e., another language to learn. You want to learn them? &lt;a href="http://www.eclipse.org/m2m/"&gt;This way please&lt;/a&gt;.  &lt;br /&gt;&lt;br /&gt;But LINQ is on the march, and it's being used for code generation. It's being used to  query the input (which can be even C# API elements, using LINQ to Reflection) and it's being used to piece together the resulting code: &lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://themechanicalbride.blogspot.com/2007/02/do-you-know-linq-fu.html"&gt;http://themechanicalbride.blogspot.com/2007/02/do-you-know-linq-fu.html&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.interact-sw.co.uk/iangblog/2007/04/03/linqcodegen"&gt;http://www.interact-sw.co.uk/iangblog/2007/04/03/linqcodegen&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb546150.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb546150.aspx&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;As the ultimate test of suitability for AST-to-AST, LINQ is being used to &lt;a href="http://www.codeplex.com/LinqOverCSharp"&gt;refactor (refactor!) C# ASTs&lt;/a&gt;, no less. Compare with the article &lt;a href="http://www.eclipse.org/articles/article.php?file=Article-Unleashing-the-Power-of-Refactoring/index.html"&gt;Unleashing the Power of Refactoring&lt;/a&gt; (and that article does a great job of explaining the JDT API for refactoring, so the comparison is &lt;span style="font-weight:bold;"&gt;*not*&lt;/span&gt; biased toward LINQ) &lt;br /&gt;&lt;br /&gt;LINQ is not a DSL, its declarative constructs are based on logical commonalities in data access, better factored than those of model transformation DSLs. To my (informed) taste at least. And you're always free to extend LINQ with operators of your own, in a type-safe way that is. Or perhaps what finally convinced me were all the optimizations performed out-of-the-box when evaluating LINQ: &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.codeplex.com/i4o"&gt;indexes on in-memory collections&lt;/a&gt;, or &lt;/li&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/magazine/cc163329.aspx"&gt;taking advantage for free from multicores&lt;/a&gt;, or &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.paulstovell.com/blog/introducing-synclinq "&gt;resultsets automatically refreshed on the wake of updates to their base data&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;It's a pity we have no Java-based library to execute LINQ queries, queries expressed as ASTs (remember &lt;a href="http://bugs.eclipse.org/234003"&gt;http://bugs.eclipse.org/234003&lt;/a&gt; ?) although  dedicated textual syntax would be nice, too. All right, all right, even if you'll  settle only on textual syntax there's an &lt;a href="http://java.dzone.com/articles/lightweight-sql-interfaces-jav"&gt;interim solution&lt;/a&gt; till Java supports lambda expressions.&lt;br /&gt;&lt;br /&gt;There's also talk about "LINQ in Scala". What I say is: it's not about syntax! (that's the easy part in fact) What makes a BIG difference are the optimizations supported by the engine when evaluating LINQ queries, input syntax notwithstanding. &lt;br /&gt;&lt;br /&gt;If the above strikes a chord with you, let's join forces! I want to get rid of  &lt;code&gt;StringBuffer.append()&lt;/code&gt;! One of the grassroots movements to implement LINQ in Java is &lt;a href="http://groups.google.de/group/jlinq"&gt;http://groups.google.de/group/jlinq&lt;/a&gt; and with some luck we won't need to wait for Java 7+ to enjoy the benefits of  language-integrated queries. &lt;br /&gt;&lt;br /&gt;P.S. If you need to convince your university department that the above qualifies for a master thesis, just flash the following papers and they'll accept immediately:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Phil Wadler and Simon Peyton Jones.&lt;br /&gt;   &lt;a href="http://research.microsoft.com/~simonpj/papers/list-comp/index.htm"&gt;Comprehensive comprehensions: comprehensions with "Order by" and "Group by"&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Darren Willis, David J. Pearce and James Noble.&lt;br /&gt;   &lt;a href="http://homepages.mcs.vuw.ac.nz/~djp/files/WPN07.pdf"&gt;Caching and Incrementalization for the Java Query Language&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;(you could also slip in one of my papers ;-)&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Garcia M., Möller R.&lt;br /&gt;   &lt;a href="http://www.sts.tu-harburg.de/~mi.garcia/pubs/2008/modellierung2008/incremTransact.pdf"&gt;Incremental evaluation of OCL invariants in the Essential MOF object model&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Of course there are other opinions on best practices around code generation. But I hope you'll be reminded of LINQ when tracking down some obscure bug due to &lt;code&gt;StringBuffer.append()&lt;/code&gt; in your favorite template language :-) &lt;br /&gt;&lt;br /&gt;Miguel&lt;br /&gt;&lt;a href="http://www.sts.tu-harburg.de/~mi.garcia"&gt;http://www.sts.tu-harburg.de/~mi.garcia&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6117670491019570353?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6117670491019570353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6117670491019570353' title='47 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6117670491019570353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6117670491019570353'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2008/06/disruptive-technology-for-code.html' title='A disruptive technology for code generation'/><author><name>Miguel Garcia</name><uri>http://www.blogger.com/profile/09949136685995342215</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>47</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-5583621225187691887</id><published>2007-08-20T15:20:00.000Z</published><updated>2007-08-20T15:24:36.184Z</updated><title type='text'>Semantic-aware component provisioning: "pencils off" status report</title><content type='html'>I want to recap my summer of code so far, before the final evaluation starts.  Here's what I accomplished so far. It was a lot of work, and a huge fun as well,  hope to catch your interest and get some feedback on future developments! :)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;GUI CONTRIBUTIONS&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/global.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/global.thumbnail.png" alt="global_view" height="106" width="171" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;new component submission view (drag and drop support from the repository explorer to add dependencies easily :) )&lt;/li&gt;&lt;br /&gt; &lt;li&gt;repository explorer view&lt;/li&gt;&lt;br /&gt; &lt;li&gt;preference page (set repository URL)&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;IMPLEMENTED FEATURES &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;submit a new component&lt;/li&gt;&lt;br /&gt; &lt;li&gt;usual search features (name, version, tags)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;search components providing a set of tasks&lt;/li&gt;&lt;br /&gt; &lt;li&gt;search components providing all the tasks of the selected ones&lt;/li&gt;&lt;br /&gt; &lt;li&gt;"smart" search of components functionally equivalent to the selected one (reasoning here)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;search components depending on the selected one&lt;/li&gt;&lt;br /&gt; &lt;li&gt;assert functional equivalence between components&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;HANDS-ON&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Let's take a test drive. I submit a new component, in this case (just as an example) the "last-gsoc-demo"  one. I fill in some data, and press submit. I can just drag-and-drop  dependencies from the repository explorer to the dependencies viewer.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/submit-last.png" title="submit"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/submit-last.thumbnail.png" alt="submit" /&gt;&lt;/a&gt;&lt;a href="void(0)" id="file-link-179" title="drag" class="file-link image"&gt;     &lt;img src="http://savino.wordpress.com/files/2007/08/drag-dep.thumbnail.png" alt="drag" /&gt;&lt;/a&gt;&lt;a href="void(0)" id="file-link-180" title="drop" class="file-link image"&gt;     &lt;img src="http://savino.wordpress.com/files/2007/08/dropped-dep.thumbnail.png" alt="drop" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I previously submitted some sample components. Now since all jdbc drivers implement the same specification, to some extent it is  correct to consider them "functionally equivalent", and I push this statement in  the knowledge base.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/find-eq.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/find-eq.png" alt="find-eq" height="65" width="171" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For sake of brevity I ask you to trust me without further shots, what I did is  just assert all jdbc drivers in the repository (besides the "dummy-jdbc" one)  "functionally equivalent" to the postgresql one, and then assert the "dummy- jdbc" only equivalent to "mysql-jdbc". I can ask now the repository  to give me components "functionally equivalent" to the selected one ("dummy-jdbc"), just  clicking on the context menu item:&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/assert-eq.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/assert-eq.thumbnail.png" alt="assert-eq" height="62" width="171" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's what I obtain:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/inference-rulez.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/inference-rulez.png" alt="inference-rulez" height="128" width="149" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You might notice that the selected item is still there, which makes sense since  everything is of course functionally equivalent to itself. ;) Furthermore, it is  worthwhile to note I only said the "dummy-jdbc" was equivalent to "mysql-jdbc",  full stop! The rest is just the result of the reasoning process.&lt;br /&gt;&lt;br /&gt;Now, I can also describe a component in terms of the "tasks" it carries out. Let's  suppose - just as an example - I have two components, one for "dom-parsing" and  the other for "sax-parsing".&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/tasks.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/tasks.png" alt="tasks" height="128" width="142" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Suppose now I was not on earth in the last years  and I want to know if there exists a single component doing the two things.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/search-union-tasks.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/search-union-tasks.thumbnail.png" alt="union-tasks" height="60" width="171" /&gt;&lt;/a&gt;  &lt;a href="http://savino.wordpress.com/files/2007/08/tasks-union.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/tasks-union.thumbnail.png" alt="task-union-found" height="128" width="130" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I can select both of them, click on the shown item and I'll get xerces-j actually  does both things. I might decide to use it if it fits my needs, since a single  dependency is better than two, in most cases.&lt;br /&gt;&lt;br /&gt;I also could want to know if other components rely on mine, or for instance how  many components actually use one, which usually means it has great reputation. Remember the "last-gsoc-demo" component? I put "mysql-jdbc" as a dependency there. I  just right click on the component, and find the components depending on the  selected one. :)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/search-clients.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/search-clients.png" alt="search-clients" height="65" width="171" /&gt;&lt;/a&gt;  &lt;a href="http://savino.wordpress.com/files/2007/08/found-client.png" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/found-client.thumbnail.png" alt="client" height="128" width="156" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;CLIENT-SERVER ARCHITECTURAL VIEW (after latest modifications)&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com/files/2007/08/complex.jpg" title="Direct link to file"&gt;&lt;img src="http://savino.wordpress.com/files/2007/08/complex.thumbnail.jpg" alt="architecture" height="98" width="171" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;KNOWN BUGS &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;troubles with SPARQL queries involving literals: searching against  id and tasks is ok, versions and tags are not (yet the http://repo.url/tag/{tag}  resource works fine... i had no time to investigate further befor pencils were off)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;dangling dependencies (i.e. after a delete operation) are not handled yet.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;COMING SOON (random order)&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;rest (not in the soa-ish meaning)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;enable license and license-style search criteria on the plugin&lt;/li&gt;&lt;br /&gt; &lt;li&gt;associate a new perspective with the provided views&lt;/li&gt;&lt;br /&gt; &lt;li&gt;improve repository explorer (i don't like that tree very much)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;bundled repository exploiting the eclipse embedded jetty server&lt;/li&gt;&lt;br /&gt; &lt;li&gt;import existing metadata from maven POM or OSGi manifest (URL drag and drop from web browser?)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;address repository data access layer performance issues&lt;/li&gt;&lt;br /&gt; &lt;li&gt;setup an update site somewhere on the globe&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;CHEERS&lt;/strong&gt;&lt;br /&gt;That's all for now, I really enjoyed the work, and I am confident this both- side fruitful collaboration will go on. A lot of things remain to be done on  this project, and I won't let it down after Google Summer of Code stops.&lt;br /&gt;&lt;br /&gt;I want to thank Philippe Ombredanne for mentoring me, and all the guys @  #eclipse-soc for supporting me and other students day after day. It was an invaluable experience to work with you guys.&lt;br /&gt;&lt;br /&gt;See you online,&lt;br /&gt;&lt;br /&gt;cheers,&lt;br /&gt;&lt;br /&gt;&lt;a href="http://savino.wordpress.com"&gt;Savino Sguera&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-5583621225187691887?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/5583621225187691887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=5583621225187691887' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5583621225187691887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5583621225187691887'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/08/semantic-aware-component-provisioning.html' title='Semantic-aware component provisioning: &quot;pencils off&quot; status report'/><author><name>Savino Sguera</name><uri>http://www.blogger.com/profile/10382156218197567403</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-2278782091355426496</id><published>2007-08-18T11:37:00.000Z</published><updated>2007-08-18T11:57:46.323Z</updated><title type='text'>Status: Improving Eclipse Search</title><content type='html'>My greatest fear ( getting sick ) for SoC has become true this summer and it forced me to sleep / lie down doing nothing for about a week. However, I have another small addition for Find/Replace facilities.&lt;br /&gt;&lt;br /&gt;This enhancement is Emacs style "Case Sensitive Replace". Here's the bug:&lt;br /&gt;&lt;br /&gt;Retain Caps When Replacing - https://bugs.eclipse.org/bugs/show_bug.cgi?id=28949&lt;br /&gt;&lt;br /&gt;It's waiting for code review.&lt;br /&gt;&lt;br /&gt;About "Highlight All": I've received feedback from Daniel and I believe I'll complete the patch with a final blow. I should say that as a user, I find these two enhancements quite handy.&lt;br /&gt;&lt;br /&gt;About lightweight Find/Replace: I've seen that the area below the editor is not sufficient for displaying the bar completely. It looks good under the editor when resized but the area below the editor is small in width in a vanilla Eclipse install.&lt;br /&gt;&lt;br /&gt;To overcome this, I think that it's best to form the bar as a Trim contribution (top/bottom). This way, we'll have a pretty good amount of width and the users that want to use the bar in some other place will also be satisfied.&lt;br /&gt;&lt;br /&gt;However we need to resolve bugs like https://bugs.eclipse.org/bugs/show_bug.cgi?id=195776 first. We need to have a bottom trim that can resize itself when contributions do not fit. I discussed the issue with Eric Moffatt and he said that we'll have TrimLayout improvements in M3 and M4. In this case, I'm thinking of creating this "lightweight Find/Replace" as a trim contribution and use the coolbar (which wraps and resizes correctly) for now. When we have Eric's improvements, we can carry it to the bottom trim as in Firefox.&lt;br /&gt;&lt;br /&gt;Feel free to comment (especially on this last paragraph). :)&lt;br /&gt;&lt;br /&gt;Have a nice weekend,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-2278782091355426496?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/2278782091355426496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=2278782091355426496' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2278782091355426496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2278782091355426496'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/08/status-improving-eclipse-search.html' title='Status: Improving Eclipse Search'/><author><name>Çağatay Çallı</name><uri>http://www.blogger.com/profile/02439335158633879975</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6684202534448181172</id><published>2007-08-18T01:10:00.000Z</published><updated>2008-12-11T20:33:24.484Z</updated><title type='text'>Parts, drugs and Fullscreen</title><content type='html'>Fullscreen is often an eyecatcher - isn't it? ;)&lt;br /&gt;But I didn't wrote that to annoy you but to tell that the SWT team (especially Kevin Barnes) just committed fullscreen support for SWT shells. I'm really happy that my patches - which were part of my Google Summer of Code project - found their new home in the Eclipse CVS.&lt;br /&gt;If you're one of the lucky ones working with SWT HEAD or any of the upcoming N-builds you can do something like this in order to turn your shells into real fullscreen windows:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Display display = new Display();&lt;br /&gt;final Shell shell = new Shell(display, SWT.SHELL_TRIM);&lt;br /&gt;&lt;br /&gt;Button bFullscreen = new Button(shell, SWT.PUSH);&lt;br /&gt;bFullscreen.setText("switch fullscreen");&lt;br /&gt;bFullscreen.addSelectionListener(new SelectionAdapter() {&lt;br /&gt;   public void widgetSelected(SelectionEvent e) {&lt;br /&gt;       shell.setFullScreen(!shell.getFullScreen());&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_9fkKEO4v04k/RsZMxJewcjI/AAAAAAAAAAU/26RejCVF4qg/s1600-h/DetachedWindow1.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_9fkKEO4v04k/RsZMxJewcjI/AAAAAAAAAAU/26RejCVF4qg/s320/DetachedWindow1.png" alt="" id="BLOGGER_PHOTO_ID_5099848035285889586" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;When running this little application and clicking the button, you'll get a fullscreen shell which covers the the whole space of your active screen.&lt;br /&gt;As this a really nice-to-have feature of Eclipse, I'm currently working on a new command/handler/keybinding for the workbench to allow the user to switch the IDE into a fullscreen application.&lt;br /&gt;&lt;br /&gt;Besides this there is another major task planned for my SoC project - Detached Windows. Sometimes hated, sometimes loved. I've to say that I really love them...but only my patched version which can hold serveral ViewStacks (folders of views) in one window. It could look like the on on the right.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As I really follow the term "eat your own dogfood", I'm working on my SoC project with two screens:&lt;br /&gt;Screen 1:  Eclipse IDE in fullscreen mode which covers everything else on that screen&lt;br /&gt;Screen 2: a detached Window which allows me to arrange my views and folder just like the workbench window itself&lt;br /&gt;Interested? Here is a picture of my current desktop (caution: ~400kb, 3360px*1050px):&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://wiki.eclipse.org/images/d/dc/SoC07_mmi_deskop.png"&gt;&lt;img style="cursor: pointer;" src="http://2.bp.blogspot.com/_9fkKEO4v04k/RsZNfZewclI/AAAAAAAAAAk/CMf68gmv8YA/s320/soc.png" alt="" id="BLOGGER_PHOTO_ID_5099848829854839378" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6684202534448181172?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6684202534448181172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6684202534448181172' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6684202534448181172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6684202534448181172'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/08/parts-drugs-and-fullscreen.html' title='Parts, drugs and Fullscreen'/><author><name>Benjamin Muskalla</name><uri>http://www.blogger.com/profile/08696087506709185876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_9fkKEO4v04k/RsZMxJewcjI/AAAAAAAAAAU/26RejCVF4qg/s72-c/DetachedWindow1.png' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-2464764814852806622</id><published>2007-08-08T19:27:00.000Z</published><updated>2007-08-08T20:04:18.025Z</updated><title type='text'>Groovy Plug-ins: Bundle Activation and Extension Point Processing</title><content type='html'>I faced an issue with the bundle activation last week. Namely, a bundle activator will not be started if the given bundle doesn't contain any classes. I.e. a bundle activator is provided by my plug-in and the contributor should use this class to enable scripting for the activation routines.&lt;br /&gt;&lt;br /&gt;I reported this issue to Eclipse Equinox newsgroup, and the feedback was quite positive in sense of the solutions. Tom Watson purposed some options:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Have ScriptExtensionProxy activate the contributing bundle using a transient flag when it creates a proxy (i.e. call Bundle.start(Bundle.START_TRANSIENT)). This would take extra work for ScriptExtensionProxy because it should probably read the Eclipse-LazyStart and/or the new Bundle-ActivationPolicy from OSGi R4.1 specification to verify the bundle is actually lazy activated.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Make ScriptExtensionProxy abstract and force contributing groovy bundles to extend it with a real class which exists in the contributing bundle.  Then when the extension is constructed it will automatically activate the bundle if it has a lazy activation policy.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;The 1st option worked, but it smells like a hack. I think that the contributor should never call the Bundle#start() on its own... FWIW, this method could be available only to the framework and not to the user. &lt;br /&gt;I've sticked to the 2nd option, but instead of making the ScriptExtensionProxy abstract I will leave it as it is, so that user may just declare it in plugin.xml if there's no need for activation.&lt;br /&gt;&lt;a href="http://eclipse-incub.svn.sourceforge.net/viewvc/eclipse-incub/scripting_plugins/org.eclipse.soc.scripting.plugin/src/org/eclipse/soc/scripting/core/ScriptBundleActivator.java?view=markup"&gt;ScriptBundleActivator&lt;/a&gt; is just a facade for calling the activation script, which I presume to be called &lt;span style="font-style:italic;"&gt;&lt;a href="http://eclipse-incub.svn.sourceforge.net/viewvc/eclipse-incub/scripting_plugins/org.eclipse.soc.scripting.contributor/activator.groovy?view=markup"&gt;activator.groovy&lt;/a&gt;&lt;/span&gt; for now. The start() method call just delegates the work to the start() method of the expando object in the script. &lt;br /&gt;&lt;br /&gt;The activator would be useful if the contributing plug-in will have the need for extension point processing, as the &lt;span style="font-weight:bold;"&gt;INVITATION RULE&lt;/span&gt; says: &lt;span style="font-style:italic;"&gt;whenever possible, let others contribute to your contributions&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Here's the draft Groovy code for extension point processing in the activator:&lt;pre&gt;&lt;br /&gt;import org.eclipse.core.runtime.Platform&lt;br /&gt;&lt;br /&gt;def expando = new groovy.util.Expando()&lt;br /&gt;&lt;br /&gt;expando.start = { bundleContext -&gt;&lt;br /&gt; def registry = Platform.getPluginRegistry()&lt;br /&gt; def extensionPoint =  &lt;br /&gt; registry.getExtensionPoint(&lt;br /&gt;   "org.eclipse.soc.scripting.contributor.listeners")&lt;br /&gt;   &lt;br /&gt; def extensions = extensionPoint.getExtensions() &lt;br /&gt; extensions.each( { extension -&gt;  &lt;br /&gt;   extension.getConfigurationElements().each({&lt;br /&gt;     element -&gt; &lt;br /&gt;     def object = element.createExecutableExtension("class")&lt;br /&gt;     //do something with the object&lt;br /&gt;   }) &lt;br /&gt; } )   &lt;br /&gt;}&lt;br /&gt;expando   // this is the script returning object&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;While shaping the code above I realized what is the real power of such scripting: &lt;span style="font-weight:bold;"&gt;NO CASTING&lt;/span&gt;! Truly, I didn't think about it before.&lt;br /&gt;Now I have the following: &lt;ol&gt;&lt;br /&gt;&lt;li&gt;A proxy for declaring the extensions: read &lt;a href="http://arhipov.blogspot.com/2007/07/gsoc-2007-equator-reached.html"&gt;here&lt;/a&gt; and &lt;a href="http://dev.eclipse.org/blogs/wayne/2007/07/26/making-eclipse-plug-ins-using-jruby-or-groovy/"&gt;here&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;A bundle activator facade.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;This is the basic functionality which may be used for groovy plug-in creation (with some limitations). Currently I'm preparing a demo which could demonstrate how these base classes could be used.&lt;br /&gt;Next, I would like to provide some usability enhancements to the core plug-in: it would be cool to modify the script even if it is already packed and deployed.&lt;br /&gt;P.S. I have also blogged about the progress in my own &lt;a href="http://arhipov.blogspot.com/search/label/soc"&gt;blog&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-2464764814852806622?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/2464764814852806622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=2464764814852806622' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2464764814852806622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2464764814852806622'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/08/groovy-plug-ins-bundle-activation-and.html' title='Groovy Plug-ins: Bundle Activation and Extension Point Processing'/><author><name>Anton Arhipov</name><uri>http://www.blogger.com/profile/11951065633319406772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='31' src='http://1.bp.blogspot.com/_flYJTi1O_TE/TRrmBRTXBoI/AAAAAAAAMy4/KHqYrZgIvsE/S220/avatar.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-5032317046553031761</id><published>2007-07-23T09:53:00.001Z</published><updated>2007-07-23T09:58:05.869Z</updated><title type='text'>Status, IDE Generator (Miguel Garcia)</title><content type='html'>I've been refactoring, adding functionality, yet I had the uneasy feeling that something was missing ...&lt;br /&gt;&lt;br /&gt;Big revamp of Chapter 1 ("Frameworks for text editors: JFace Text and Gymnast Runtime") of the project report. With that, a user of the IDE generator is also in a position to &lt;span style="font-weight: bold;"&gt;understand&lt;/span&gt; (and further customize) the generated IDE. Features are classified, code snippets and references to further literature given.&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The features per category are:&lt;br /&gt;&lt;br /&gt;a) The Gymnast Runtime extension to the JFace Text framework&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;background parsing and notification of changes to the CST of the document&lt;/li&gt;&lt;li&gt;context outline (with nodes implementing navigation back to the text region, and property source)&lt;/li&gt;&lt;li&gt;custom problem markers&lt;/li&gt;&lt;li&gt;parse-tree view&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;b) Customizations requiring CST or AST&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;hovers over text fragments&lt;/li&gt;&lt;li&gt;hovers over annotations (annotations on the vertical ruler)&lt;/li&gt;&lt;li&gt;hyperlinks&lt;/li&gt;&lt;li&gt;mark occurrences&lt;/li&gt;&lt;li&gt;select in outline&lt;/li&gt;&lt;li&gt;show in&lt;/li&gt;&lt;li&gt;context menu on the editor surface, for example Go to Declaration&lt;/li&gt;&lt;li&gt;views, for example EMF Type Hierarchy&lt;/li&gt;&lt;li&gt;content formatting&lt;/li&gt;&lt;li&gt;content assist&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;c) Customizations directly working on the document text&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;document partitioning&lt;/li&gt;&lt;li&gt;show range indicator&lt;/li&gt;&lt;li&gt;bracket matching (brace, parenthesis, etc.)&lt;/li&gt;&lt;li&gt;AutoEdits (for example, SmartBrace: after typing { in the JDT editor, an indented newline and a closing } are added below it). Another example is AutoIndent.&lt;/li&gt;&lt;li&gt;Double-click strategy (in JDT, double-clicking an opening brace selects all the text up to the matching closing brace)&lt;/li&gt;&lt;li&gt;Automatic Indentation&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;d) Document-independent customizations&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;templates, including associated Preferences page&lt;/li&gt;&lt;li&gt;actions on the toolbar and menu bar, in particular retargetable actions (i.e., those actions whose UI activators are shared between different editors, such as e.g. Content Assist)&lt;/li&gt;&lt;li&gt;new file wizard, so that the document does not start empty but in syntactically valid state (thus avoiding spurious parse errors the moment background parsing kicks in)&lt;/li&gt;&lt;li&gt;Preferences&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;----------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;It's incredible the amount of detail hiding in each feature ... an Eclipse-based text editor can really be a machine with lots of moving parts ...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sts.tu-harburg.de/%7Emi.garcia/SoC2007/draftreport.pdf"&gt;http://www.sts.tu-harburg.de/~mi.garcia/SoC2007/draftreport.pdf&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-5032317046553031761?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/5032317046553031761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=5032317046553031761' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5032317046553031761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5032317046553031761'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-ide-generator-miguel-garcia.html' title='Status, IDE Generator (Miguel Garcia)'/><author><name>Miguel Garcia</name><uri>http://www.blogger.com/profile/09949136685995342215</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-3487590528923330493</id><published>2007-07-22T14:29:00.001Z</published><updated>2008-12-11T20:33:24.695Z</updated><title type='text'>Status: Improving Eclipse Search</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_myzBouz3q2g/RqOMp2A6nGI/AAAAAAAAAAc/c1UYo4ckdcM/s1600-h/highlightall.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_myzBouz3q2g/RqOMp2A6nGI/AAAAAAAAAAc/c1UYo4ckdcM/s320/highlightall.jpg" alt="" id="BLOGGER_PHOTO_ID_5090066654360673378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Last week, I decided to implement "Highlight All" feature mentioned in &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=29692"&gt;Bug 29692&lt;/a&gt;, since it's a common enhancement request. I believe I've produced a patch that solves it. However I'm planning to implement "soft matches", that is if the user requests it, highlighting case-insensitive matches with a different color, case-sensitive whole word matches with a stronger color etc. like Ctrl+H Search does.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;About the "lightweight find" ( &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=99294"&gt;Bug 99294&lt;/a&gt; ), you should read &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=99294#c24"&gt;Comment #24&lt;/a&gt; about my current thoughts. The only problem with having "Find" and "Replace" fields on the bar simultaneously is visibility of all labels,buttons,fields on the bar at the same time on a vanilla install. Iconizing "Find", "Replace", "Replace/Find", "Replace All" buttons would save some space (these button labels can be written as tooltips). About "Options" group presentation problem, I thought of a bar-switch behaviour or a second bar appearing on the Find/Replace bar.&lt;br /&gt;&lt;br /&gt;Another solution would be adding a second bar to appear for Replace and Options (shared use). The scenario would be like this:&lt;br /&gt;&lt;br /&gt;1. Press Ctrl+F. You'll see a bar under the editor.&lt;br /&gt;Only the Find bar:&lt;br /&gt;&lt;pre id="comment_text_24"&gt;[x] Find: [_____] [Next] [Previous] [Options...] [Replace...]&lt;/pre&gt;2. Press Ctrl+F again. Another bar will appear under the Find bar. This should be Replace bar. Find bar will "reform" itself.&lt;br /&gt;&lt;pre id="comment_text_24"&gt;[x] Find: [_____] [Options...]&lt;/pre&gt; &lt;pre id="comment_text_24"&gt;[x] Replace with: [_____] [Next] [Previous] [Replace] [Replace All]&lt;br /&gt;&lt;span style="font-family:Georgia,serif;"&gt;&lt;/span&gt;&lt;/pre&gt;3. Pressing &lt;undecided&gt; &lt;undecided&gt;button will switch the second bar (Replace bar) with an "Options" bar.&lt;br /&gt;&lt;br /&gt;It's still very open to discussion so I'm planning to implement it after we settle on an idea.&lt;br /&gt;&lt;br /&gt;I hope to tackle other usability issues next week together with lightweight Find/Replace design.&lt;br /&gt;&lt;br /&gt;That's all. Thank you for your feedback.&lt;br /&gt;&lt;/undecided&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-3487590528923330493?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/3487590528923330493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=3487590528923330493' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3487590528923330493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3487590528923330493'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-improving-eclipse-search_22.html' title='Status: Improving Eclipse Search'/><author><name>Çağatay Çallı</name><uri>http://www.blogger.com/profile/02439335158633879975</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_myzBouz3q2g/RqOMp2A6nGI/AAAAAAAAAAc/c1UYo4ckdcM/s72-c/highlightall.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-3854673422010591683</id><published>2007-07-17T21:08:00.000Z</published><updated>2007-07-18T08:17:01.073Z</updated><title type='text'>Status: Multi monitors against the rest of the world</title><content type='html'>Just to recap in the case you forgot about my SoC project: I'm hard at work improving the user experience on &lt;a href="http://wiki.eclipse.org/index.php/Improve_multi-monitor_support"&gt;multi-monitor systems in Eclipse&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;After struggling with building SWT on Windows Vista again -  which worked fine some days ago - I attached all my fullscreen related stuff to the appreciated &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=37031"&gt;bug&lt;/a&gt; report in the hope that some of the SWT guys are willing to review the patches and getting them into CVS in the next days/weeks.&lt;br /&gt;When the fullscreen support is in place, I can care more about the &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=171398"&gt;Workbench implementation&lt;/a&gt;  of handling fullscreen stuff. There is already a working solution available but I think we can improve the one ore other little feature to make our users happy :-) I'll attach the code to the bug report immediately after the SWT guys committed the fullscreen support. Then everyone can participate to discuss more feature wishes. If you already have some nice ideas, let me know - best place would be a comment on the bug report.&lt;br /&gt;&lt;br /&gt;After talking to Eric  Moffat - the guy behind the black magic called presentation - we came up with a possibly good solution regarding &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=151510"&gt;improved detached windows&lt;/a&gt; (sashes, min/max behavior, etc) by replacing the current Detached Window implementation with a lightweight Workbench Window. Let us see how far we can come with this approach.  I'll report about my progress in this area after working some days on this to see if it's that right way to go.&lt;span class="on down" style="display: block;" id="formatbar_CreateLink" title="" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-3854673422010591683?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/3854673422010591683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=3854673422010591683' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3854673422010591683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3854673422010591683'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-multi-monitors-against-rest-of.html' title='Status: Multi monitors against the rest of the world'/><author><name>Benjamin Muskalla</name><uri>http://www.blogger.com/profile/08696087506709185876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-5005454367979880757</id><published>2007-07-15T14:38:00.000Z</published><updated>2007-07-15T14:47:53.794Z</updated><title type='text'>Status: Semantic-aware component provisioning</title><content type='html'>&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;Recap: My project is about semantic-aware software component provisioning. Student: &lt;a href="http://savino.wordpress.com"&gt;Savino Sguera&lt;/a&gt; - Mentor: Philippe Ombredanne.&lt;ul&gt;&lt;li&gt;&lt;a href="http://eclipse-soc.blogspot.com/2007/07/semantic-aware-component-provisioning.html" target="_blank"&gt;previous status report&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://savino.wordpress.com/gsoc" target="_blank"&gt;all about my GSoC project @ Eclipse&lt;/a&gt; (new window, personal blog)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;Most significant updates for this week:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Model refactoring&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Ontology design improvement&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Jastor classes update&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Implemented marshalling subsystem (&lt;a href="http://xstream.codehaus.org/" target="_blank"&gt;XStream&lt;/a&gt;)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added persistency to &lt;a href="http://jena.sourceforge.net/" target="_blank"&gt;Jena&lt;/a&gt; model (&lt;a href="http://db.apache.org/derby/" target="_blank"&gt;Apache Derby&lt;/a&gt; embedded DB)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Tested full stack data flow:&lt;br /&gt;&lt;a href="http://www.restlet.org/" target="_blank"&gt;Restlet&lt;/a&gt;'s DomRepresentation &amp;lt;-&amp;gt; Document &amp;lt;-&amp;gt; XML &amp;lt;-&amp;gt; Javabean &amp;lt;-&amp;gt; &lt;a href="http://jastor.sourceforge.net/" target="_blank"&gt;Jastor&lt;/a&gt; class &amp;lt;-&amp;gt; Jena statements &amp;lt;-&amp;gt; RDBMS&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Discussed dependencies licensing issues (no problems ahead)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Started client's architectural design (and assessed code reuse scenarios)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added javadoc&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Committed new code to eclipse-incub&lt;/li&gt;&lt;/ul&gt;Very next steps:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Discuss some modeling issues with Philippe&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Implement REST layer&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Get a live demo of the repository up and running&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Start client design&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Add a "dependencies" page to project's wiki&lt;/li&gt;&lt;/ul&gt;That's all for now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-5005454367979880757?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/5005454367979880757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=5005454367979880757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5005454367979880757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5005454367979880757'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/recap-my-project-is-about-semantic.html' title='Status: Semantic-aware component provisioning'/><author><name>Savino Sguera</name><uri>http://www.blogger.com/profile/10382156218197567403</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-2848463064317414365</id><published>2007-07-12T17:40:00.000Z</published><updated>2008-12-11T20:33:24.864Z</updated><title type='text'>Status: Improving Eclipse Search</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_myzBouz3q2g/RpZuSEeCfUI/AAAAAAAAAAU/D3nuL_EG2dE/s1600-h/forwardbackward.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_myzBouz3q2g/RpZuSEeCfUI/AAAAAAAAAAU/D3nuL_EG2dE/s320/forwardbackward.jpg" alt="" id="BLOGGER_PHOTO_ID_5086374085877988674" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;There is significant progress in the project since last week. I reflected my initial ideas and conceptual work in &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=195455"&gt;Bug 195455&lt;/a&gt; . The support for lightweight Find/Replace enhancement was great. Thank you for all the great ideas and responses. Discussion about this feature is continuing in &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=99294"&gt;Bug 99294&lt;/a&gt; now.&lt;br /&gt;&lt;br /&gt;Currently, I'm implementing (3a) from &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=195455#c7"&gt;Kevin McGuire's comment&lt;/a&gt; which is:&lt;br /&gt;&lt;pre id="comment_text_7"&gt;&lt;blockquote&gt;3) Have it take up space in the layout somewhere,&lt;br /&gt;3a) current option is within the text editor itself ala Firefox&lt;/blockquote&gt;&lt;/pre&gt;&lt;blockquote&gt;&lt;/blockquote&gt;As of today, remaining work is showing Options group and Scope group in the Find/Replace dialog in a good style, adding shortcuts, making sure of good performance.&lt;br /&gt;&lt;br /&gt;I've converted Direction group in the dialog having "Forward" and "Backward" radio buttons in it, to a compact button that switches the search direction. This saves a significant amount of space on the Find/Replace bar and will be far more functional than having 2 radio buttons for this task IMHO.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;An issue that may arise when I'm implementing (3a) approach is supporting search in ConsoleView etc. (anything other than the editor) in a good way. I think of carrying the same functionality ( offering Find/Replace in a bar ) in Toolbar of the ConsoleView. I expect to face a few issues about searching outside the editor.&lt;br /&gt;&lt;br /&gt;This is it for now.&lt;br /&gt;You can keep track of my progress in lightweight Find/Replace from https://bugs.eclipse.org/bugs/show_bug.cgi?id=99294 .&lt;br /&gt;&lt;br /&gt;Thank you for all the ideas,interest and support.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-2848463064317414365?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/2848463064317414365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=2848463064317414365' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2848463064317414365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2848463064317414365'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-improving-eclipse-search_12.html' title='Status: Improving Eclipse Search'/><author><name>Çağatay Çallı</name><uri>http://www.blogger.com/profile/02439335158633879975</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_myzBouz3q2g/RpZuSEeCfUI/AAAAAAAAAAU/D3nuL_EG2dE/s72-c/forwardbackward.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-1464826762288786148</id><published>2007-07-05T14:04:00.000Z</published><updated>2007-07-05T14:10:49.459Z</updated><title type='text'>Semantic-aware component provisioning: status report</title><content type='html'>&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-weight: bold;"&gt;Recap&lt;/span&gt;: My project is about semantic-aware software component provisioning. In my previous status report I dealt with the &lt;a href="http://wiki.eclipse.org/Software_provisioning_ontology"&gt;SWPO ontology&lt;/a&gt; design and a first architectural sketch of the repository, other than taking some significant decisions &lt;a href="http://wiki.eclipse.org/REST_interface_to_semantic_repository"&gt;REST URI and resources&lt;/a&gt; to be exposed by the repository REST interface.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://wiki.eclipse.org/index.php/Semantic-aware_software_component_provisioning:_actually_reusing_software"&gt;Project wiki&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://eclipse-soc.blogspot.com/2007/06/semantic-aware-software-component.html"&gt;Previous update&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;&lt;br /&gt;I am glad to report about some significant progress in my project this week.&lt;br /&gt;&lt;br /&gt;- Slightly refined the &lt;a href="http://wiki.eclipse.org/Software_provisioning_ontology"&gt;SWPO ontology&lt;/a&gt; (will upload fresh snapshot on the wiki asap).&lt;br /&gt;&lt;br /&gt;- Got a good grasp on (and generated typesafe OWL2Java code mappings through) the IBM Jastor framework &lt;&lt;a href="http://jastor.sourceforge.net/"&gt;http://jastor.sourceforge.net/&lt;/a&gt;&gt;, part of the IBM Semantic Layered Research Platform &lt;&lt;a href="http://ibm-slrp.sourceforge.net/"&gt;http://ibm-slrp.sourceforge.net/&lt;/a&gt;&gt;. Generated code readability is awful, and I had to overcome some defects in handling inheritance and RDFList's, but at least it relieved the burden of writing the data access layer and Jena interaction from scratch. I will get the JUnit bar stuck on green in the very next days.&lt;br /&gt;&lt;br /&gt;- Refined the repository architecture: three-tier, handling requests and resources' representations in a "pipes and filters" fashion. Assessed the chance of providing both a parsing and a marshalling subsystem in the application layer (will update architectural views on the project wiki asap). What I wanted to achieve was (and still is) to decouple the application layer both from the RESTlet framework and the specific implementation of the Data Access Layer, as much as possible.&lt;br /&gt;&lt;br /&gt;- Created a module and committed code to eclipse-incub (I am actually updating the module quite frequently).&lt;br /&gt;&lt;br /&gt;After a quite late start, finally things are smooth and running fine.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;a href="http://savino.wordpress.com"&gt;Savino Sguera&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-1464826762288786148?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/1464826762288786148/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=1464826762288786148' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/1464826762288786148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/1464826762288786148'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/semantic-aware-component-provisioning.html' title='Semantic-aware component provisioning: status report'/><author><name>Savino Sguera</name><uri>http://www.blogger.com/profile/10382156218197567403</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-2370691887485555620</id><published>2007-07-05T13:49:00.000Z</published><updated>2007-07-05T13:57:21.419Z</updated><title type='text'>Status: scripting plug-ins</title><content type='html'>&lt;span style="font-style:italic;"&gt;Official name&lt;/span&gt;: &lt;a href="http://wiki.eclipse.org/Add_the_ability_to_write_plugins_using_jruby_or_groovy."&gt;Add the ability to write plugins using jruby or groovy&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;First of all a slight change in the priorities. The &lt;span style="font-weight:bold;"&gt;top priority&lt;/span&gt; now is to &lt;span style="font-weight:bold;"&gt;enable the support of the bundles that are implemented using scripting language&lt;/span&gt;, i.e. Groovy and/or JRuby.&lt;br /&gt;&lt;br /&gt;Others nice to have features will be:&lt;br /&gt;1) Enable custom processing for plugin.xml, to be able test the new plug-ins without starting the 2nd eclipse instance.&lt;br /&gt;2) The console, for providing the interactive (re)loading of the plug-in. &lt;br /&gt;&lt;br /&gt;I have described to issues in more details in &lt;a href="http://arhipov.blogspot.com/2007/07/summer-of-code-goes-on.html"&gt;my blog entry&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-2370691887485555620?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/2370691887485555620/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=2370691887485555620' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2370691887485555620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/2370691887485555620'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-scripting-plug-ins.html' title='Status: scripting plug-ins'/><author><name>Anton Arhipov</name><uri>http://www.blogger.com/profile/11951065633319406772</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='31' src='http://1.bp.blogspot.com/_flYJTi1O_TE/TRrmBRTXBoI/AAAAAAAAMy4/KHqYrZgIvsE/S220/avatar.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6760964361895942403</id><published>2007-07-05T12:23:00.000Z</published><updated>2008-12-11T20:33:25.400Z</updated><title type='text'>Status: Improving Eclipse Search</title><content type='html'>Official name:  &lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;a href="http://code.google.com/soc/eclipse/appinfo.html?csaid=27DD162F00A217AD"&gt;&lt;span style="font-style: italic;" class="new"&gt;Eclipse search plugin: providing a better, faster, more relevant Eclipse search&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;July 5th&lt;br /&gt;&lt;br /&gt;Since my last blog entry about the project, there've been changes in the main goals of the project after discussion with my mentor Francois Granade and Daniel Megert.&lt;br /&gt;&lt;br /&gt;Here are the current goals of this project:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;General Goal: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Unifying "Search" facilities so that there won't be 3 different search (and replace) functionalities in Eclipse&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Specific Goals:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Unifying Ctrl+F (Find/Replace dialog) and Ctrl+J (Incremental Search) by mostly behaving like Ctrl+J. Providing better UI utilization by not showing modal dialogs if the user doesn't request wider options. Summary of the idea: Firefox-style "Find" with enhancements. = a lightweight Find/Replace. Our main goal here is providing &lt;span style="font-style: italic;"&gt;all&lt;/span&gt; functionality available in Ctrl+F with this lightweight Find/Replace. Here's the related Bugzilla entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=195455&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Providing "bridges" between Ctrl+F and Ctrl+H. This means carrying query information and search parameters back and forth between them when it's possible. --- To explain it better, it doesn't mean "sharing" input/settings, it is enabling the user to transfer "Find/Replace" input/settings to "Search" easily and extend his/her current search scope &amp; query.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Investigate better presentation of the search results in Ctrl+H ( adding an alternative view like Problems view - results in a table - might be a good idea to show result lines and numbers, paths etc. )&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Current Progress&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;I'm working on a lightweight Find/Replace ( first Specific Goal above ) right now. I've converted IncrementalFind's Label widget on the status bar to a Text widget and using IFocusService I've managed to give cut/copy/paste input to this Text widget when focused.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_myzBouz3q2g/RozqAi43KmI/AAAAAAAAAAM/93EmgUbO-h0/s1600-h/lightweightfind.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_myzBouz3q2g/RozqAi43KmI/AAAAAAAAAAM/93EmgUbO-h0/s320/lightweightfind.jpg" alt="" id="BLOGGER_PHOTO_ID_5083695374480648802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For this lightweight Find/Replace, I've tried to create a prototype figure and attached it the Bugzilla entry https://bugs.eclipse.org/bugs/show_bug.cgi?id=195455. What I have in mind was basically a "Find" field appearing on the statusbar first Ctrl+F and when the user presses Ctrl+F again, "advanced feature" set appears as a menu above the status bar showing necessary checkboxes,parameters etc. but this prototype figure and behaviour is open to change.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After adjusting the behaviour of the code a bit , I'm going to work on the floating menu that will show up when the user requests "advanced Find/Replace features" next week.&lt;br /&gt;&lt;br /&gt;I've created a feature and an update site for the project but even though the feature exports fine, when the feature is installed on a new Eclipse installation, Eclipse doesn't start. I've also tried to create a Plugin Fragment project first (since I've made all my modifications to org.eclipse.ui.workbench.texteditor), and then create a Feature &amp; Update Site for it. This time, everything worked fine except that my changes to org.eclipse.ui.workbench.texteditor didn't show up in the new Eclipse installation.&lt;br /&gt;&lt;br /&gt;I've committed my work as a patch to "soc-search" module in "eclipse-incub". It's very primitive right now but you can checkout anytime and see what I'm doing. First take a look at readme.txt to see how to build the project.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Host: &lt;/span&gt;eclipse-incub.cvs.sourceforge.net&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Repository path:&lt;/span&gt; /cvsroot/eclipse-incub&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Module name:&lt;/span&gt; soc-search&lt;br /&gt;&lt;br /&gt;Feel free to comment here or on Bugzilla. Thank you for your time and feedback.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6760964361895942403?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6760964361895942403/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6760964361895942403' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6760964361895942403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6760964361895942403'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/status-improving-eclipse-search.html' title='Status: Improving Eclipse Search'/><author><name>Çağatay Çallı</name><uri>http://www.blogger.com/profile/02439335158633879975</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_myzBouz3q2g/RozqAi43KmI/AAAAAAAAAAM/93EmgUbO-h0/s72-c/lightweightfind.jpg' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-3236314807190849216</id><published>2007-07-05T06:02:00.000Z</published><updated>2008-12-11T20:33:25.735Z</updated><title type='text'>Plug-in Dependency Visualization</title><content type='html'>A lot has happened in my Summer of Code project over the past few weeks.  To recap, my project has two main objectives; 1) to bring plug-in (bundle) &lt;a href="http://www.eclipse.org/pde/incubator/dependency-visualization/index.php"&gt;dependency visualizatio&lt;/a&gt;n to the PDE and 2) to solidify &lt;a href="http://eclipse.org/mylyn/zest.php"&gt;Zest&lt;/a&gt;, an information visualization toolkit for Eclipse.&lt;br /&gt;&lt;br /&gt;Zest came out of some work I was doing for Mylyn, but we are now in the process of &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=164387"&gt;moving &lt;/a&gt;it to GEF / Draw2D.  However, until this happens, we are still in the Mylyn repository and went through the move with them.  After a bit of work, we are up and running again.&lt;br /&gt;&lt;br /&gt;Zest has also been refactored to offer two separate APIs for Directed Graph Rendering.  One API resembles SWT and the other one, JFace.  In fact, I have created a &lt;a href="http://www.eclipse.org/mylyn/sandbox/zest/zest_snippets.php"&gt;number of snippets&lt;/a&gt; to show how these APIs can be used to create a view with a directed graph.  During the refactoring I also removed all dependencies on the Runtime (we are now runtime free). This means that you can use Zest in your standalone SWT applications.  Of course I still use the PDE tooling, so the JARs can also be used as an OSGi Bundle.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RIwhvjncU4c/RoySh7dnt8I/AAAAAAAAABY/Y_ZWMgC6I74/s1600-h/container.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_RIwhvjncU4c/RoySh7dnt8I/AAAAAAAAABY/Y_ZWMgC6I74/s320/container.jpg" alt="" id="BLOGGER_PHOTO_ID_5083599190989715394" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Finally, I have added container support to Zest. I plan on using this to group bundles in the dependency view.  This should help with the scalability problems you get when you try and render a large graph.  Nodes can now be added to containers and the containers can be expanded / collapsed.   I am pretty sure I completed this without breaking any existing API, but if you use Zest and I broke something, please let me know.  This feature was fun to implement, however, there are still some open issues.  In particular, how to deal with connections that go from nodes in one container to nodes in another, and nested containers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-3236314807190849216?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/3236314807190849216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=3236314807190849216' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3236314807190849216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3236314807190849216'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/07/plug-in-dependency-visualization.html' title='Plug-in Dependency Visualization'/><author><name>Ian Bull</name><uri>http://www.blogger.com/profile/02668098567506210626</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_RIwhvjncU4c/Su5ngebhzaI/AAAAAAAACqs/4Fl8yC94IiA/s1600-R/77e02a3c8c665155ad1acaac8c2742e0%3Fd%3D404'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RIwhvjncU4c/RoySh7dnt8I/AAAAAAAAABY/Y_ZWMgC6I74/s72-c/container.jpg' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6090758948862683106</id><published>2007-06-03T05:41:00.000Z</published><updated>2007-06-04T08:20:48.929Z</updated><title type='text'>Semantic-aware software component provisioning: status report</title><content type='html'>&lt;blockquote&gt;&lt;span style="font-weight: bold;"&gt;Recap&lt;/span&gt;: This project aims to ease component provisioning by the use of Semantic Web  technologies, providing a model - an OWL ontology - of the software component domain, supporting inference and reasoning about components' metadata and allowing developers to import metadata from a number of existing provisioning systems.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://wiki.eclipse.org/index.php/Semantic-aware_software_component_provisioning:_actually_reusing_software"&gt;project's wiki&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://eclipse-soc.blogspot.com/2007/05/status-semantic-aware-software.html"&gt;previous status report&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;&lt;br /&gt;During last week I had a couple of interesting chats with my mentor, Philippe  Ombredanne, and with Pascal Rapicault as well, discussing some issues about the  repository design and positioning in relation to existing component provisioning  systems.&lt;br /&gt;&lt;br /&gt;I'll briefly report what emerged from our conversations:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;model and metadata should be general, higher-level respect to the particular  provisioning system. Each of existing systems focus on a particular aspect of  component modeling, yet the metadata share much the same semantics so, as  already hypotized in the previous status report, what we should aim to is  providing a general metadata set, to map in turn the particular system metadata  set. Some license-related issues about existing ontologies to reuse are being addressed during these days.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;an interesting idea (borrowed from the &lt;a href="http://www.eclipse.org/equinox/incubator/provisioning/"&gt;Equinox provisioning effort&lt;/a&gt;, thanks Pascal) which relates much to the previous point is to enable the repository to  plug-in modules to integrate other provisioning systems' metadata repository,  relieving the burden of writing over and over the same set of metadata. I'd  start with OSGi and Maven repo modules.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;very interesting stuff @ &lt;a href="http://www.easyeclipse.org/site/home/"&gt;easyeclipse&lt;/a&gt; about license-related properties of a sw  component could be reused and/or wrapped (thanks Philippe ;) ).&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;on the technology side we will rely upon a set of REST APIs, a servlet  container and a &lt;a href="http://www.w3.org/TR/rdf-sparql-query/"&gt;SPARQL&lt;/a&gt; query engine (&lt;a href="http://www.joseki.org/"&gt;Joseki&lt;/a&gt;, very probably) to retrieve rdf metadata and carry out the inference process. This  should be quite scalable, and simple enough to get the repo up and running as  soon as possible. I am thinking about the &lt;a href="http://www.restlet.org/"&gt;RESTlet framework&lt;/a&gt; (just checked  licensing issues, it looks ok), but if somebody has got better suggestions,  please let me hear about.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;I started designing the repository and refining the use case model, planning to have CRUD features available in the very next weeks. Architectural views coming soon to a blog near you.&lt;br /&gt;&lt;br /&gt;That's all folks, eager to get some feedback,&lt;br /&gt;cheers,&lt;br /&gt;&lt;a href="http://savino.wordpress.com/"&gt;Savino Sguera&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6090758948862683106?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6090758948862683106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6090758948862683106' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6090758948862683106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6090758948862683106'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/06/semantic-aware-software-component.html' title='Semantic-aware software component provisioning: status report'/><author><name>Savino Sguera</name><uri>http://www.blogger.com/profile/10382156218197567403</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-4534519241754738025</id><published>2007-06-01T14:54:00.000Z</published><updated>2007-06-01T15:08:37.260Z</updated><title type='text'></title><content type='html'>I've integrated a "grammar to Ecore-model" converter plugin to Gymnast. Interestingly, there's more than source code :) a chapter describing it along with some further pointers can be found in the &lt;a href="http://www.sts.tu-harburg.de/%7Emi.garcia/SoC2007/draftreport.pdf"&gt;(draft) progress report&lt;/a&gt; of my Google SoC project.&lt;br /&gt;&lt;br /&gt;Have a nice weekend,&lt;br /&gt;&lt;br /&gt;Miguel Garcia&lt;br /&gt;&lt;a href="http://www.sts.tu-harburg.de/%7Emi.garcia/"&gt;http://www.sts.tu-harburg.de/~mi.garcia/ &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-4534519241754738025?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/4534519241754738025/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=4534519241754738025' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4534519241754738025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4534519241754738025'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/06/ive-integrated-grammar-to-ecore-model.html' title=''/><author><name>Miguel Garcia</name><uri>http://www.blogger.com/profile/09949136685995342215</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-5318353757192935816</id><published>2007-05-14T22:09:00.000Z</published><updated>2007-05-14T22:33:12.448Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Improving Eclipse Search'/><category scheme='http://www.blogger.com/atom/ns#' term='Status'/><title type='text'>Status: Improving Eclipse Search</title><content type='html'>&lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;Official name:  &lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;a href="http://code.google.com/soc/eclipse/appinfo.html?csaid=27DD162F00A217AD"&gt;&lt;span style="font-style: italic;" class="new"&gt;Eclipse search plugin: providing a better, faster, more relevant Eclipse search&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0cm;" align="left"&gt;May 15th&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0cm;" align="left"&gt; &lt;b&gt;Training&lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;I'm currently implementing an Eclipse plugin (about AJAX development – currently dealing mostly with manipulating/listening DOM document and nodes in embedded SWT.Mozilla browser – trying to implement a WYSIWYG HTML document designer)  as a project at school so I had (and continue having) experience with Eclipse plugin development process with our project team at school. I've read a number of chapters from the book “&lt;/span&gt;&lt;b&gt;Eclipse: Building Commercial-Quality Plug-ins&lt;/b&gt;&lt;span style=""&gt;”&lt;/span&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;and I'm still reading.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;After our initial discussions with Francois, this was a list of ideas about usability from Francois to familiarize myself with source code related with search features of Eclipse.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;A few ideas for search usability&lt;br /&gt;1) improve Ctrl-J search:&lt;br /&gt;- Ctrl-J : have Ctrl-V paste the current ring in it&lt;br /&gt;- Ctrl-J : if there's a selection, have a second Ctrl-J take this selection as search string&lt;br /&gt;- Ctrl-J followed by Ctl-R would switch to regex search&lt;br /&gt;- Ctrl-J to global search: transform a Ctrl-J to to a global search actually, drive all searches from the keyboard incremental search would be good: there should be a set of keyboard shortcuts on Ctrl-J to set up a complete search, and then execute it globally.&lt;br /&gt;2) Display search results. the view that displays the search results is very poor currently. Probably a tree view is not perfect. It should show the matches, for example. It should have more shortcuts...&lt;br /&gt;3) improve the search dialog. More TBD&lt;br /&gt;4) real search/replace:&lt;br /&gt;- search and replace in multiple files (all files/subset of files)&lt;br /&gt;- selective (based on language elements...) &lt;/span&gt; &lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; I had time to checkout and browse source codes in Eclipse CVS, find out which component does what and how it does that. However, I didn't have time to grasp the whole picture.&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt; &lt;b&gt;Problems/ Possible Enhancements to Address&lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;Here is a list of issues from my little research in Eclipse Bugzilla about possible enhancements/problems to address:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;1. &lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt;find/replace search should have a tick-box for "ignore comments" (enhancement request)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161398" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=161398&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;2. &lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt;Show as package tree&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160481" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=160481 &lt;/a&gt;(enhancement request)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;3. &lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt;Store Previous Searches for Startup (enhancement request)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=169252" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=169252 &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4. Search dialog "Java Search" Scope should include Hierarchy (WONTFIX bug)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=110252" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=110252&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;5.&lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt; New text search shown line not a great help (LATER)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=127672" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=127672&lt;/a&gt;&lt;br /&gt;(This bug is waiting for applying styles on a tree item.)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="background: rgb(255, 255, 255) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;6.&lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt; Result in Table (LATER)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=129185" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=129185&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;i&gt;&lt;span style=""&gt;These two are related:&lt;/span&gt;&lt;/i&gt;&lt;span style=""&gt;&lt;br /&gt;7. Search shows duplicate results in nested projects (LATER)&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144959" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=144959&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;8. Resource exclusion filters&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=84988" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=84988&lt;/a&gt;&lt;br /&gt;(read together with: &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144959" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=144959&lt;/a&gt; - about duplicate results for nested folder structures)&lt;br /&gt;&lt;br /&gt;9. Search Enhancements&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=108223" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=108223&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;10. Search in files: see matched lines&lt;br /&gt;&lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=72575" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=72575&lt;/a&gt; &lt;/span&gt; &lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; Francois investigated the list and commented on it and it seems to me that I can make use of / address many issues in this list, either directly or indirectly.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;b&gt;Thoughts about the Main Part ( Lucene, OpenGrok etc. )&lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;I tried to keep myself focused on research at the beginning so I read about both Lucene and OpenGrok. I understood how OpenGrok achieved to be a great tool for source code browsing and cross-referencing. Since it makes use of Lucene, either way (if I use OpenGrok or not) Lucene is a building block of this project. I've read a few articles and browsed a few presentations about Lucene and I'm still trying to learn more about it. &lt;/span&gt; &lt;/p&gt;&lt;br /&gt;&lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt;I've been consistently asking questions to myself about index sizes and frequent updates to the index. As a basic solution, I thought of keeping a partitioned index ( e.g. A project having an index that is distributed to multiple Lucene indexes and these index files being accessed/changed when it's necessary. Shortly, we may call this partitioning the index file. ). &lt;/span&gt; &lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; This absolutely has a tradeoff because of the cost of not using one index for the whole project. But, when a good number of partitions is selected, I think that the tradeoff will seem small. (I thought of computing the ideal number in the future, like the computation of ideal bucket size in file processing literature.)&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; I thought of this “partitioning” method because an Eclipse user can get very aggressive when we tell him that we can “linearize” the time to search his files but in order to do this, he has to keep like ~ 50 MB for the index in RAM. ( I've tried indexing different things and I think that this value is a good estimate for large projects. And by the way, a possible question is why do I have to keep things in RAM and do not write things to disc. One answer: dynamic nature of source codes and frequent updates. )&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; Partitioning approach gives us one advantage: we only have to index a part of the project when you are working on a set of files. Since the number of active editors is considerably less than the actual project size, it is an idea that can work. And since we can keep a relatively small index in RAM, indexes containing your active file set can be updated fast.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; However, I still see other tradeoffs in this approach and it is just a start. By the way, I'm trying not to focus on algorithm-wise enhancements for now and I don't plan to implement this idea in my prototypes during the early days of coding. I plan to start coding by addressing usability enhancements first.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; I think early search plugin prototypes will makes use of RAM – HDD data transition features of Lucene and just write the index to a file on the disc after a certain threshold.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;b&gt;Todo List for Rest of the Interim Period&lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;b&gt; &lt;/b&gt;&lt;span style=""&gt;Well, I didn't have time to update the Wiki page of my project but I'll do it in 1-2 days.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; Second thing that I feel I have to do before interim period ends is implementing little usability ideas from the list of Francois.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; That's all for now.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0cm;" align="left"&gt;&lt;span style=""&gt; If you have related ideas please feel free to send an e-mail. I'll be really glad to hear ideas about usability issues or Lucene / OpenGrok etc. &lt;/span&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-5318353757192935816?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/5318353757192935816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=5318353757192935816' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5318353757192935816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5318353757192935816'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-improving-eclipse-search.html' title='Status: Improving Eclipse Search'/><author><name>Çağatay Çallı</name><uri>http://www.blogger.com/profile/02439335158633879975</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-5427668641335308662</id><published>2007-05-14T06:20:00.000Z</published><updated>2007-05-14T06:54:41.635Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Status'/><category scheme='http://www.blogger.com/atom/ns#' term='Integate and Connect your Clients'/><title type='text'>Status,Integate and Connect your Clients</title><content type='html'>Hi, all:&lt;br /&gt;My project "Integate and Connect your Clients"  is focused on building a platform to support mail client, Calendar and TaskList  ,mentored by Wayne Beaton.&lt;br /&gt;&lt;br /&gt;And I have done the following things:&lt;br /&gt;&lt;br /&gt;1. Read related docs my mentors gave.&lt;br /&gt;&lt;br /&gt;2. Looked into "Mail content","Mail attachment" and such problems.&lt;br /&gt;&lt;br /&gt;3. Study sample codes,discuss with my mentor with the model design and function design.&lt;br /&gt;&lt;br /&gt;Next i will try to add some new trial code to sample code.&lt;br /&gt;&lt;br /&gt;Feel free to comment :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-5427668641335308662?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/5427668641335308662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=5427668641335308662' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5427668641335308662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/5427668641335308662'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/statusintegate-and-connect-your-clients.html' title='Status,Integate and Connect your Clients'/><author><name>Ismeal</name><uri>http://www.blogger.com/profile/16882086597749007408</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-4730271817032845748</id><published>2007-05-13T06:58:00.000Z</published><updated>2007-05-13T08:01:05.403Z</updated><title type='text'>Status, NetBeans in Eclipse</title><content type='html'>&lt;span style="color: rgb(0, 0, 0);font-size:100%;" &gt;Hi all,&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;p style="color: rgb(0, 0, 0);" class="MsoNormal"&gt;&lt;span lang="EN-US"  style="font-size:100%;"&gt;My Project goals are to provide a minimal NetBeans environment within Eclipse as Eclipse plugins and support running NetBeans plugins like Matisse. My mentor is Philippe Ombredanne. During the last 3-4 weeks I didn’t have much time for GSOC07 but I have done some work:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;        &lt;ul style="color: rgb(0, 0, 0);"&gt;&lt;li&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang="EN-US"  style="font-size:100%;"&gt;I have contacted my mentor and we discussed the project goals. As first step I will      implement a simple Netbeans’ plugin(an simple Editor) and try to find what is needed to run this plugin within Eclipse.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang="EN-US"  style="font-size:100%;"&gt;I updated the wiki page of my Project.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang="EN-US"  style="font-size:100%;"&gt;I started to read the documentation of NetBeans.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span lang="EN-US"  style="font-size:100%;"&gt;I started to code the simple NetBeans’ plugin.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal"&gt;  &lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;I will have much time for GSoC07 after 26st of May.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size: 11pt; font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;;" lang="EN-US"&gt;&lt;span style="font-family: arial; color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=";font-size:100%;" lang="EN-US" &gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Criticism, suggestions and questions are welcome ;).&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-4730271817032845748?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/4730271817032845748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=4730271817032845748' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4730271817032845748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4730271817032845748'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-netbeans-in-eclipse.html' title='Status, NetBeans in Eclipse'/><author><name>beyhan</name><uri>http://www.blogger.com/profile/00714800229104204913</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6441356192472902301</id><published>2007-05-12T19:57:00.000Z</published><updated>2008-12-11T20:33:25.933Z</updated><title type='text'>What's about this multi-monitor stuff?</title><content type='html'>Maybe you heard about this project yet - maybe  not. The official name of my (Benjamin Muskalla) this years Google Summer of Code project: &lt;a href="http://wiki.eclipse.org/index.php/Improve_multi-monitor_support"&gt;Improve the multi-monitor support in Eclipse&lt;/a&gt;. I have to say that the name maybe a bit delusive because all of the features&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_9fkKEO4v04k/RkYgiV_-4dI/AAAAAAAAAAM/mMCIVK1VT6c/s1600-h/fullscreen-handler.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://4.bp.blogspot.com/_9fkKEO4v04k/RkYgiV_-4dI/AAAAAAAAAAM/mMCIVK1VT6c/s320/fullscreen-handler.jpg" alt="" id="BLOGGER_PHOTO_ID_5063770605417849298" border="0" /&gt;&lt;/a&gt; are also available for single-user desktops. For example what I've implemented so far: Fullscreen mode for RCP applications. This is all about the native support of SWT to provide an option to set a shell into fullscreen mode (native or emulated) and use this to rearrange the layout of the product itself. As you can see if you try out the patches in the &lt;a href="http://eclipse-incub.cvs.sourceforge.net/eclipse-incub/multi-monitor-enhancements/"&gt;CVS&lt;/a&gt; repository, you can switch your Eclipse IDE to a fullscreen mode where Eclipse has the whole available space on your monitor, hides it's own toolbar/menubar and statusbar to give you as much space as possible to write code.&lt;br /&gt;As I've only limited platform possibilities, there are only patches for Windows, Windows Vista and Linux GTK available yet - hopefully I can provide some more in the future. Additionally I put together a workbench handler to easily switch to the fullscreen mode (see screenshot). It would be really great to get some feedback from the community to improve the current work. One item I had a hot discussion with my mentor (Kim Horne) if we should provide an option to let the user configure their own fullscreen settings in the Workbench preferences. This way, the user could choose what to show in fullscreen mode: Toolbar on/off, Menubar on/off, etc...&lt;br /&gt;&lt;br /&gt;Hope to post some exiting news in the next weeks about other interesting parts of the project like "Detached Views 2.0"!&lt;br /&gt;&lt;br /&gt;So long I wish you a nice weekend :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6441356192472902301?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6441356192472902301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6441356192472902301' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6441356192472902301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6441356192472902301'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/whats-about-this-multi-monitor-stuff.html' title='What&apos;s about this multi-monitor stuff?'/><author><name>Benjamin Muskalla</name><uri>http://www.blogger.com/profile/08696087506709185876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_9fkKEO4v04k/RkYgiV_-4dI/AAAAAAAAAAM/mMCIVK1VT6c/s72-c/fullscreen-handler.jpg' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-4540239731907761330</id><published>2007-05-12T12:28:00.000Z</published><updated>2007-05-12T12:52:47.072Z</updated><title type='text'>status, Semantic-aware software component provisioning</title><content type='html'>&lt;p&gt;As of April, 11th, I've been mainly assessing code reuse scenarios, both for the ontology modeling and the repository design tasks; I've been working on the domain model, analyzing Maven repository's tag cloud, and getting a grasp on the OSGi specification as well.&lt;/p&gt; &lt;p&gt;A good axiomatization of the software component domain is given &lt;a href="http://cos.ontoware.org/" mce_href="http://cos.ontoware.org/" target="_blank"&gt;here @ cos.ontoware.com&lt;/a&gt;, and I think augmenting such ontologies would be nice for the project. They provide a quite granular description of a software component and library, which will support future development of the project, pushing formal description of software components down to interface- and method-level. I believe some sort of integration with &lt;a href="http://irbull.blogspot.com/2007/02/tagsea-05.html" mce_href="http://irbull.blogspot.com/2007/02/tagsea-05.html" target="_blank"&gt;TagSEA&lt;/a&gt; (or other efforts in the code annotation area) is possible and promising for the future.&lt;/p&gt;&lt;p&gt;I also discussed with my mentor some issues about OSGi, Maven and other provisioning systems seamless integration in the framework-to-be, since they share most of metadata and semantics about components: it would be nice to have a core set of shared &lt;span style="font-style: italic;"&gt;essential &lt;/span&gt;metadata.&lt;/p&gt; &lt;p&gt;I am currenty thinking - and discussing with my mentor - about the chance of extending an existing OSGi Bundle Repository implementation, to add the needed semantic services, avoiding to design the repository from scratch (thanks lemmy). The repository could be deployed as a bundle itself. However, this requires me some time to be assessed more thoroughly.&lt;br /&gt;&lt;/p&gt;  &lt;p&gt;Repository coding will start thru next weeks, as soon as I decide existing components' and technologies' integration, analyze use cases and define a strategic architecture to rely upon.&lt;/p&gt; &lt;p&gt;I keep updating &lt;a href="http://wiki.eclipse.org/index.php/Semantic-aware_software_component_provisioning:_actually_reusing_software" mce_href="http://wiki.eclipse.org/index.php/Semantic-aware_software_component_provisioning:_actually_reusing_software" target="_blank"&gt;my project's wiki&lt;/a&gt; quite frequently; I just added identified use cases, outlines and specifications will follow asap.&lt;/p&gt; &lt;p&gt;Feedback, criticism and suggestions are welcome ;) .&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-4540239731907761330?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/4540239731907761330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=4540239731907761330' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4540239731907761330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/4540239731907761330'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-semantic-aware-software.html' title='status, Semantic-aware software component provisioning'/><author><name>Savino Sguera</name><uri>http://www.blogger.com/profile/10382156218197567403</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-3483285539578977423</id><published>2007-05-11T21:57:00.000Z</published><updated>2007-05-11T22:34:43.418Z</updated><title type='text'>status, Support seamless debugging between JDT and CDT</title><content type='html'>Hi &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;all&lt;/span&gt;,&lt;br /&gt;&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;My&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;project&lt;/span&gt; goal &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;is&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;to&lt;/span&gt; support &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;seamless&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;debugging&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;between&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;JDT&lt;/span&gt; and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;CDT&lt;/span&gt;. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;My&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;project&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;is&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;mentored&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;by&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Philippe&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;Ombredanne&lt;/span&gt;. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;During&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;these&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;first&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;weeks&lt;/span&gt; I have &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;done&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;following&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;things&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;1 - &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;announced&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;project&lt;/span&gt; : I &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;created&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;my&lt;/span&gt; wiki page[1] and a blog[2]. I  sent &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;emails&lt;/span&gt; (for instance &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;cdt-dev&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_34"&gt;mailing-list&lt;/span&gt;) &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_35"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_36"&gt;get&lt;/span&gt; suggestions, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_37"&gt;comments&lt;/span&gt;, and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_38"&gt;feedback&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;2 - &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_39"&gt;got&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_40"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_41"&gt;existing&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_42"&gt;work&lt;/span&gt; : I &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_43"&gt;got&lt;/span&gt; a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_44"&gt;link&lt;/span&gt;[3] &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_45"&gt;from&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_46"&gt;cdt-dev&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_47"&gt;guys&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_48"&gt;to&lt;/span&gt; a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_49"&gt;presentation&lt;/span&gt; on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_50"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_51"&gt;several&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_52"&gt;approaches&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_53"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_54"&gt;provide&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_55"&gt;seamless&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_56"&gt;debugging&lt;/span&gt;. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_57"&gt;My&lt;/span&gt; mentor gave me &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_58"&gt;too&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_59"&gt;some&lt;/span&gt; links[4, 5, 6] on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_60"&gt;how&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_61"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_62"&gt;debug&lt;/span&gt; Java &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_63"&gt;JNI&lt;/span&gt; application.&lt;br /&gt;&lt;br /&gt;3 - &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_64"&gt;read&lt;/span&gt; documentation : I &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_65"&gt;read&lt;/span&gt; documentation on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_66"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_67"&gt;Eclipse&lt;/span&gt; architecture, and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_68"&gt;did&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_69"&gt;tutorials&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_70"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_71"&gt;learn&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_72"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_73"&gt;write&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_74"&gt;plug-ins&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;4 - &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_75"&gt;started&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_76"&gt;to&lt;/span&gt; code :  I &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_77"&gt;started&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_78"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_79"&gt;write&lt;/span&gt; a prototype &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_80"&gt;plugin&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_81"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_82"&gt;validate&lt;/span&gt; an &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_83"&gt;approach&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_84"&gt;Feel&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_85"&gt;free&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_86"&gt;to&lt;/span&gt; comment :)&lt;br /&gt;&lt;br /&gt;[1] &lt;a href="http://wiki.eclipse.org/index.php/Support_seamless_debugging_between_JDT_and_CDT" class="external text" title="wiki page" rel="nofollow"&gt;wiki page&lt;/a&gt;&lt;br /&gt;[2] &lt;a href="http://eclipse-soc-mariot.blogspot.com/" class="external text" title="personal blog" rel="nofollow"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_87"&gt;personal&lt;/span&gt; blog&lt;/a&gt;&lt;br /&gt;[3] &lt;a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/cdt-home/presentations/spring2006/debugger_for_eclipse.ppt?cvsroot=Tools_Project" class="external text" title="Mixed mode debugger prototype presentation" rel="nofollow"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_88"&gt;Mixed&lt;/span&gt; mode &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_89"&gt;debugger&lt;/span&gt; prototype &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_90"&gt;presentation&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;[4] &lt;a href="http://www-128.ibm.com/developerworks/java/library/j-jnidebug/index.html?dwzone=java" class="external text" title="http://www-128.ibm.com/developerworks/java/library/j-jnidebug/index.html?dwzone=java" rel="nofollow"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_91"&gt;Debugging&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_92"&gt;integrated&lt;/span&gt; Java and C/C++ code&lt;/a&gt;&lt;br /&gt;[5] &lt;a href="http://www.kineteksystems.com/white-papers/mixedjavaandc.html" class="external text" title="http://www.kineteksystems.com/white-papers/mixedjavaandc.html" rel="nofollow"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_93"&gt;Debugging&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_94"&gt;integrated&lt;/span&gt; in &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_95"&gt;Eclipse&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;[6] &lt;a href="http://www.kineteksystems.com/white-papers/mixedjavaandc.html" class="external text" title="http://www.kineteksystems.com/white-papers/mixedjavaandc.html" rel="nofollow"&gt;Java and C/C++ &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_96"&gt;JNI&lt;/span&gt; Application &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_97"&gt;Debugging&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_98"&gt;with&lt;/span&gt; GUI&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-3483285539578977423?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/3483285539578977423/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=3483285539578977423' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3483285539578977423'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3483285539578977423'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-support-seamless-debugging.html' title='status, Support seamless debugging between JDT and CDT'/><author><name>Mariot Chauvin</name><uri>http://www.blogger.com/profile/06363398743120781633</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/-p4Q6R2RN2CU/TshCZy6C1QI/AAAAAAAAAZ0/8A6gO8QQCDE/s220/me.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-683109855390545863</id><published>2007-05-11T21:44:00.000Z</published><updated>2007-05-11T21:47:17.060Z</updated><title type='text'>status, Eclipse Web Interface</title><content type='html'>Hi all,&lt;br /&gt;&lt;br /&gt;Here is a quick update on the status for the "Eclipse Web Interface" project.&lt;br /&gt;&lt;br /&gt;So I have begun discussing ideas with my mentor, Nick Boldt, for the project and from this we have successfully been able to start narrowing down what the project's primary goal should be.  During these discussions I have been keeping note of what I need to familiarize myself with -- right now the Eclipse Plug-in architecture is at the top of my list.  Consequently, I've been getting my feet wet by starting to read the pertinent documentation on eclipse.org as well as playing around with some EMF tutorials and the Eclipse Plug-in Project wizard.&lt;br /&gt;&lt;br /&gt;I have yet to officially start coding on the project itself, but this will be the next step! :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-683109855390545863?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/683109855390545863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=683109855390545863' title='29 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/683109855390545863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/683109855390545863'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-eclipse-web-interface.html' title='status, Eclipse Web Interface'/><author><name>Michael</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>29</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-9019038403372192756</id><published>2007-05-11T08:18:00.000Z</published><updated>2007-05-11T08:25:02.523Z</updated><title type='text'>status, IDE Generator (Miguel Garcia)</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;I see my SoC project comprising several areas, and thus I’ll report status in each:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt; the promotion area: I’ve started a blog&lt;br /&gt;&lt;a href="http://dsltoolingandlangeng.blogspot.com/"&gt;DSL Tooling, with a touch of Language Engineering&lt;/a&gt;&lt;br /&gt;where I’m keeping a trail of design decisions, related know-how, and (soon) reflections upon particular code snippets. All this aiming to make life easier for those wanting to join the project, or simply start a related project.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;the IDE generator itself (i.e., my pumped-up version of Gymnast)&lt;br /&gt;&lt;br /&gt;2.a) A small step next week: Ecore-ifying the APIs being generated as of now for Concrete Syntax Trees.&lt;br /&gt;&lt;br /&gt;2.b) In parallel, I guess I should start with IP issues around placing in the Incubation CVS the Gymnast code, I’ll contact my mentor on this but I understand completing the paperwork is on me&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;generating an IDE as a proof-of-concept. Alas, again two lines of activity here:&lt;br /&gt;&lt;br /&gt;3.a) there’s a favorite DSL IDE among those which I’m targeting, which is &lt;a href="http://www.alphaworks.ibm.com/tech/emfatic"&gt;Emfatic&lt;/a&gt;, with several extensions already coded manually. The strategy is to harvest from them best-practices to embed in the generator. But in all honesty, the functionality that Emfatic sports is not (and will not) remain limited to what the pumped-up Gymnast generates. It’s a special status that Emfatic has among the “generated IDEs”. Before making this Emfatic into CVS, I need two weeks to solve some architectural issues (mostly, truly supporting editing several docs at the same time)&lt;br /&gt;&lt;br /&gt;3.b) No progress so far on a DSL other than Emfatic (I'm not thinking at this stage about coding, but about &lt;span style="font-style: italic;"&gt;language design&lt;/span&gt; to pave the way for generation time), but I’ll hint at ideas all along in the blog. I hope someone picks up on that, for further impact.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Questions / comments / feedback are welcome!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Miguel&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-9019038403372192756?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/9019038403372192756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=9019038403372192756' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/9019038403372192756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/9019038403372192756'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/status-ide-generator-miguel-garcia.html' title='status, IDE Generator (Miguel Garcia)'/><author><name>Miguel Garcia</name><uri>http://www.blogger.com/profile/09949136685995342215</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-3136425273589331557</id><published>2007-05-08T16:44:00.000Z</published><updated>2008-12-11T20:33:26.181Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='soc'/><category scheme='http://www.blogger.com/atom/ns#' term='eclipse'/><title type='text'>Calling all artists</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RIwhvjncU4c/RkCqhsg_1qI/AAAAAAAAABQ/YXgILghg4g8/s1600-h/soc20070506.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_RIwhvjncU4c/RkCqhsg_1qI/AAAAAAAAABQ/YXgILghg4g8/s320/soc20070506.png" alt="" id="BLOGGER_PHOTO_ID_5062233477026404002" border="0" /&gt;&lt;/a&gt;The Google Summer of Code (SoC) program [1] is underway and Eclipse has over 20 projects [2]. SoC, which is sponsored by Google, provides funding for students to work on open source projects over the summer.  We (the students) submitted proposals which were reviewed by several Eclipse committers (and many of your favorite evangelists).  While the program is sponsored by Google, the management and mentoring is done by the Eclipse community.  For the past month many of the students have been getting involved with their projects, meeting people on mailing lists / newsgroups, getting access to the code, etc...&lt;br /&gt;&lt;br /&gt;[1]&lt;a href="http://wiki.eclipse.org/index.php/Google_Summer_of_Code"&gt;http://wiki.eclipse.org/index.php/Google_Summer_of_Code&lt;/a&gt;&lt;br /&gt;[2]&lt;a href="http://wiki.eclipse.org/index.php/Google_Summer_of_Code_2007"&gt;http://wiki.eclipse.org/index.php/Google_Summer_of_Code_2007&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We have also been working on a logo. Gen Nishimura has submitted some nice artwork, but I'm sure others have creative ideas too.  If you have any ideas please take a look at &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184913"&gt;bug# 184913&lt;/a&gt; [3].&lt;br /&gt;&lt;br /&gt;[3] &lt;a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184913"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=184913&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Finally we (the students) will be using this blog [4] to update the community on our progress, solicit ideas, etc...  Over the next few days some of us will outline what we have been up-to and how we are proceeding with our work.&lt;br /&gt;&lt;br /&gt;[4] &lt;a href="http://eclipse-soc.blogspot.com/"&gt;http://eclipse-soc.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-3136425273589331557?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/3136425273589331557/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=3136425273589331557' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3136425273589331557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/3136425273589331557'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/05/calling-all-artists.html' title='Calling all artists'/><author><name>Ian Bull</name><uri>http://www.blogger.com/profile/02668098567506210626</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_RIwhvjncU4c/Su5ngebhzaI/AAAAAAAACqs/4Fl8yC94IiA/s1600-R/77e02a3c8c665155ad1acaac8c2742e0%3Fd%3D404'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_RIwhvjncU4c/RkCqhsg_1qI/AAAAAAAAABQ/YXgILghg4g8/s72-c/soc20070506.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3563144813378269956.post-6024027119978779022</id><published>2007-04-27T15:04:00.000Z</published><updated>2007-04-27T15:12:04.215Z</updated><title type='text'>Eclipse SoC</title><content type='html'>Eclipse SoC is ramping up and students are starting to get immersed in the Eclipse Community.  For a complete list of projects that we are working on, please visit our wiki page [1].  &lt;br /&gt;&lt;br /&gt;[1]&lt;a href="http://wiki.eclipse.org/index.php/Google_Summer_of_Code_2007"&gt;Soc Wiki Page&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Some students have been involved in Eclipse for years while other students are relatively new, so any advice that veteran community members have is always welcome!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3563144813378269956-6024027119978779022?l=eclipse-soc.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://eclipse-soc.blogspot.com/feeds/6024027119978779022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3563144813378269956&amp;postID=6024027119978779022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6024027119978779022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3563144813378269956/posts/default/6024027119978779022'/><link rel='alternate' type='text/html' href='http://eclipse-soc.blogspot.com/2007/04/eclipse-soc_27.html' title='Eclipse SoC'/><author><name>Ian Bull</name><uri>http://www.blogger.com/profile/02668098567506210626</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_RIwhvjncU4c/Su5ngebhzaI/AAAAAAAACqs/4Fl8yC94IiA/s1600-R/77e02a3c8c665155ad1acaac8c2742e0%3Fd%3D404'/></author><thr:total>0</thr:total></entry></feed>
