<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>eclipse &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/eclipse/</link>
	<description>Feed of posts on WordPress.com tagged "eclipse"</description>
	<pubDate>Sat, 11 Oct 2008 11:30:13 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Am gasit Twilight in engleza]]></title>
<link>http://withinmydreamersoul.wordpress.com/?p=433</link>
<pubDate>Sat, 11 Oct 2008 09:13:26 +0000</pubDate>
<dc:creator>withinmydreamersoul</dc:creator>
<guid>http://withinmydreamersoul.pl.wordpress.com/2008/10/11/am-gasit-twilight-in-engleza/</guid>
<description><![CDATA[Vineri, 10 octombrie 2008, zi mare de cantat fericirea sufletelului meu. Doar cu o saptamana inainte]]></description>
<content:encoded><![CDATA[<p><a href="http://withinmydreamersoul.files.wordpress.com/2008/10/twilightcover.jpg"><img class="size-full wp-image-435 alignleft" title="twilightcover" src="http://withinmydreamersoul.wordpress.com/files/2008/10/twilightcover.jpg" alt="" width="200" height="300" /></a>Vineri, 10 octombrie 2008, zi mare de cantat fericirea sufletelului meu. Doar cu o saptamana inainte, mai exact la ora 10:20 imi facusem comanda la Libraria Engleza pentru toate cele patru volume din seria Twilight, dar inca nu le aveam in mana prin urmare nu credeam pe deplin ca o sa le am. Si ziua cea mare a venit, si eu m-am gandit sa chiulesc de la doua ore ca da mai bine absenta decat nota care iti strica media si uite asa vine taticul acasa inainte sa plec la scoala si-l intreb "Mi-ai luat cartile?". "Nu. De-abia le adusesera carti si puneau preturile pe ele. Ma duc din nou mai tarziu." M-am calmat. La o adica mai bine ca mi le-a dat seara decat inainte sa plec la scoala. Si vine seara si ai mei se intorc cu punguta de Anthony Frost si carticele mele nemaipomenite, pe care le-am citit de 2 ori acum sunt in tura a 3-a si logic ca o sa le mai citesc inca o data ca doar n-am luat cartile degeaba. Prima reactia nu a existat pentru ca intrasem in soc, alt soc pe ziua de vineri tinand cont ca in drum spre casa am vazut un Volvo gri. Apoi am inceput sa bat din palme ca un om nebun dupa care am observat ca nu au hardcover.</p>
<p style="text-align:center;"><a href="http://withinmydreamersoul.files.wordpress.com/2008/10/newmooncover.jpg"><img class="size-full wp-image-436 aligncenter" title="newmooncover" src="http://withinmydreamersoul.wordpress.com/files/2008/10/newmooncover.jpg" alt="" width="245" height="350" /></a></p>
<p>M-am uitat asa putin parca vroiam sa fie coperta groasa, dar nu dupa mult timp am ajuns la concluzia ca nu mai conteaza ce fel de coperta au.</p>
<p>Prin urmare si care este, pentru cei interesati<a href="http://withinmydreamersoul.files.wordpress.com/2008/10/eclipsecover.jpg"><img class="size-medium wp-image-437 alignright" title="eclipsecover" src="http://withinmydreamersoul.wordpress.com/files/2008/10/eclipsecover.jpg?w=198" alt="" width="198" height="300" /></a></p>
<p>s-ar putea sa faceti rost de ele de la Libraria Engleza din Bucuresti (Anthony Frost), dar s-ar putea sa mai asteptati ca din cate am inteles au adus aproximativ 5 serii dintre care toate erau rezervate. Nici n-au vrut sa le dea cartile lu mamela si tatelu pana n-au verificat ca le-am trimis mail. Si cam atat am avut de spus...</p>
<p>mi-am cantat din nou fericirea (sper sa nu ma paleasca anumite personalitati<img class="alignnone size-full wp-image-434" title="11" src="http://withinmydreamersoul.wordpress.com/files/2008/10/11.gif" alt="" width="18" height="18" />)</p>
<p><a href="http://withinmydreamersoul.files.wordpress.com/2008/10/bdcover.jpg"><img class="alignleft size-medium wp-image-438" title="bdcover" src="http://withinmydreamersoul.wordpress.com/files/2008/10/bdcover.jpg?w=196" alt="" width="196" height="300" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The beauty of a Quick Fix]]></title>
<link>http://ourcraft.wordpress.com/?p=897</link>
<pubDate>Fri, 10 Oct 2008 18:52:54 +0000</pubDate>
<dc:creator>danielmeyer</dc:creator>
<guid>http://ourcraft.pl.wordpress.com/2008/10/10/the-beauty-of-a-quick-fix/</guid>
<description><![CDATA[Eclipse has a nice feature called Quick Fix where if you type in something that doesn&#8217;t compil]]></description>
<content:encoded><![CDATA[<p>Eclipse has a nice feature called Quick Fix where if you type in something that doesn't compile, it thinks of things you could do to fix it.  For instance, if you type in the name of a class it can't find, there's a little X with a light bulb (which I translate as "Something's wrong but I have an idea how to fix it").  I can then click on the X-with-the-light-bulb (or better yet, press <strong>Ctrl+1</strong>) and choose a quick fix from the list.</p>
<p>I had known for several weeks about being able to click on the X/light bulb icon, but having to stop typing and go click over there was enough impedance that I generally would just do the work myself.  Just in the last day or so though, I found out about the Ctrl+1 shortcut...</p>
<p>Let me demonstrate how this helped me today.</p>
<p>I had renamed my MessageSender class to MessageSenderImpl, and then performed Extract Interface to recreate MessageSender as an interface.  After <a href="http://ourcraft.wordpress.com/2008/10/10/refactoring-to-interfaces-if-only-subversion-could-understand/">I helped Subversion understand</a>, I was then ready to create a new implementor of the interface: a UserSvcAwareMessageSenderImpl.</p>
<ol>
<li>I started UserSvcAwareMessageSenderImpl's sendMessage() implementation with the code from the plain MessageSenderImpl:<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-01-starting-code.png"><img class="size-medium wp-image-900 alignnone" title="quick-fix-01-starting-code" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-01-starting-code.png?w=300" alt="" width="300" height="27" /></a></li>
<li>I changed the name of the class it was instantiating to UserSvcAwareMessageCreator -- which doesn't exist yet.  I got the red underscore:<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-02-nonexistent-class.png"><img class="alignnone size-medium wp-image-901" title="quick-fix-02-nonexistent-class" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-02-nonexistent-class.png?w=300" alt="" width="300" height="25" /></a></li>
<li>I press Ctrl+1 to pop up the Quick Fix list:<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-03-quick-fix-list.png"><img class="alignnone size-medium wp-image-902" title="quick-fix-03-quick-fix-list" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-03-quick-fix-list.png?w=300" alt="" width="300" height="111" /></a></li>
<li>"Create class 'UserSvcAwareMessageCreator'" is already highlighted, so I just hit Enter.  This pops up the Create New Class dialog, where the defaults are fine, so I hit Enter again.</li>
<li>Eclipse has put me in the new UserSvcAwareMessageCreator class.  I click on the TODO comment and press Ctrl+F1, which comes up with the single suggestion "Remove task tag":<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-05-todo-comment.png"><img class="alignnone size-full wp-image-903" title="quick-fix-05-todo-comment" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-05-todo-comment.png" alt="" width="441" height="75" /></a></li>
<li>I hit Enter and the comment is gone (<em>Click, Ctrl+1, Enter</em> is more efficient than my usual <em>Click, Home (to get to beginning of line), Shift+DownArrow, Delete</em>).<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-06-todo-is-gone.png"><img class="alignnone size-full wp-image-904" title="quick-fix-06-todo-is-gone" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-06-todo-is-gone.png" alt="" width="361" height="46" /></a></li>
<li>I intend to pass session.createTextMessage a String that's passed in to UserSvcAwareMessageCreator's constructor, but I haven't created the field nor the constructor yet.  I type the code anyway:<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-07-messagetext-does-not-exist-yet.png"><img class="alignnone size-medium wp-image-905" title="quick-fix-07-messagetext-does-not-exist-yet" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-07-messagetext-does-not-exist-yet.png?w=300" alt="" width="300" height="81" /></a></li>
<li>I press Ctrl+F1...<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-08-what-to-do-with-messagetext.png"><img class="alignnone size-medium wp-image-906" title="quick-fix-08-what-to-do-with-messagetext" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-08-what-to-do-with-messagetext.png?w=300" alt="" width="300" height="113" /></a></li>
<li>...and down-arrow to "Create field 'messageText'":<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-09-messagetext-field-created.png"><img class="alignnone size-medium wp-image-907" title="quick-fix-09-messagetext-field-created" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-09-messagetext-field-created.png?w=300" alt="" width="300" height="103" /></a></li>
<li>I place the cursor on the new messageText field, press Shift+Alt+S (could instead have pulled down the Source menu but I'm partial to keyboard shortcuts), and choose Generate Constructor using Fields...<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-10-generate-constructor-using-fields.png"><img class="alignnone size-medium wp-image-908" title="quick-fix-10-generate-constructor-using-fields" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-10-generate-constructor-using-fields.png?w=300" alt="" width="300" height="208" /></a></li>
<li>And there we are, ready to fill in the rest of the createMessage() method:<br />
<a href="http://ourcraft.wordpress.com/files/2008/10/quick-fix-11-generated-constructor-ready-for-more.png"><img class="alignnone size-medium wp-image-899" title="quick-fix-11-generated-constructor-ready-for-more" src="http://ourcraft.wordpress.com/files/2008/10/quick-fix-11-generated-constructor-ready-for-more.png?w=300" alt="" width="300" height="169" /></a></li>
</ol>
<p>Using the Quick Fix feature, I got all this set up in way less time than it took to type about it!  :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Refactoring to interfaces: if only Subversion could understand]]></title>
<link>http://ourcraft.wordpress.com/?p=883</link>
<pubDate>Fri, 10 Oct 2008 16:39:35 +0000</pubDate>
<dc:creator>danielmeyer</dc:creator>
<guid>http://ourcraft.pl.wordpress.com/2008/10/10/refactoring-to-interfaces-if-only-subversion-could-understand/</guid>
<description><![CDATA[There is a refactoring I do sometimes that confuses Subversion:
Suppose I have a class named Message]]></description>
<content:encoded><![CDATA[<p>There is a refactoring I do sometimes that confuses Subversion:</p>
<p>Suppose I have a class named MessageSender.  It does not implement an interface; it just does the work itself.  Now perhaps I want a MessageSender to be an interface and have a MessageSenderImpl.  To accomplish this change, I:</p>
<ol>
<li>Rename MessageSender to MessageSenderImpl.</li>
<li>Extract Interface on MessageSenderImpl and call it MessageSender.</li>
</ol>
<p>At this point, I can see that Subversion is confused, because there is a little red X in the icon for MessageSender.java in the Package Explorer:</p>
<p><a href="http://ourcraft.files.wordpress.com/2008/10/eclipse-subversion-little-red-x-by-java-file.png"><img class="alignnone size-full wp-image-884" title="eclipse-subversion-little-red-x-by-java-file" src="http://ourcraft.wordpress.com/files/2008/10/eclipse-subversion-little-red-x-by-java-file.png" alt="" width="170" height="16" /></a></p>
<p>If I commit my changes now, MessageSender.java will be deleted and the build will be broken if I have any code using the new interface.</p>
<p>My current workaround is to Revert MessageSender.java and then Restore from Local History the version that has the interface extracted into it.  But this is more work than it oughter be, ain't so?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Eclipse]]></title>
<link>http://exposurevalue.wordpress.com/?p=472</link>
<pubDate>Fri, 10 Oct 2008 06:54:39 +0000</pubDate>
<dc:creator>jmloverink</dc:creator>
<guid>http://exposurevalue.pl.wordpress.com/2008/10/09/eclipse/</guid>
<description><![CDATA[So here it is. My last Photoshop Week photo. And not a minute too soon. I&#8217;m so out of practice]]></description>
<content:encoded><![CDATA[<p>So here it is. My last Photoshop Week photo. And not a minute too soon. I'm so out of practice with Photoshop, it's comical actually. I forgot how to do a layer mask. So this one is relatively simple, I'm sure anyone could figure out how I did it. It took two steps. But the effect came out alright, I think. Originally this was a photo of a ball in mid flight. But I made it into a partial eclipse.</p>
<p>You like it? Let me know what you think. I love feedback. Most of the time I'm just flying blind without anyone else' opinion.</p>
<p>~Jake<a href="http://exposurevalue.files.wordpress.com/2008/10/eclipse.jpg"><img class="aligncenter size-full wp-image-473" title="eclipse" src="http://exposurevalue.wordpress.com/files/2008/10/eclipse.jpg" alt="" width="1024" height="682" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Eclipse - Stephanie Meyer]]></title>
<link>http://silvermists.wordpress.com/?p=128</link>
<pubDate>Fri, 10 Oct 2008 05:21:39 +0000</pubDate>
<dc:creator>Tahira</dc:creator>
<guid>http://silvermists.pl.wordpress.com/2008/10/10/eclipse-stephanie-meyer/</guid>
<description><![CDATA[The 3rd installment of the Twilight series seems to be all about never-ending vendetta that vampires]]></description>
<content:encoded><![CDATA[<p>The 3<sup>rd</sup> installment of the Twilight series seems to be all about never-ending vendetta that vampires are known to hold against each other. The concept of ever after always seem to come with its share of vengeance.<img class="alignright" title="Eclipse book cover" src="http://upload.wikimedia.org/wikipedia/en/2/20/Eclipsecover.jpg" alt="" width="232" height="350" /></p>
<p class="MsoNormal">Anyways, picking off from New Moon, just when Edward and Bella seem to recover from the Volturi and focus on graduation, they are shaken by the turn of events in Seattle. News of new born vampires attacking people left, right and centre reaches them making the already gloomy atmosphere of Forks all the more gloomier. A sane person would make a run for a more pleasant and sunny place but people in this story seem rooted to this place.<!--[if gte mso 9]&#62;  Normal 0     false false false  EN-IN X-NONE X-NONE                           &#60;![endif]--><!--[if gte mso 9]&#62;                                                                                                                                            &#60;![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi; 	mso-fareast-language:EN-US;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi; 	mso-fareast-language:EN-US;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 72.0pt 72.0pt 72.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin-top:0cm; 	mso-para-margin-right:0cm; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif]--></p>
<p class="MsoNormal">After a quite a deal of day dreaming and musings, Bella concludes that the creator is none other than Victoria. How dumb can vampires get??!! All of them are obviously baffled and shocked by the news but none the less prepare for the battle with the help of the shape shifters (they are not werewolves). You can then skip through those numerous pages that exist for the sole purpose of capturing Bella’s tears, fears and other emotions (Ugh!)</p>
<p class="MsoNormal">The fight starts and all the baddies are vanquished or burned rather. The Volturi sends their troops at a leisure pace to clean up the mess. They just have one vampy to kill! The book concludes with Edward and Bella’s engagement. Again, not much is said about Volturi.</p>
<p class="MsoNormal">On the whole, the entire series can be perused through in a jiffy if you hate the mushy parts and manage to skip through them. Otherwise, it’s a pure play high school romance series with supernatural hero and villains thrown in.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Associating Template files with HTML editing engines in Eclipse]]></title>
<link>http://kpowerinfinity.wordpress.com/?p=242</link>
<pubDate>Fri, 10 Oct 2008 05:21:29 +0000</pubDate>
<dc:creator>kpowerinfinity</dc:creator>
<guid>http://kpowerinfinity.pl.wordpress.com/2008/10/10/associating-template-files-with-html-editing-engines-in-eclipse/</guid>
<description><![CDATA[We have been using template files (*.tpl) for one of our projects, and editing in plain text is alwa]]></description>
<content:encoded><![CDATA[<p>We have been using template files (*.tpl) for one of our projects, and editing in plain text is always painful. So, here's a mechanism to use the default Web Editor in Eclipse to edit the files:</p>
<ul>
<li>Add filetype association: open Window &#62; Preferences &#62; General &#62; Content Types &#62; Look for 'HTML' and add '*.tpl' (without quotes) to associate tpl files with html content type</li>
<li>Add editor preference: open Window &#62; Preferences &#62; General &#62; Editors &#62; File Associations, and associate the '*.tpl' type with the 'Web Page Editor'.</li>
</ul>
<p>This should also work with any other templating type that uses html as the base markup.</p>
<p>And then, code away to glory!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[OFFICIAL TWILIGHT THEATRICAL TRAILER OUT!!!!]]></title>
<link>http://sweettangerine50.wordpress.com/?p=302</link>
<pubDate>Thu, 09 Oct 2008 23:10:59 +0000</pubDate>
<dc:creator>sweettangerine50</dc:creator>
<guid>http://sweettangerine50.pl.wordpress.com/2008/10/09/official-twilight-theatrical-trailer-out/</guid>
<description><![CDATA[And it&#8217;s OHMYGOD AMAZING.
Wow. Just&#8230;.I can&#8217;t breathe.

Did you notice the apple?
A]]></description>
<content:encoded><![CDATA[<p style="text-align:center;">And it's OHMYGOD AMAZING.<br />
Wow. Just....I can't breathe.</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ALC94IcMbLI'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/ALC94IcMbLI&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p style="text-align:center;">Did you notice the apple?</p>
<p style="text-align:center;">AMAZING!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Is Smalltalk Cool Again?]]></title>
<link>http://ianskerrett.wordpress.com/?p=556</link>
<pubDate>Thu, 09 Oct 2008 20:24:29 +0000</pubDate>
<dc:creator>Ian Skerrett</dc:creator>
<guid>http://ianskerrett.pl.wordpress.com/2008/10/09/is-smalltalk-cool-again/</guid>
<description><![CDATA[A number of people in the Eclipse community have roots to Smalltalk; for instance I was the ENVY/Dev]]></description>
<content:encoded><![CDATA[<p>A number of people in the Eclipse community have roots to Smalltalk; for instance I was the ENVY/Developer marketing guy at OTI.  When people talk about the glory days of Smalltalk, some people can get all teary-eyed.  I long for the days of ENVY config. maps.</p>
<p>So when I read on <a href="https://twitter.com/marksdriver/statuses/953108310">twitter that Mark Driver</a> from Gartner did a blog post <a href="http://blogs.gartner.com/mark_driver/2008/10/09/remember-smalltalk/">Remember Smalltalk</a>?, I was interested.    Mark is one of the lead Application Development analysts at Gartner.  He is out there talking to lots of enterprise users.  Therefore, I find it fascinanting that he is seeing momentum around Smalltalk.  He even goes as far as to say 'Smalltalk is cool again'.   That is really cool to hear.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ordeal's Movie Manager RCP(Part2)]]></title>
<link>http://ordeal.wordpress.com/?p=38</link>
<pubDate>Thu, 09 Oct 2008 15:23:43 +0000</pubDate>
<dc:creator>ordeal</dc:creator>
<guid>http://ordeal.pl.wordpress.com/2008/10/09/ordeals-movie-manager-rcppart2/</guid>
<description><![CDATA[Vediamo come affrontare il problema delle &#8220;Viste&#8221;.
Secondo l&#8217;articolo di Eclipse C]]></description>
<content:encoded><![CDATA[<p>Vediamo come affrontare il problema delle "Viste".<br />
Secondo l'articolo di <a href="http://www.eclipse.org/articles/viewArticle/ViewArticle2.html">Eclipse Corner</a> "<br />
In the Eclipse Platform a view is typically used to navigate a hierarchy of information, open an editor, or display properties for the active editor".<br />
Nel nostro caso ci serve per implementare una struttura a tab, un tab folder, che ci offrirà un tab per la ricerca dei titoli, un altro tab per il loro inserimento e cancellazione.<br />
Per creare la vista dobbiamo usare il file plugin.xml, andare su extensions ed aggiungere un'estensione all'RCP, ovvero un set di plug-ins che estendono la funzionalità dell'applicativo, nel nostro caso org.eclipse.ui.views.<br />
Aggiungete una vista, datele un nome, un id,nel caso mio myMovieManager.view1, e opzionalmente un'icona, cosa importante, ricordatevi di associargli la classe da generare attraverso il form *class, che conterrà tutte le componenti grafiche in essa contenute.<br />
Una volta fatto ciò dovete mettere mano alla classe Perspective.<br />
[sourcecode language='java']<br />
	layout.setEditorAreaVisible(false);<br />
		layout.addStandaloneView(FilmListView.ID,false, IPageLayout.TOP, 0.90f, layout.getEditorArea());<br />
		layout.addShowViewShortcut(FilmListView.ID);<br />
		IViewLayout filmlist_layout = layout.getViewLayout(FilmListView.ID);<br />
		filmlist_layout.setCloseable(false);<br />
		filmlist_layout.setMoveable(false);<br />
[/sourcecode]<br />
il metodo per aggiungere la vista è addStandaloneView, gli altri servono solo per sistemare il layout e le proprietà della vista.<br />
La nostra vista servirà per contenere un oggetto di tipo Tab folder.</p>
<p>[sourcecode language='java']<br />
	@Override<br />
	public void createPartControl(Composite parentWindow) {</p>
<p>		tabFolder = new TabFolder(parentWindow, SWT.BORDER);<br />
		TabItem sbttabItem = new TabItem(tabFolder, SWT.NONE);<br />
	      sbttabItem.setText("Search By Title ");<br />
	      sbttabItem.setImage(new Image(parentWindow.getDisplay(), this.getClass().getResourceAsStream("/icons/search_16x16.png")));<br />
	    sbttabItem.setControl(searchByTitleContent(tabFolder));</p>
<p>			      TabItem inmtabItem = new TabItem(tabFolder, SWT.NULL);<br />
			      inmtabItem.setText("Insert/Delete Movie ");<br />
			      inmtabItem.setControl(insertDeleteMovie(tabFolder));<br />
			      inmtabItem.setImage(new Image(parentWindow.getDisplay(), this.getClass().getResourceAsStream("/icons/insert_16x16.gif")));</p>
<p>	}<br />
[/sourcecode]</p>
<p>Il codice in questione è appartenente al metodo<strong> createPartControl</strong> della vista contenuta nel sorgente FilmListView.java, appartenente al package dell'RCP.<br />
Potete usare tale metodo in ogni vista per "piazzare" i widgets <a href="http://www.eclipse.org/swt/">SWT</a> che intendete disporre nella vista.<br />
Nel nostro caso un <a href="http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Tab.htm">TabFolder</a>, e due TabItem comprensivi di immagine in esso contenuti.<br />
Il mio consiglio è quello di usare <a href="http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/CatalogSWT-JFace-Eclipse.htm">questo</a> sito assiduamente come un vero e proprio catalogo delle componenti grafiche SWT, da poter piazzare come e dove vi pare.<br />
le due chiamate</p>
<p>[sourcecode language='java']<br />
sbttabItem.setControl(searchByTitleContent(tabFolder));<br />
[/sourcecode]</p>
<p>e</p>
<p>[sourcecode language='java']<br />
inmtabItem.setControl(insertDeleteMovie(tabFolder));<br />
[/sourcecode]</p>
<p>permettono di creare con le funzioni searchByTitleContent(tabFolder) e insertDeleteMovie(tabFolder) , tutto il contenuto di un TabItem, in modo custom.</p>
<p>All'interno di tali funzioni il procedimento è questo:<br />
[sourcecode language='java']<br />
public Control searchByTitleContent(TabFolder tabFolder)<br />
	{<br />
	    Composite composite = new Composite(tabFolder, SWT.NONE);<br />
	    composite.setLayout(new GridLayout(6,true));<br />
	    // Create the TableTree and set some attributes on the underlying table<br />
	    table = new Table(composite, SWT.MULTI &#124; SWT.BORDER &#124; SWT.V_SCROLL );<br />
                 ...<br />
                 return composite;<br />
[/sourcecode]<br />
In pratica instanziamo un oggetto Composite,lo aggreghiamo con componenti grafiche di ciascun tipo (nell'esempio table), e alla fine lo ritorniamo alla funzione chiamante.</p>
<p>Oltre all'ogetto table, con tutte le colonne che nel package allegato potete vedere come sono implementate, il tabItem contenuto nella nostra vista, contiene anche un semplice InputDialog<br />
[sourcecode language='java']<br />
// Create a label to display what the user typed in<br />
			    final Label label = new Label(composite, SWT.NONE);<br />
			    label.setLayoutData(data=new GridData(GridData.FILL_HORIZONTAL));<br />
			    data.horizontalSpan=6;<br />
			    Button show = new Button(composite, SWT.PUSH);<br />
			    final Label dialog_content=new Label(composite,SWT.NONE);<br />
			    dialog_content.setVisible(false);</p>
<p>			    label.setText("Nessun titolo ancora cercato");<br />
			    dialog_content.setText("Inserisci il titolo da cercare");</p>
<p>			    show.setText("Enter Title");<br />
			    show.addSelectionListener(new SelectionAdapter() {<br />
			      public void widgetSelected(SelectionEvent event) {<br />
			        InputDialog dlg = new InputDialog(Display.getCurrent().getActiveShell(),<br />
			            "", "Inserire il titolo o una parola in esso contenuta", dialog_content.getText(), new LengthValidator());<br />
			        if (dlg.open() == Window.OK) {<br />
			          // User clicked OK; update the label with the input<br />
			          label.setText("Risultati per : " + dlg.getValue());<br />
			          label.pack();<br />
			          dialog_content.setText(dlg.getValue());</p>
<p>			        try {<br />
						result=Connector.giveResponse(fix(dlg.getValue()));<br />
					} catch (Exception e) {<br />
						// TODO Auto-generated catch block<br />
						e.printStackTrace();<br />
					}<br />
			          if(result!= null)<br />
			          {<br />
			        	FilmListView.printResult(result, Display.getCurrent());<br />
			          }</p>
<p>			        }<br />
			      }<br />
			    });<br />
[/sourcecode]<br />
Il dialog è dlg, avviato quando viene premuto il pulsante show, attraverso il metodo addSelectionListener.<br />
Quando tale dialog raccoglie il testo, tale testo viene passato al metodo statico<br />
[sourcecode language='java']<br />
result=Connector.giveResponse(fix(dlg.getValue()));<br />
[/sourcecode]<br />
che esamineremo prossimamente, il metodo fix invece, sostituisce l'apice ' con ` (apice inverso), per evitare di passare una variabile dati con un apice ad una query sql,sappiamo che l'apice infatti chiude la query.</p>
<p>Prossimamente vedremo il metodo<br />
FilmListView.printResult(result, Display.getCurrent()); utilizzato da un thread secondario per la stampa asincrona dei risultati sulla tabella.</p>
<p>----<br />
Link ai binari/sorgenti<br />
<a href="http://www.mediafire.com/?gzgyx2onnjm">Win32</a> e per <a href="http://www.mediafire.com/?9jxwdeim09o">GNU/Linux@x86.</a></p>
<p>Vi ricordo che i sorgenti si trovano sotto la directory plugins,all'interno del MyMovieManager_1.0.0.jar, dentro la directory src.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Bugs do RHDS]]></title>
<link>http://webcentro.wordpress.com/?p=125</link>
<pubDate>Thu, 09 Oct 2008 13:33:31 +0000</pubDate>
<dc:creator>webcentro</dc:creator>
<guid>http://webcentro.pl.wordpress.com/2008/10/09/bugs-do-rhds/</guid>
<description><![CDATA[No mundo do software livre, encontrar uma ferramenta de desenvolvimento que atenda todas as suas nec]]></description>
<content:encoded><![CDATA[<p>No mundo do software livre, encontrar uma ferramenta de desenvolvimento que atenda todas as suas necessidades e de forma eficaz é um enorme desafio, O Red Hat Developer Studio, talvez pelo fato de ser um release candidate de um software pago, possui alguns bugs, alguns na qual irei listar a seguir:</p>
<ul>
<li>Algumas vezes quando reiniciado, o RHDS perde a referencia para as libs de projeto, então por precaução você deverá adiciona-las manualmente clicando com o botão direito sobre o projeto &#62;  Properties &#62; Java Build Path &#62; Libraries &#62; Add JARS... , encontre o  local da sua pasta lib (ex: academico_secretaria/WebContentent/WEB-INF/lib) e selecione todas após clicando em OK.</li>
<li>Servidor Jboss configurado automaticamente (Jbossas 4.2) gera muitos bugs</li>
<li>Deploys em alguns momentos não são efetivos (essa caracteristica é dos plugins do eclipse)</li>
<li>...</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gerando arquivos JAR com o Eclipse ]]></title>
<link>http://carlrobers.wordpress.com/?p=183</link>
<pubDate>Thu, 09 Oct 2008 04:45:53 +0000</pubDate>
<dc:creator>carlrobers</dc:creator>
<guid>http://carlrobers.pl.wordpress.com/2008/10/09/gerando-arquivos-jar-com-o-eclipse/</guid>
<description><![CDATA[Este tutorial tenta explicar ao leitor como criar um arquivo JAR contendo as classes e as informaç]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Este tutorial tenta explicar ao leitor como criar um arquivo JAR contendo as classes e as informações do projeto, arquivos JAR são muito usados e facilitam bastante a vida do usuário pois eles se comportam como arquivos <em>EXE</em>, aqueles presentes no <em>Microsoft Windows</em>®, sendo assim, basta você clicar sobre um arquivo JAR e ele carregará a classe principal (<em>Main</em>) e iniciará o programa, isto é, desde que o Java Runtime esteja instalado.</p>
<h2>Criando um projeto.</h2>
<blockquote>
<p style="text-align:justify;">Caso você tenha um projeto aberto ignore estes passos e vá direto para o segundo (<em>Criando o Pacote JAR</em>).</p>
</blockquote>
<p style="text-align:justify;">Abra o Eclipse SDK. Clique em <em>Arquivo &#62;&#62; Novo Exemplo</em>, em seguida você verá uma janela semelhante a esta:</p>
<p style="text-align:justify;"><a href="http://carlrobers.files.wordpress.com/2008/10/1.jpg"><img class="aligncenter size-large wp-image-189" title="1" src="http://carlrobers.wordpress.com/files/2008/10/1.jpg?w=425" alt="" width="425" height="404" /></a></p>
<p style="text-align:center;">
<p>Selecione <em>"Simple text Editor</em>", note que tenho <em>SWT</em> e <em>Swing</em> instalado, caso você não possua, entre no site da Fundação Eclipse e baixe e instale, pressione "<em>Avançar</em>", você verá então a janela seguinte.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/2.jpg"><img class="aligncenter size-large wp-image-185" title="2" src="http://carlrobers.wordpress.com/files/2008/10/2.jpg?w=425" alt="" width="425" height="391" /></a></p>
<p>Escolha um diretório de Origem e um Pacote como na imagem acima e em seguida pressione "<em>Concluir</em>".</p>
<p>Após criado o projeto, você verá uma janela semelhante a seguinte.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/31.jpg"><img class="aligncenter size-large wp-image-186" title="31" src="http://carlrobers.wordpress.com/files/2008/10/31.jpg?w=425" alt="" width="425" height="317" /></a></p>
<h2>Criando o Pacote JAR.</h2>
<p>Com o projeto aberto vá ao menu <em>Arquivo &#62;&#62; Exportar</em> e clique, na janela que se abre, escolha “<em>Arquivo JAR</em>” como mostrado a seguir.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/41.jpg"><img class="aligncenter size-large wp-image-187" title="41" src="http://carlrobers.wordpress.com/files/2008/10/41.jpg?w=425" alt="" width="425" height="445" /></a></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p class="western" style="margin-bottom:0;">Clique em Avançar, você verá a janela “Exportação de JAR”:</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/51.jpg"><img class="aligncenter size-large wp-image-188" title="51" src="http://carlrobers.wordpress.com/files/2008/10/51.jpg?w=425" alt="" width="425" height="506" /></a></p>
<p style="text-align:justify;">Marque o projeto desejado, meu caso será <em>SWT_teste</em>. Em destino coloque o diretório e o nome do arquivo, no meu caso coloquei “<em>~/workspace/SWT_teste/teste1.jar</em>”, em seguida pressione <em>Avançar</em>.<br />
Na janela seguinte não há muito que fazer, nesta janela devem ser definidas as opções para a exportação do pacote do tipo JAR, deixe como está.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/61.jpg"><img class="aligncenter size-large wp-image-191" title="61" src="http://carlrobers.wordpress.com/files/2008/10/61.jpg?w=425" alt="" width="425" height="506" /></a></p>
<p>Pressione <em>Avançar</em> novamente e você verá nossa penúltima janela.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/7.jpg"><img class="aligncenter size-large wp-image-192" title="7" src="http://carlrobers.wordpress.com/files/2008/10/7.jpg?w=425" alt="" width="425" height="506" /></a></p>
<p style="text-align:justify;">Uma coisa primordial é não se esquecer de definir a classe principal, para isto vá até “<em>Classe principal</em>” pressione o botão <em>Procurar</em>, selecione a classe que deve ser iniciada e pressione <em>OK</em>, em seguida pressione <em>Concluir</em>.</p>
<p><a href="http://carlrobers.files.wordpress.com/2008/10/8.jpg"><img class="aligncenter size-full wp-image-193" title="8" src="http://carlrobers.wordpress.com/files/2008/10/8.jpg" alt="" width="404" height="487" /></a></p>
<p>Após estes poucos passos o Eclipse irá criar um pacote dentro do diretório que você escolheu.</p>
<p style="text-align:justify;">Existe também uma extensão para o Eclipse chamada <a href="http://fjep.sourceforge.net/" target="_blank">FatJar</a> que faz este processo, no entanto com muitas outras configurações como por exemplo: exportar todas as bibliotecas presentes no projeto dentro do arquivo JAR, deste modo, a pessoa que tiver acesso a este aquivo conseguirá acessá-lo mesmo não tendo todas as bibliotecas em seu computador.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Configurar Jboss no Linux e inclui-lo no RHDS]]></title>
<link>http://webcentro.wordpress.com/?p=117</link>
<pubDate>Thu, 09 Oct 2008 04:35:56 +0000</pubDate>
<dc:creator>webcentro</dc:creator>
<guid>http://webcentro.pl.wordpress.com/2008/10/09/configurar-jboss-no-linux-incluir-no-rhds/</guid>
<description><![CDATA[Neste tutorial utilizarei o jboss-4.0.5.GA.zip também pode utilizar outra versão ( 4.2.2 ou outra ]]></description>
<content:encoded><![CDATA[<p>Neste tutorial utilizarei o <a id="showfiles_download_file_pkg0_1rel0_4" class="sfx_qalogger_element sfx_qalogger_clickable" href="http://downloads.sourceforge.net/jboss/jboss-4.0.5.GA.zip?modtime=1161642673&#38;big_mirror=1">jboss-4.0.5.GA.zip</a> também pode utilizar outra versão ( 4.2.2 ou outra ) e demonstrarei como configura-lo em um ambiente de desenvolvimento. <em>( Esse tutorial não tem como objetivo configurar um servidor de produção )</em></p>
<p>O Jboss assim como a maioria dos aplicativos java só necessita o descompactamento e está pronto para utilizar</p>
<ol>
<li>Faça o download de <a href="http://www.jboss.org/jbossas/downloads/">http://www.jboss.org/jbossas/downloads/</a></li>
<li>Descompacte-o</li>
<li>Mova para um lugar de sua preferencia (no linux normalmente para /usr/lib/jboss4 no windows por ser em c:/jboss4).</li>
<li>para testar entre na pasta /usr/lib/jboss4/bin/  (caso linux) e execute o comando<br />
$ <em>./run.sh</em><br />
ou execute o arquivo run.bat caso no windows</li>
<li>caso run.sh não tenha permissão de execução (bash: ./run.sh: Permissão negada) execute o comando como root:<br />
# chmod +x run.sh</li>
<li>Quando aparecer uma linha de texto no terminal similar a:<br />
[Server] JBoss (MX MicroKernel) [4.2.1.GA] Started in 11s:198ms<br />
o servidor terá executado com sucesso.</li>
<li>teste abrindo em seu navegador: http://localhost:8080</li>
</ol>
<p>Com o jboss devidamente instalado vamos adiciona-lo no RHDS / Eclipse:</p>
<ul>
<li>Em uma nova instalação do RHDS ou em um workspace novo, recomendo remover o servidor que o RHDS instalou automaticamente e reiniciar o RHDS, pois ele gera alguns bugs.</li>
<li>Window &#62; Preferences &#62; Server &#62; Installed Runtimes<br />
<a href="http://webcentro.wordpress.com/files/2008/10/server_tela2.png"><img class="alignnone size-large wp-image-118" title="server_tela2" src="http://webcentro.wordpress.com/files/2008/10/server_tela2.png?w=450" alt="" width="450" height="322" /></a></li>
<li>Clique em Add...</li>
<li>Selecione a versão do Jboss na qual você deseja configurar, e marque a opção "Also create a new local server", dessa forma ele adicionará automaticamente o servidor na aba Server.<br />
clique em Next<br />
<a href="http://webcentro.wordpress.com/files/2008/10/server_tela3.png"><img class="alignnone size-full wp-image-119" title="server_tela3" src="http://webcentro.wordpress.com/files/2008/10/server_tela3.png" alt="" width="440" height="455" /></a></li>
<li>Em Home Directory localize a raiz do Jboss que você instalou, /usr/lib/jboss4 no nosso exemplo, configuration deixe Default selecionado:<br />
Clique em Next<br />
<a href="http://webcentro.wordpress.com/files/2008/10/server_tela4.png"><img class="alignnone size-full wp-image-120" title="server_tela4" src="http://webcentro.wordpress.com/files/2008/10/server_tela4.png" alt="" width="442" height="599" /></a></li>
<li>Finish</li>
</ul>
<p>A pasta default que são feitos os deploys é %raiz do jboss%/server/default/deploy/ quando publicar algum projeto certifique-se que nessa pasta é criado um arquivo chamado nome_do_projeto.war e se dentro dele estão todos os arquivos necessários para o funcionamento do mesmo.</p>
<p>Dicas:</p>
<ul>
<li>Em geral o Eclipse (base do RHDS) é bem instavel, algumas vezes é necessário remover o servidor e adicionar novamente, muitas vezes também o workspace pode esta bugado, sendo necessário remover o mesmo e começar a configurar todos os projetos denovo (palavra de alguem que sofreu bastante com coisas do tipo)</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Criando um simples projeto web com Struts no RHDS]]></title>
<link>http://webcentro.wordpress.com/?p=106</link>
<pubDate>Thu, 09 Oct 2008 03:18:48 +0000</pubDate>
<dc:creator>webcentro</dc:creator>
<guid>http://webcentro.pl.wordpress.com/2008/10/09/criando-um-simples-projeto-web-com-struts-no-rhds/</guid>
<description><![CDATA[Retificando: De preferencia instale você mesmo o Jboss, como demonstrado no artigo  http://www.web]]></description>
<content:encoded><![CDATA[<p><em>Retificando: De preferencia instale você mesmo o Jboss, como demonstrado no artigo  <a href="http://www.webcentro.com.br/2008/10/09/configurar-jboss-no-linux-incluir-no-rhds/">http://www.webcentro.com.br/2008/10/09/configurar-jboss-no-linux-incluir-no-rhds/</a> pois a versão instalada pelo RHDS gera muitos problemas.</em></p>
<p>Nesse artigo quero mostar como criar um projeto web utilizando Struts no Red Hat Developer Studio, caso você não o tenha baixado veja o artigo: <a href="http://webcentro.wordpress.com/2008/09/18/rhds-red-hat-developer-studio-download/">http://webcentro.wordpress.com/2008/09/18/rhds-red-hat-developer-studio-download/</a></p>
<p>Utilizarei o nome de projeto de academico_secretaria, mudem para o nome do projeto de vocês ou nomeiem como teste. Vamos aos passos:</p>
<ul>
<li>Selecione a perspectiva Web Development Perpective: <em><br />
Window &#62; Open Perspective &#62; Other &#62; Web Development Perpective</em></li>
<li><em>File &#62; new &#62; Struts Project</em></li>
<li>Preencha os dados em tela, onde diz Template selecione o único existente: KickStart e clique em Next<br />
<a href="http://webcentro.wordpress.com/files/2008/10/struts_tela13.png"><img class="alignnone size-large wp-image-113" title="struts_tela13" src="http://webcentro.wordpress.com/files/2008/10/struts_tela13.png?w=450" alt="" width="450" height="408" /></a></li>
<li>Nesse passo é muito importante que você selecione <strong>Servlet Version 2.4</strong> (as versões 2.3 e 2.5 parecem não dar suporte a Expression Language), caso não exista um servidor (recomendo o jboss, alem de que este é instalado automaticamente durante a configuração do RHDS, senão instale ), clique em next<br />
<a href="http://webcentro.wordpress.com/files/2008/10/struts_tela2.png"><img class="alignnone size-large wp-image-108" title="struts_tela2" src="http://webcentro.wordpress.com/files/2008/10/struts_tela2.png?w=450" alt="" width="450" height="408" /></a></li>
<li>Marque todas as opções, ainda não tive a oportunidade de testar as configurações destes tld's mas marque de qualquer jeito, clique em Finish<br />
<a href="http://webcentro.wordpress.com/files/2008/10/struts_tela3.png"><img class="alignnone size-large wp-image-109" title="struts_tela3" src="http://webcentro.wordpress.com/files/2008/10/struts_tela3.png?w=450" alt="" width="450" height="408" /></a></li>
</ul>
<p>Pronto, seu projeto está criado, vamos realizar o Deploy:</p>
<ul>
<li>Clique na aba Server, caso ela não esteja aparecendo, clique em Window &#62; Show View &#62; Other &#62; Server<br />
<a href="http://webcentro.wordpress.com/files/2008/10/server_tela1.png"><img class="alignnone size-large wp-image-110" title="server_tela1" src="http://webcentro.wordpress.com/files/2008/10/server_tela1.png?w=450" alt="" width="450" height="203" /></a></li>
<li>Observe que o projeto já se encontra selecionado para Publicação no server, caso não esteja, clique com o botão direito sobre o servidor &#62; Add and Remove Projects (veja Dicas mais abaixo).</li>
<li>Clique no botão verde com o simbolo de play para iniciar o servidor. Todas vez que você efetuar uma alteração o RHDS automaticamente fará hot deploy, porém isso é configuravel (dando clique duplo no server) e as vezes não é totalmente seguro que atualizará, você também pode efetuar um deploy clicando no icone mais a direita.</li>
</ul>
<p>Agora que publicamos o projeto, vamos vizualiza-lo:</p>
<ul>
<li>Abra o seguinte endereço em seu navegador: http://localhost:8080/academico_secretaria<br />
<a href="http://webcentro.wordpress.com/files/2008/10/web_tela1.png"><img class="alignnone size-full wp-image-114" title="web_tela1" src="http://webcentro.wordpress.com/files/2008/10/web_tela1.png" alt="" width="360" height="148" /></a></li>
</ul>
<p><em><strong>Dicas:</strong></em></p>
<ul>
<li>No linux, caso você encontre problemas ao dar deploy é por que você não tem permissão de escrita na pasta do servidor, execute o seguinte comando como root:<br />
# chmod -R 777 /usr/local/rhdevstudio/</li>
<li>Se o Deploy não funcionar e no console exibir o seguinte erro: "Unable to process deployment descriptor for context 'null'", remova o Jboss configurado clicando com o botão direito &#62; delete, e configure como explicado no seguinte artigo: <a href="http://webcentro.wordpress.com/2008/10/09/configurar-jboss-no-linux-incluir-no-rhds/">http://webcentro.wordpress.com/2008/10/09/configurar-jboss-no-linux-incluir-no-rhds/</a></li>
<li>Algumas vezes os deploys não são efetivos para resolver você pode:  Clicar com o botão direto &#62; Clean ou Remover o projeto e adicionar novamente ou reiniciar o servidor.</li>
<li>Sempre olhe a aba Console para visualizar algum possivel erro.</li>
<li>Clicando duas vezes sobre o Server você abre as opções de configuração, clique em Automatic Publishing e marque Never publish automatically, para somente fazer deploy quando você desejar.</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to discover the command line that eclipse generates to run a junit test]]></title>
<link>http://lezz.wordpress.com/?p=59</link>
<pubDate>Wed, 08 Oct 2008 20:48:00 +0000</pubDate>
<dc:creator>lezz</dc:creator>
<guid>http://lezz.pl.wordpress.com/2008/10/08/how-to-discover-the-command-line-that-eclipse-generates-to-run-a-junit-test/</guid>
<description><![CDATA[At my work I needed to execute a bunch of unit tests, but only knew how to launch them inside eclips]]></description>
<content:encoded><![CDATA[<p>At my work I needed to execute a bunch of unit tests, but only knew how to launch them inside eclipse. Asking at #eclipse in freenode.org  the following guys answered my question :D</p>
<p>-----------------------------------------------------------------------------------------</p>
<p>17:18 &#60; CodeNinja&#62; launch the junit test, then in the Debug view, right click on the<br />
process and go to properties.<br />
17:19 &#60; CodeNinja&#62; the process should have an icon that looks like a computer with a<br />
green triangle and a path to the executable<br />
17:20 &#60; rcjsuen&#62; sounds like you want ~debug-command<br />
17:20 &#60; KOS-MOS&#62; Need to find out what the command line invocation was for a process launched by<br />
Eclipse? See here -<br />
http://wiki.eclipse.org/Graphical_Eclipse_FAQs#How_do_I_check_for_the_command_line_invocation_that_Eclipse_used_to_launch_an_application.3F<br />
---------------------------------------------------------------------------------------</p>
<p>The next step is to incorporate the command line and run it from my shell script ;-)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Complete Review of The Twilight Saga by Stephenie Meyer]]></title>
<link>http://katherineblake.wordpress.com/?p=3</link>
<pubDate>Wed, 08 Oct 2008 18:04:47 +0000</pubDate>
<dc:creator>katherineblake</dc:creator>
<guid>http://katherineblake.pl.wordpress.com/2008/10/08/complete-review-of-the-twilight-saga-by-stephenie-meyer/</guid>
<description><![CDATA[I owe a lot of thanks to Stephenie Meyer. After reading her first offing, Twilight, I felt compelled]]></description>
<content:encoded><![CDATA[<p>I owe a lot of thanks to Stephenie Meyer. After reading her first offing, Twilight, I felt compelled to write my own novel, which landed me the literary representation of a top London agent. Similarly, I admired her personal aims in life too; happily married with a brood of kids.</p>
<p>Since reading her debut  novel my life has changed, not only with regards to my writing career but also, personal too. My boyfriend (whom I've been with for nine months but who I feel like I've known for years) came along, or should I say, I came banging on his door in response to an advertisement for a flatmate...(the other kind of "banging" came months later after a strong friendship and romance blossomed!) So it seems only right that my first blog is a review of the series of books that started it all...</p>
<p>I read Twilight last summer and absolutely adored it; the rainy Forks location, the vampires and Bella and Edward's developing relationship. This gorgeous book makes you, as the reader, feel in love. At the time I was single and I revelled in the character's ecstatic passionate feelings and the tumultuous drama that accompanied their forbidden, sexually tense romance. I read the book quickly, not so quick that you feel cheated but fast enough that the beautiful writing and driven (yet paced) plot compelled you to pick it up again and delve in for another hour's reading.</p>
<p>The sequel, New Moon was equally impressive plunging into the heartbreaking side of love; the depressive anguish felt when you are parted from your beloved. Interestingly, the friendship with Jacob Black was the most wonderful part of this book (and I'll let you know that I'm always rooting for the underdog - werewolf pun not intended).</p>
<p>Eclipse, however, superseded them both with an amazing plot line and truly memorable scenes - particularly the tent scene with Edward, Bella and Jacob - which sticks in my mind as clear as if I'd read it yesterday.</p>
<p>The fourth installment, Breaking Dawn, sadly disappointed. The first two hundred pages could've been edited down to 70 or so and the ties at the end - especially the ludicrous ending for Jacob! - left me feeling unsatisfied. As the final novel in the series, it ended on a rather odd denouement, not the giant action scene that the reader has been preparing for during the whole mammoth doorstop of a book. Personally, and it's being harsh on my idol, but as a reader I'd leave Breaking Dawn alone, and finish the saga on a high note, the more succinct third installment, Eclipse!</p>
<p>Lastly, for Mrs Meyer, I'd like to acknowledge the sad outcome of her leaked book, Midnight Sun, which was posted on the web when it was a half-finished draft. As a writer, I sympathize wholeheartedly with the situation and hope she can continue to write it, rather than shelving it, as she has indicated on her website.</p>
<p>P.S. The film version of Twilight has been made and is being released on the 21st of November. After seeing clips and a trailer I'm not holding my breath for the perfect movie version. They obviously don't resemble how I pictured them in my imagination or how Stephenie Meyer envisioned in her "dream cast" which I felt would have been great choices but sadly many of her favourite actors were too old to play the parts. From the preview clips, it looks a little cheap in my opinion and may be set to be a B movie style-wise rather than a blockbuster... but I shall reserve judgement until I've seen it (even though my head is telling me <em>but the books are always better</em>!!!) We'll see, and in the meantime if you haven't read Twilight and the following books (particularly if you are a girl aged between 13-25) then I think you'll love them! All together I highly recommend Twilight, New Moon and Eclipse! Go read!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Books Galore : Twilight Series]]></title>
<link>http://crazytolits.wordpress.com/?p=64</link>
<pubDate>Wed, 08 Oct 2008 04:53:43 +0000</pubDate>
<dc:creator>crazytolits</dc:creator>
<guid>http://crazytolits.pl.wordpress.com/2008/10/08/books-galore-twilight-series/</guid>
<description><![CDATA[Isabella &#8220;Bella&#8221; Swan moves from sunny Phoenix, Arizona to rainy Forks, Washington to li]]></description>
<content:encoded><![CDATA[<p><a title="Bella Swan" href="http://en.wikipedia.org/wiki/Bella_Swan">Isabella "Bella" Swan</a> moves from sunny <a title="Phoenix, Arizona" href="http://en.wikipedia.org/wiki/Phoenix,_Arizona">Phoenix, Arizona</a> to rainy <a title="Forks, Washington" href="http://en.wikipedia.org/wiki/Forks,_Washington">Forks, Washington</a> to live with her father, <a class="mw-redirect" title="Charlie Swan (Twilight)" href="http://en.wikipedia.org/wiki/Charlie_Swan_%28Twilight%29">Charlie</a>. She chooses to do this so that her mother, Renée, can travel with her new husband, Phil Dwyer, who is a minor league baseball player. In Phoenix she was a bit of an outcast, so it surprises her that she attracts much attention at her new school and is quickly befriended by several students. Much to her dismay, several boys in the school, namely Mike Newton and Eric Yorkie, compete for shy Bella's attention.</p>
<p>When Bella sits next to <a title="Edward Cullen (Twilight)" href="http://en.wikipedia.org/wiki/Edward_Cullen_%28Twilight%29">Edward Cullen</a> in class on her first day of school, Edward seems utterly repulsed by her. He even attempts to change his schedule to avoid her, leaving Bella completely puzzled about his attitude towards her. After tricking a family friend, <a title="Jacob Black" href="http://en.wikipedia.org/wiki/Jacob_Black">Jacob Black</a> of the <a class="mw-redirect" title="Quileute" href="http://en.wikipedia.org/wiki/Quileute">Quileute</a> tribe, into telling her the local tribal legends, Bella concludes that Edward and his family are <a class="mw-redirect" title="Vampires" href="http://en.wikipedia.org/wiki/Vampires">vampires</a>. Although she was inexplicably attracted to him even when she thought Edward drank human blood, she is much relieved to learn that the Cullens choose to abstain from drinking human blood, and drink animal blood instead. Over time, Edward and Bella fall in love. Their foremost problem is that to Edward, Bella's scent is a hundred times more potent than any other human's, making Edward struggle to resist his desire to kill her. However, despite this, Edward and Bella manage to stay together safely for a time.</p>
<p>The seemingly perfect state of their relationship is thrown into chaos when another vampire coven sweeps into Forks and <a class="mw-redirect" title="Minor characters in Twilight" href="http://en.wikipedia.org/wiki/Minor_characters_in_Twilight#James">James</a>, a tracker vampire, decides that he wants to hunt Bella for sport. The Cullens plan to distract the tracker by splitting up Bella and Edward, and Bella is sent to hide in a hotel in Phoenix. Bella then gets a phone call from James in which he says that he has her mother, and Bella is forced to give herself up to James at her old dance studio, where he attacks her. Edward, along with the rest of the Cullen family, rescue Bella before James can kill her. Once they realize that James had bitten Bella's hand, Edward sucks the venom out of her system before it can spread and change her into a vampire. Upon returning to Forks, Bella and Edward attend their prom and Bella expresses her desire to become a vampire, which Edward refuses to let happen.</p>
<p>******************************************************************************************************************</p>
<p>The book 1 of this series will be in theaters this November 2008. This is a movie to anticipate and a recommend for those who love stories about vampires.</p>
<p>I am including links to the eBooks in .pdf format itself if you opt to read this one before watching...Enjoy!!!</p>
<p>Book 1 : Twilight - http://rapidshare.com/files/150970754/Stephenie_Meyer___Twilight.rar</p>
<p>Book 2 : New Moon - http://rapidshare.com/files/150970756/Stephenie_Meyer__New_Moon.rar</p>
<p>Book 3 : Eclipse - http://rapidshare.com/files/150970755/Stephenie_Meyer___Eclipse.rar</p>
<p>Book 4 : Breaking Dawn - http://rapidshare.com/files/150970758/Stephenie_Meyer___Breaking_Dawn.rar</p>
<p>This is a bonus book which is book 1 in Edward Cullen's perspective :</p>
<p>http://rapidshare.com/files/150970759/Stephenie_Meyer__Midnight_Sun.rar</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[We got a new dryer and a new about page]]></title>
<link>http://keithandamanda.wordpress.com/?p=121</link>
<pubDate>Wed, 08 Oct 2008 02:30:33 +0000</pubDate>
<dc:creator>keithandamanda</dc:creator>
<guid>http://keithandamanda.net/2008/10/08/we-got-a-new-dryer-and-a-new-about-page/</guid>
<description><![CDATA[Ok&#8230; I finally updated the About page. I really meant to do it over the weekend, but the weeken]]></description>
<content:encoded><![CDATA[<p>Ok... I finally updated the About page. I really meant to do it over the weekend, but the weekend turned out to be crazy busy. I had reserved Sunday to tie up a lot of loose ends, but it turned out that we had to buy a new dryer on Sunday. Have you ever tried to buy a new dryer in one day? I'll keep the story short and just say that it was a harrowing experience in which Keith and I visited two different Home Depot's and Lowe's before finally purchasing one at Sam's. SAM'S! I have a newfound love for that place and the nice man who helped us. Home Depot, on the other hand, will not be seeing me anytime soon. Their customer service is non-existent. Anyhow, I'm a happy person now that my clothes are clean and dry. :)</p>
<p>P.S.: I'm about 200 pages into <em>Eclipse</em>, the third book in the Twilight saga. It's so good!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Móvil conceptual Bend Mobile]]></title>
<link>http://thcc08.wordpress.com/?p=835</link>
<pubDate>Wed, 08 Oct 2008 01:21:55 +0000</pubDate>
<dc:creator>ysban09</dc:creator>
<guid>http://thcc08.pl.wordpress.com/2008/10/08/movil-conceptual-bend-mobile/</guid>
<description><![CDATA[



El Bend Mobile es un prototipo de móvil,  cuya principal característica es su diseño. Cuenta ]]></description>
<content:encoded><![CDATA[<p><span style="color:#0000ee;text-decoration:underline;"><br />
</span></p>
<div>
<p align="center"><img src="http://www.movitelia.com/wp-content/uploads/2008/10/bend-mobile.jpg" alt="bend-mobile.jpg" /></p>
<p>El <strong>Bend Mobile</strong> es un <strong>prototipo</strong> de móvil,  cuya principal característica es su diseño. Cuenta con <strong>2 pantalla, una  de ellas deslizante, que te ayudaría a visualizar mejor los vídeos y a tener que  desplazar menos la pantalla, una vez que estás navegando por la  red</strong>.</p>
<p align="center"><img src="http://www.movitelia.com/wp-content/uploads/2008/10/bend-mobile-2.jpg" alt="bend-mobile-2.jpg" /></p>
<p>También cuenta con una <strong>cámara de fotos de 7 Mpx con flash y  deslizante al mismo tiempo</strong>. No podía faltar, que la <strong>pantalla  fuese táctil</strong>, con lo que ahorramos espacio en el hardware y disponemos  de teclado virtual.</p>
<p>En los laterales dispondríamos los controles de la cámara como pueden ser el  botón de disparo y controles del zoom y unos altavoces, para escuchar la música  o los diálogos de las películas. Como ya supondrás, al ser un prototipo, no  tiene precio, pero interesante concepto del diseñador <strong>Andy  Kurovets</strong>.</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing SQL Explorer Eclipse plug-in In Ganymede]]></title>
<link>http://tombrander.wordpress.com/?p=87</link>
<pubDate>Tue, 07 Oct 2008 17:10:22 +0000</pubDate>
<dc:creator>tbrander</dc:creator>
<guid>http://tombrander.pl.wordpress.com/2008/10/07/installing-sql-explorer-eclipse-plug-in-in-ganymede/</guid>
<description><![CDATA[Installing SQL Explorer Eclipse plug-in Using auto Update: Hat tip to 5thcross.wordpress.com.  I no]]></description>
<content:encoded><![CDATA[<p>Installing <a href="http://eclipsesql.sourceforge.net/" target="_blank">SQL Explorer Eclipse plug</a>-in Using auto Update: Hat tip to <a href="http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/" target="_blank">5thcross.wordpress.com</a>.  I noticed this set of instructions had not been updated for a while but they worked like a charm. The tool seems to have picked up some support recently and may be a good addition to your toolbox. Paticularly since the Data Tools Platform Eclipse component still seems to have a way to go. I'll be trying to use this along side Birt for report wrting to edit the underlying queries... we'll see. These instructions are lifted verbatum, they work. With Eclipse 3.41 and <a href="http://eclipsesql.sourceforge.net/" target="_blank">SQL Explorer version 3.5.0.RC6</a></p>
<blockquote>
<ul>
<li class="MsoNormal">From the Eclipse menu,<br />
select Help-&#62;Software Update-&#62;Find and Install. You will be<br />
displayed with a Install/Update dialog box.</li>
<li class="MsoNormal">Select Search for new<br />
features to install radio button &#38; click next.</li>
<li class="MsoNormal">Click on the New Remote<br />
Site on the right hand side of the Install dialog box</li>
<li class="MsoNormal">Enter the name as “SQL<br />
Explorer” &#38; “http://eclipsesql.sourceforge.net/” (without quotes) for<br />
the url in the New Update Site dialog box and click ok.</li>
<li class="MsoNormal">Select the SQL Explorer<br />
site in the Install dialog box and click finish.</li>
<li class="MsoNormal">Once the search is<br />
finished, it will present with the features to install.</li>
<li class="MsoNormal">Select the features you<br />
want to install. In this case select SQL Explorer branch &#38; click next.</li>
<li class="MsoNormal">Accept the license<br />
agreement &#38; click next.</li>
<li class="MsoNormal">Select the install location<br />
where you want to install this plug-in. By default it will be installed<br />
into the eclipse plug-in directory. If you want to add another location<br />
click on the change location button on the lower right hand corner and<br />
specify the directory where you want to install. Once you are finished<br />
with the selections click on finish button.</li>
</ul>
</blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ordeal's Movie Manager RCP(Part1)]]></title>
<link>http://ordeal.wordpress.com/?p=36</link>
<pubDate>Tue, 07 Oct 2008 16:23:44 +0000</pubDate>
<dc:creator>ordeal</dc:creator>
<guid>http://ordeal.pl.wordpress.com/2008/10/07/ordeals-movie-manager-rcppart1/</guid>
<description><![CDATA[Per farmi perdonare la lunga assenza da questo blog, ho deciso di implementare e commentare qui un e]]></description>
<content:encoded><![CDATA[<p>Per farmi perdonare la lunga assenza da questo blog, ho deciso di implementare e commentare qui un esempio di RCP, ovvero  una <a href="http://en.wikipedia.org/wiki/Rich_Client_Platform">Rich Client Platform</a>, un tipo di applicativo sviluppato in Java che fa uso di un set minimale di plug-ins Eclipse.</p>
<p>Innanzitutto dovete avere installato l'IDE Eclipse, che trovate <a href="http://www.eclipse.org/">qui</a>.<br />
Una volta installato l'IDE, procedete alla creazione del progetto da File-&#62;New-&#62;Project-&#62;Plug-in Project, cliccando su "Yes" alla domanda "Would you like to create a rich client application ?".<br />
A questo punto dovete selezionare un template, possibilmente minimale, da cui partire, come Hello RCP.<br />
Quello che a questo punto vi si presenta tra i sorgenti è:</p>
<ul>
<li>La classe Activator, che controlla il ciclo di vita del plug-in (in particolare date un'occhiata ai metodi start() e stop()</li>
<li>La classe Application, che sostanzialmente ha due metodi start() e stop(), che riguardano l'istanziazione dell'oggetto Display (un'interfaccia al dispositivo vero e proprio) , e del Workbench, ovvero di quel set di plug-ins che l'applicazione si "porta dietro", che sono in buona parte un sottoinsieme dei plug-ins che troviamo anche nell'IDE Eclipse.</li>
</ul>
<ul>
<li>Le classi ApplicationActionBarAdvisor, ApplicationWorkbenchAdvisor, ApplicationWorkbenchWindowAdvisor, necessarie alla creazione della finestra principale, della Prospettiva su cui le nostre Viste andranno situate, delle barre, e all'esecuzione precedente alla creazione della finestra di metodi che devono essere eseguiti allo start-up dell'applicazione.</li>
</ul>
<ul>
<li>La classe Perspective, in cui viene deciso il layout delle cosidette "Viste" che stiamo per creare.</li>
</ul>
<p>Adesso parliamo del target dell'applicazione.<br />
L'idea nasce dalla necessità di creare un'interfaccia semplice e custom ad una relazione di un Database, utilizzata per catalogare dei titoli di films.<br />
I campi di questa tabella sono:</p>
<p>[sourcecode language='sql']</p>
<p>create table omm_movies (<br />
  Titolo character(100) not null default 'Titolo',<br />
  Anno numeric(4) not null default '2007',<br />
  NumDVD numeric(4) ,<br />
  DivX boolean,<br />
  GiaVisto boolean,<br />
  Regista char(150) default null,<br />
  MOVIE_ID numeric ,<br />
  primary key(MOVIE_ID)<br />
);</p>
<p>[/sourcecode]</p>
<p>In particolare il campo  NumDVD specifica in quale DVD del vostro scaffale/cassetto è collocato il film, il campo MOVIE_ID invece è un ID incrementale associato ad una sequenza che vedremo creata nel codice stesso.<br />
Le funzionalità da implementare sono: ricerca per titolo, inserimento del titolo e cancellazione.<br />
Vedremo nella prossima puntata come implementare la pagina relativa alla ricerca per titolo.</p>
<p>Intanto vi linko da subito eseguibili e sorgenti per <a href="http://www.mediafire.com/?gzgyx2onnjm">Win32</a> e per <a href="http://www.mediafire.com/?9jxwdeim09o">GNU/Linux@x86.</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Série: Twilight (Stephenie Meyer)]]></title>
<link>http://battlenerds.wordpress.com/?p=1805</link>
<pubDate>Tue, 07 Oct 2008 12:13:32 +0000</pubDate>
<dc:creator>feanari</dc:creator>
<guid>http://battlenerds.pl.wordpress.com/2008/10/07/serie-twilight-stephenie-meyer/</guid>
<description><![CDATA[
Discuta este post no Fórum Omega Geek
Se você é que nem eu, que só pega a Veja, a Época e qual]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://battlenerds.files.wordpress.com/2008/08/banner_literatura.png" alt="" width="448" height="150" /></p>
<p style="text-align:center;"><a title="OMG" href="http://forum.omegageek.com.br/showthread.php?p=38390#post38390" target="_blank">Discuta este post no Fórum Omega Geek</a></p>
<p>Se você é que nem eu, que só pega a Veja, a Época e qualquer outra revista semanal que os seus pais assinam, para ver a lista dos livros mais vendidos (ficção por favor, nada de auto-ajuda hoje), então você com certeza notou que dois dos livros mais vendidos desta semana são de autoria de Stephenie Meyer:</p>
<dl class="wp-caption aligncenter">
<dt class="wp-caption-dt"></dt>
<dt class="wp-caption-dt"><a href="http://battlenerds.wordpress.com/files/2008/10/stephanie_meyerel.jpg"><img class="size-full wp-image-1806" title="Stephenie Meyer" src="http://battlenerds.wordpress.com/files/2008/10/stephanie_meyerel.jpg" alt="Autora \o/" width="260" height="320" /></a></dt>
</dl>
<p>Ela escreveu os quatro livros da série "Twilight", o mais novo "fenômeno literário". Sério, estão falando que essa mulher ganha da J. K. Rowling (para pessoas que chegaram agora na Terra, autora da série Harry Potter). Mas o que a série dela tem de tão mágico?</p>
<p>Acompanhamos Bella Swan, moça de 17 anos, recém-chegada à cidade onde seu pai mora, Forks, no gelado estado de Washington (não confundir com a capital dos EUA... esse Washington é na costa oeste, perto de Seattle), tem a chance de mudar tudo que menos gosta em si mesma. Na escola nova, imediatamente chama a atenção de todos, por seu jeito ensolarado (ela era do Texas). Sua atenção, no entanto, é direcionada a um grupo de pessoas incrivelmente belas, membros da família do médico local: os Cullen.</p>
<p>Num passeio com os amigos da escola, Bella descobre que os Cullen são, na verdade, vampiros. Nessa série, o sobrenatural está sempre a um passo de Bella, e cada livro traz mais e mais novidades.</p>
<p>Não tem como falar muito mais sem spoilar... =P. O negócio é pegar os livros e ler... Seja porque você gosta de aventura e romance, seja porque quer saber o que desbancou JK Rowling.</p>
<p>A série foi traduzida para 38 idiomas, e o Brasil não ficou de fora: aqui a série está sendo lançada pela editora Intrinseca, a qual já liberou os primeiros dois da série: Crepúsculo e Lua Nova. Os outros dois (Eclipse e Breaking Dawn) estão por vir.</p>
[caption id="attachment_1807" align="aligncenter" width="300" caption="Crepúsculo, Lua Nova, Eclipse e Breaking Dawn"]<a href="http://battlenerds.wordpress.com/files/2008/10/twilight-series-covers-twilight-series-1381301-956-360.jpg"><img class="size-medium wp-image-1807" title="Capa dos livros" src="http://battlenerds.wordpress.com/files/2008/10/twilight-series-covers-twilight-series-1381301-956-360.jpg?w=300" alt="Crepúsculo, Lua Nova, Eclipse e Breaking Dawn" width="300" height="112" /></a>[/caption]
<p>Logo veremos o primeiro livro nas telonas... Crepúsculo virou filme. Lançamento aqui previsto para 19 de dezembro. Os fãs de Harry Potter vão reconhecer o Cedrico (Robert Pattinson) na pele de Edward Cullen.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Working With Enterprise Integration Patterns]]></title>
<link>http://oisinh.wordpress.com/?p=17</link>
<pubDate>Tue, 07 Oct 2008 10:04:59 +0000</pubDate>
<dc:creator>oisinhurley</dc:creator>
<guid>http://oisinh.pl.wordpress.com/2008/10/07/working-with-enterprise-integration-patterns/</guid>
<description><![CDATA[Thanks to Enterprise Integration Patterns, architects have a clear and succinct way to describe inte]]></description>
<content:encoded><![CDATA[<p>Thanks to <a href="http://www.enterpriseintegrationpatterns.com/">Enterprise Integration Patterns</a>, architects have a clear and succinct way to describe integration within complex systems. It certainly beats a lot of MS-Word documents and monster integration architecture diagrams. And, with <a href="http://activemq.apache.org/camel">Apache Camel</a>, we've got an open source runtime that allows us to create routes by chaining EIPs together, using Spring XML or Java fluent builders. That's fantastic, but EIPs are as much about sharing pictures as creating message routing graphs, and where are the pictures?  </p>
<p>We've made some tools that will allow you to load up Camel Spring XML files into Eclipse for visual inspection and editing. You can also create EIP diagrams in your Workbench and save them as Camel configurations. Finally, we've put in some debugging capabilities to allow you trace through the paths a message will take through your EIP graph.  </p>
<p>We are earnestly seeking feedback - check out the <a href="http://open.iona.com/products/fuse-integration-designer/#documentation">FUSE Integration Designer Preview page</a> to download the Eclipse plugins, or check out the video links under the <strong>Training Videos</strong> at the bottom of the page.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[NEW TWILIGHT POSTER]]></title>
<link>http://sweettangerine50.wordpress.com/?p=292</link>
<pubDate>Tue, 07 Oct 2008 01:37:55 +0000</pubDate>
<dc:creator>sweettangerine50</dc:creator>
<guid>http://sweettangerine50.pl.wordpress.com/2008/10/06/new-twilight-poster/</guid>
<description><![CDATA[A new movie poster for Twilight has been released.
I think Kristen&#8217;s lips are too pink, but I ]]></description>
<content:encoded><![CDATA[<p style="text-align:center;">A new movie poster for Twilight has been released.<br />
I think Kristen's lips are too pink, but I like the poster overall.</p>
<p style="text-align:center;"> <a href="http://sweettangerine50.files.wordpress.com/2008/10/poster81.jpg"><img class="aligncenter size-large wp-image-298" title="New Twilight Poster" src="http://sweettangerine50.wordpress.com/files/2008/10/poster81.jpg?w=497" alt="" width="497" height="767" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
