como assim versao 35?? vc tem que dar update primeiro pra dps dar commit<br><br><div class="gmail_quote">2010/5/25  <span dir="ltr">&lt;<a href="mailto:squeak-dev-noreply@lists.squeakfoundation.org">squeak-dev-noreply@lists.squeakfoundation.org</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Tiago N B uploaded a new version of poo2010 to project poo2010:<br>
<a href="http://www.squeaksource.com/poo2010/poo2010-tiago.35.mcz" target="_blank">http://www.squeaksource.com/poo2010/poo2010-tiago.35.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: poo2010-tiago.35<br>
Author: tiago<br>
Time: 25 May 2010, 8:58:26 pm<br>
UUID: 2506371d-102d-4762-9117-17a7d388b4da<br>
Ancestors: poo2010-tiago.34<br>
<br>
comecando com o seaside<br>
<br>
=============== Diff against poo2010-tiago.34 ===============<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;id: (in category &#39;accessing&#39;) -----<br>
+ id: anObject<br>
+       &quot;Set the value of id&quot;<br>
+<br>
+       id := anObject!<br>
<br>
Item was added:<br>
+ WASession subclass: #Sessao<br>
+       instanceVariableNames: &#39;usuario&#39;<br>
+       classVariableNames: &#39;&#39;<br>
+       poolDictionaries: &#39;&#39;<br>
+       category: &#39;poo2010-web&#39;!<br>
<br>
Item was added:<br>
+ ----- Method: Sessao&gt;&gt;isLoggedIn (in category &#39;accessing&#39;) -----<br>
+ isLoggedIn<br>
+<br>
+       ^ self usuario isNil not.!<br>
<br>
Item was added:<br>
+ ----- Method: Sessao&gt;&gt;logout (in category &#39;accessing&#39;) -----<br>
+ logout<br>
+       self usuario: nil.!<br>
<br>
Item was added:<br>
+ ----- Method: Sessao&gt;&gt;usuario: (in category &#39;accessing&#39;) -----<br>
+ usuario: anObject<br>
+       &quot;Set the value of usuario&quot;<br>
+<br>
+       usuario := anObject!<br>
<br>
Item was added:<br>
+ ----- Method: WAEPJogo class&gt;&gt;canBeRoot (in category &#39;as yet unclassified&#39;) -----<br>
+ canBeRoot<br>
+<br>
+       ^true!<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;userName: (in category &#39;accessing&#39;) -----<br>
+ userName: anObject<br>
+       &quot;Set the value of userName&quot;<br>
+<br>
+       userName := anObject!<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;id (in category &#39;accessing&#39;) -----<br>
+ id<br>
+       &quot;Answer the value of id&quot;<br>
+<br>
+       ^ id!<br>
<br>
Item was added:<br>
+ ----- Method: WAEPJogo&gt;&gt;renderContentOn: (in category &#39;as yet unclassified&#39;) -----<br>
+ renderContentOn: html<br>
+<br>
+       html text: &#39;Teste&#39;!<br>
<br>
Item was changed:<br>
  SystemOrganization addCategory: #&#39;poo2010-test&#39;!<br>
  SystemOrganization addCategory: #&#39;poo2010-modificadores&#39;!<br>
  SystemOrganization addCategory: #poo2010!<br>
  SystemOrganization addCategory: #&#39;poo2010-habilidades&#39;!<br>
  SystemOrganization addCategory: #&#39;poo2010-avatares&#39;!<br>
+ SystemOrganization addCategory: #&#39;poo2010-web&#39;!<br>
<br>
Item was added:<br>
+ ----- Method: Sessao&gt;&gt;login: (in category &#39;accessing&#39;) -----<br>
+ login: novoUsuario<br>
+<br>
+       self usuario: novoUsuario.<br>
+<br>
+ !<br>
<br>
Item was added:<br>
+ WAComponent subclass: #WAEPJogo<br>
+       instanceVariableNames: &#39;&#39;<br>
+       classVariableNames: &#39;&#39;<br>
+       poolDictionaries: &#39;&#39;<br>
+       category: &#39;poo2010-web&#39;!<br>
+ WAEPJogo class<br>
+       instanceVariableNames: &#39;canBeRoot&#39;!<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;userName (in category &#39;accessing&#39;) -----<br>
+ userName<br>
+       &quot;Answer the value of userName&quot;<br>
+<br>
+       ^ userName!<br>
<br>
Item was added:<br>
+ ----- Method: TelaDeLogin&gt;&gt;renderContentOn: (in category &#39;as yet unclassified&#39;) -----<br>
+ renderContentOn: html<br>
+<br>
+       html heading: &#39;Tela De Login&#39;.!<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;password (in category &#39;accessing&#39;) -----<br>
+ password<br>
+       &quot;Answer the value of password&quot;<br>
+<br>
+       ^ password!<br>
<br>
Item was added:<br>
+ WAComponent subclass: #TelaDeLogin<br>
+       instanceVariableNames: &#39;&#39;<br>
+       classVariableNames: &#39;&#39;<br>
+       poolDictionaries: &#39;&#39;<br>
+       category: &#39;poo2010-web&#39;!<br>
<br>
Item was changed:<br>
  Object subclass: #Usuario<br>
+       instanceVariableNames: &#39;id userName password&#39;<br>
-       instanceVariableNames: &#39;login senha avatares&#39;<br>
        classVariableNames: &#39;&#39;<br>
        poolDictionaries: &#39;&#39;<br>
+       category: &#39;poo2010-web&#39;!<br>
-       category: &#39;poo2010&#39;!<br>
<br>
  !Usuario commentStamp: &#39;&lt;historical&gt;&#39; prior: 0!<br>
  Usuario do sistema. Um usuario pode ter varios avatares associados a si.!<br>
<br>
Item was added:<br>
+ ----- Method: Usuario&gt;&gt;password: (in category &#39;accessing&#39;) -----<br>
+ password: anObject<br>
+       &quot;Set the value of password&quot;<br>
+<br>
+       password := anObject!<br>
<br>
Item was added:<br>
+ ----- Method: Sessao&gt;&gt;usuario (in category &#39;accessing&#39;) -----<br>
+ usuario<br>
+       &quot;Answer the value of usuario&quot;<br>
+<br>
+       ^ usuario!<br>
<br>
</blockquote></div><br>