<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Facing new challenges everyday</title>
	<atom:link href="http://faces.eti.br/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://faces.eti.br</link>
	<description>This site talks about the many challenges on computer programming.</description>
	<lastBuildDate>Fri, 18 Nov 2011 17:09:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on bodyguard &#8211; Facelets EL functions for Spring Security by Rafael Ponte</title>
		<link>http://faces.eti.br/2008/11/09/bodyguard-facelets-el-functions-for-spring-security/comment-page-1/#comment-25529</link>
		<dc:creator>Rafael Ponte</dc:creator>
		<pubDate>Fri, 18 Nov 2011 17:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=289#comment-25529</guid>
		<description>Hi Rogerio,

For necessity of a project i had to adapt the bodyguard project to work with Spring Security 3.x. You may see the new classe at my Gist, https://gist.github.com/1377051</description>
		<content:encoded><![CDATA[<p>Hi Rogerio,</p>
<p>For necessity of a project i had to adapt the bodyguard project to work with Spring Security 3.x. You may see the new classe at my Gist, <a href="https://gist.github.com/1377051" rel="nofollow">https://gist.github.com/1377051</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Mask to UITextField by Sarah</title>
		<link>http://faces.eti.br/2010/02/19/adding-mask-to-uitextfield/comment-page-1/#comment-25528</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Thu, 03 Nov 2011 09:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1013#comment-25528</guid>
		<description>Thanks for great solution, I needed to use a different mask like the following:
 mask=@&quot;9 (999) 999 99 99&quot; and I was wondering about the changes I need to make to the code.
thanks again,</description>
		<content:encoded><![CDATA[<p>Thanks for great solution, I needed to use a different mask like the following:<br />
 mask=@&#8221;9 (999) 999 99 99&#8243; and I was wondering about the changes I need to make to the code.<br />
thanks again,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Mask to UITextField by Boris</title>
		<link>http://faces.eti.br/2010/02/19/adding-mask-to-uitextfield/comment-page-1/#comment-25527</link>
		<dc:creator>Boris</dc:creator>
		<pubDate>Tue, 01 Nov 2011 19:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1013#comment-25527</guid>
		<description>First of all thanks a lot for this snippet. I ill add a little functionality to work with spaces :

1 - add a flag to the begining of :

- (void)formatInput:(UITextField*)aTextField string:(NSString*)aString range:(NSRange)aRange

ej:
int flag =0;

2.

        if (! [regextest evaluateWithObject:_mask]) {
          set the flag to 1
        flag = 1;

3.
 in the
        if (aRange.location + 1 &lt; [self.mask length]) {

 set the _mask to
   _mask =  (temp ==1) ? [self.mask substringWithRange:NSMakeRange(aRange.location+1, 1)]:[self.mask substringWithRange:NSMakeRange(aRange.location-1, 1)];

First of all thanks a lot for this snippet. I ill add a little functionality to work with spaces :

1 - add a flag to the begining of :

- (void)formatInput:(UITextField*)aTextField string:(NSString*)aString range:(NSRange)aRange

ej:
int flag =0;

2.

        if (! [regextest evaluateWithObject:_mask]) {
          set the flag to 1
        flag = 1;

3.
 in the
        if (aRange.location + 1 &lt; [self.mask length]) {

 set the _mask to
   _mask =  (temp ==1) ? [self.mask substringWithRange:NSMakeRange(aRange.location+1, 1)]:[self.mask substringWithRange:NSMakeRange(aRange.location-1, 1)];

And voila!
works great

And voila!
works great</description>
		<content:encoded><![CDATA[<p>First of all thanks a lot for this snippet. I ill add a little functionality to work with spaces :</p>
<p>1 &#8211; add a flag to the begining of :</p>
<p>- (void)formatInput:(UITextField*)aTextField string:(NSString*)aString range:(NSRange)aRange</p>
<p>ej:<br />
int flag =0;</p>
<p>2.</p>
<p>        if (! [regextest evaluateWithObject:_mask]) {<br />
          set the flag to 1<br />
        flag = 1;</p>
<p>3.<br />
 in the<br />
        if (aRange.location + 1 &lt; [self.mask length]) {</p>
<p> set the _mask to<br />
   _mask =  (temp ==1) ? [self.mask substringWithRange:NSMakeRange(aRange.location+1, 1)]:[self.mask substringWithRange:NSMakeRange(aRange.location-1, 1)];</p>
<p>First of all thanks a lot for this snippet. I ill add a little functionality to work with spaces :</p>
<p>1 &#8211; add a flag to the begining of :</p>
<p>- (void)formatInput:(UITextField*)aTextField string:(NSString*)aString range:(NSRange)aRange</p>
<p>ej:<br />
int flag =0;</p>
<p>2.</p>
<p>        if (! [regextest evaluateWithObject:_mask]) {<br />
          set the flag to 1<br />
        flag = 1;</p>
<p>3.<br />
 in the<br />
        if (aRange.location + 1 &lt; [self.mask length]) {</p>
<p> set the _mask to<br />
   _mask =  (temp ==1) ? [self.mask substringWithRange:NSMakeRange(aRange.location+1, 1)]:[self.mask substringWithRange:NSMakeRange(aRange.location-1, 1)];</p>
<p>And voila!<br />
works great</p>
<p>And voila!<br />
works great</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unrar4iOS &#8211; A port of unrar to iOS platform by Martin</title>
		<link>http://faces.eti.br/2010/11/15/unrar4ios-a-port-of-unrar-to-ios-platform/comment-page-1/#comment-25523</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 21 Sep 2011 22:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1097#comment-25523</guid>
		<description>I find a leak memory with the framework, is very importan because when extract a weight cbr all of these data keep in memory</description>
		<content:encoded><![CDATA[<p>I find a leak memory with the framework, is very importan because when extract a weight cbr all of these data keep in memory</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unrar4iOS &#8211; A port of unrar to iOS platform by rogerio</title>
		<link>http://faces.eti.br/2010/11/15/unrar4ios-a-port-of-unrar-to-ios-platform/comment-page-1/#comment-25509</link>
		<dc:creator>rogerio</dc:creator>
		<pubDate>Mon, 04 Jul 2011 02:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1097#comment-25509</guid>
		<description>I need help from you and the others developers to implement missing features, thanks!</description>
		<content:encoded><![CDATA[<p>I need help from you and the others developers to implement missing features, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting MongoDB running on Solaris 10 by rogerio</title>
		<link>http://faces.eti.br/2009/07/20/getting-mongodb-running-on-solaris-10/comment-page-1/#comment-25504</link>
		<dc:creator>rogerio</dc:creator>
		<pubDate>Sun, 19 Jun 2011 01:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=755#comment-25504</guid>
		<description>Yes, why not? I believe it&#039;s just a matter of GCC avaliability for this processor architecture.</description>
		<content:encoded><![CDATA[<p>Yes, why not? I believe it&#8217;s just a matter of GCC avaliability for this processor architecture.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting MongoDB running on Solaris 10 by Luis Alberto Silva Chavez</title>
		<link>http://faces.eti.br/2009/07/20/getting-mongodb-running-on-solaris-10/comment-page-1/#comment-25503</link>
		<dc:creator>Luis Alberto Silva Chavez</dc:creator>
		<pubDate>Fri, 17 Jun 2011 23:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=755#comment-25503</guid>
		<description>Hi Rogeiro

Do you know if this works with SPARC CPU ?

Thanks in advance

Luis Silva</description>
		<content:encoded><![CDATA[<p>Hi Rogeiro</p>
<p>Do you know if this works with SPARC CPU ?</p>
<p>Thanks in advance</p>
<p>Luis Silva</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facelets EL Functions can save your day by JSF 2 Expression Language Functions &#171; Deevo&#039;s Blog</title>
		<link>http://faces.eti.br/2008/11/02/facelets-el-functions-can-save-your-day/comment-page-1/#comment-25502</link>
		<dc:creator>JSF 2 Expression Language Functions &#171; Deevo&#039;s Blog</dc:creator>
		<pubDate>Tue, 31 May 2011 21:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=279#comment-25502</guid>
		<description>[...] always one to skirt convention I came across this blog post which summarizes nicely how you can create your own JSF 2 Expression Language functions which you [...]</description>
		<content:encoded><![CDATA[<p>[...] always one to skirt convention I came across this blog post which summarizes nicely how you can create your own JSF 2 Expression Language functions which you [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unrar4iOS &#8211; A port of unrar to iOS platform by maxuan</title>
		<link>http://faces.eti.br/2010/11/15/unrar4ios-a-port-of-unrar-to-ios-platform/comment-page-1/#comment-25495</link>
		<dc:creator>maxuan</dc:creator>
		<pubDate>Wed, 04 May 2011 03:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1097#comment-25495</guid>
		<description>Dear, extracting function is not yet complete, and when to achieve?
 &quot;unrarFileTo: (NSString *) path overWrite: (BOOL) overwrite&quot;</description>
		<content:encoded><![CDATA[<p>Dear, extracting function is not yet complete, and when to achieve?<br />
 &#8220;unrarFileTo: (NSString *) path overWrite: (BOOL) overwrite&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unrar4iOS &#8211; A port of unrar to iOS platform by rogerio</title>
		<link>http://faces.eti.br/2010/11/15/unrar4ios-a-port-of-unrar-to-ios-platform/comment-page-1/#comment-25494</link>
		<dc:creator>rogerio</dc:creator>
		<pubDate>Sun, 01 May 2011 17:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://faces.eti.br/?p=1097#comment-25494</guid>
		<description>Fixed and the changes has been pushed to github.</description>
		<content:encoded><![CDATA[<p>Fixed and the changes has been pushed to github.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

