Hi! When I flash a message then redirect, in Chromium, it does not show in my templates. With firefox, it works. Is there any incompatibility between flash and chromium? -- "A arrogância é a arma dos fracos." =========================== Italo Moreira Campelo Maia Bacharel em Ciência da Computação - UECE Desenvolvedor WEB e Desktop (Java, Python, Lua) Coordenador do Pug-CE ----------------------------------------------------- http://www.italomaia.com/ http://twitter.com/italomaia/ http://eusouolobomau.blogspot.com/ ----------------------------------------------------- Turtle Linux 9.10 - http://tiny.cc/blogturtle910 Turtle Linux 10.10 - http://bit.ly/cEw4ET ===========================
flask.flash is not browser specific. What it does is basically store the information that you specify in a session variable and then Flask sets a cookie with that information. With the next request, when get_flashed_messages gets called, it retrieves the information and deletes it from the session. Make sure that your template does not have any CSS error which Chromium is failing on, or, your cookies might be disabled. 2011/9/15 Italo Maia <italo.maia@gmail.com> > Hi! When I flash a message then redirect, in Chromium, it does not show in > my templates. With firefox, it works. Is there any incompatibility between > flash and chromium? > > -- > "A arrogância é a arma dos fracos." > > =========================== > Italo Moreira Campelo Maia > Bacharel em Ciência da Computação - UECE > Desenvolvedor WEB e Desktop (Java, Python, Lua) > Coordenador do Pug-CE > ----------------------------------------------------- > http://www.italomaia.com/ > http://twitter.com/italomaia/ > http://eusouolobomau.blogspot.com/ > ----------------------------------------------------- > Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > Turtle Linux 10.10 - http://bit.ly/cEw4ET > =========================== > -- Regards, Ishbir Singh
Just cornered down the problem. In my configuration, *SERVER_NAME* was set to *"127.0.0.1:5000"* in my local machine. That seems to have caused problems with webkit (opera/chromium) somehow. Firefox did not bother at all with this configuration. Would this be a bug of some sort or just plain incompatibility? 2011/9/15 Ishbir Singh <webmaster@ishbir.com> > flask.flash is not browser specific. What it does is basically store the > information that you specify in a session variable and then Flask sets a > cookie with that information. With the next request, when > get_flashed_messages gets called, it retrieves the information and deletes > it from the session. > > Make sure that your template does not have any CSS error which Chromium is > failing on, or, your cookies might be disabled. > > > 2011/9/15 Italo Maia <italo.maia@gmail.com> > >> Hi! When I flash a message then redirect, in Chromium, it does not show in >> my templates. With firefox, it works. Is there any incompatibility between >> flash and chromium? >> >> -- >> "A arrogância é a arma dos fracos." >> >> =========================== >> Italo Moreira Campelo Maia >> Bacharel em Ciência da Computação - UECE >> Desenvolvedor WEB e Desktop (Java, Python, Lua) >> Coordenador do Pug-CE >> ----------------------------------------------------- >> http://www.italomaia.com/ >> http://twitter.com/italomaia/ >> http://eusouolobomau.blogspot.com/ >> ----------------------------------------------------- >> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >> Turtle Linux 10.10 - http://bit.ly/cEw4ET >> =========================== >> > > > > -- > Regards, > Ishbir Singh > > -- "A arrogância é a arma dos fracos." =========================== Italo Moreira Campelo Maia Bacharel em Ciência da Computação - UECE Desenvolvedor WEB e Desktop (Java, Python, Lua) Coordenador do Pug-CE ----------------------------------------------------- http://www.italomaia.com/ http://twitter.com/italomaia/ http://eusouolobomau.blogspot.com/ ----------------------------------------------------- Turtle Linux 9.10 - http://tiny.cc/blogturtle910 Turtle Linux 10.10 - http://bit.ly/cEw4ET ===========================
Hey, What version of Flask are you using? 0.7.2 or 0.8-dev? If its the previous one, there was a bug with Flask relating to cookies and SERVER_NAME which Armin fixed. I don't know if this affects you or not, try removing SERVER_NAME and upgrading to the development build. Moreover, SERVER_NAME is not really required unless you're gonna be having a single application for various sub-domains. On 16 September 2011 01:37, Italo Maia <italo.maia@gmail.com> wrote: > Just cornered down the problem. In my configuration, *SERVER_NAME* was set > to *"127.0.0.1:5000"* in my local machine. That seems to have caused > problems with webkit (opera/chromium) somehow. Firefox did not bother at all > with this configuration. Would this be a bug of some sort or just plain > incompatibility? > > > 2011/9/15 Ishbir Singh <webmaster@ishbir.com> > >> flask.flash is not browser specific. What it does is basically store the >> information that you specify in a session variable and then Flask sets a >> cookie with that information. With the next request, when >> get_flashed_messages gets called, it retrieves the information and deletes >> it from the session. >> >> Make sure that your template does not have any CSS error which Chromium is >> failing on, or, your cookies might be disabled. >> >> >> 2011/9/15 Italo Maia <italo.maia@gmail.com> >> >>> Hi! When I flash a message then redirect, in Chromium, it does not show >>> in my templates. With firefox, it works. Is there any incompatibility >>> between flash and chromium? >>> >>> -- >>> "A arrogância é a arma dos fracos." >>> >>> =========================== >>> Italo Moreira Campelo Maia >>> Bacharel em Ciência da Computação - UECE >>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>> Coordenador do Pug-CE >>> ----------------------------------------------------- >>> http://www.italomaia.com/ >>> http://twitter.com/italomaia/ >>> http://eusouolobomau.blogspot.com/ >>> ----------------------------------------------------- >>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>> =========================== >>> >> >> >> >> -- >> Regards, >> Ishbir Singh >> >> > > > -- > "A arrogância é a arma dos fracos." > > =========================== > Italo Moreira Campelo Maia > Bacharel em Ciência da Computação - UECE > Desenvolvedor WEB e Desktop (Java, Python, Lua) > Coordenador do Pug-CE > ----------------------------------------------------- > http://www.italomaia.com/ > http://twitter.com/italomaia/ > http://eusouolobomau.blogspot.com/ > ----------------------------------------------------- > Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > Turtle Linux 10.10 - http://bit.ly/cEw4ET > =========================== > -- Regards, Ishbir Singh
I was just "trying" SERVER_NAME out. Version 0.7.2 here, so, that might be it. I commented SERVER_NAME as soon as i tough it might be the problem. In version 0.8 I'll try it again. Thanks. 2011/9/16 Ishbir Singh <webmaster@ishbir.com> > Hey, > > What version of Flask are you using? 0.7.2 or 0.8-dev? If its the previous > one, there was a bug with Flask relating to cookies and SERVER_NAME which > Armin fixed. I don't know if this affects you or not, try removing > SERVER_NAME and upgrading to the development build. > > Moreover, SERVER_NAME is not really required unless you're gonna be having > a single application for various sub-domains. > > > On 16 September 2011 01:37, Italo Maia <italo.maia@gmail.com> wrote: > >> Just cornered down the problem. In my configuration, *SERVER_NAME* was >> set to *"127.0.0.1:5000"* in my local machine. That seems to have caused >> problems with webkit (opera/chromium) somehow. Firefox did not bother at all >> with this configuration. Would this be a bug of some sort or just plain >> incompatibility? >> >> >> 2011/9/15 Ishbir Singh <webmaster@ishbir.com> >> >>> flask.flash is not browser specific. What it does is basically store the >>> information that you specify in a session variable and then Flask sets a >>> cookie with that information. With the next request, when >>> get_flashed_messages gets called, it retrieves the information and deletes >>> it from the session. >>> >>> Make sure that your template does not have any CSS error which Chromium >>> is failing on, or, your cookies might be disabled. >>> >>> >>> 2011/9/15 Italo Maia <italo.maia@gmail.com> >>> >>>> Hi! When I flash a message then redirect, in Chromium, it does not show >>>> in my templates. With firefox, it works. Is there any incompatibility >>>> between flash and chromium? >>>> >>>> -- >>>> "A arrogância é a arma dos fracos." >>>> >>>> =========================== >>>> Italo Moreira Campelo Maia >>>> Bacharel em Ciência da Computação - UECE >>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>>> Coordenador do Pug-CE >>>> ----------------------------------------------------- >>>> http://www.italomaia.com/ >>>> http://twitter.com/italomaia/ >>>> http://eusouolobomau.blogspot.com/ >>>> ----------------------------------------------------- >>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>>> =========================== >>>> >>> >>> >>> >>> -- >>> Regards, >>> Ishbir Singh >>> >>> >> >> >> -- >> "A arrogância é a arma dos fracos." >> >> =========================== >> Italo Moreira Campelo Maia >> Bacharel em Ciência da Computação - UECE >> Desenvolvedor WEB e Desktop (Java, Python, Lua) >> Coordenador do Pug-CE >> ----------------------------------------------------- >> http://www.italomaia.com/ >> http://twitter.com/italomaia/ >> http://eusouolobomau.blogspot.com/ >> ----------------------------------------------------- >> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >> Turtle Linux 10.10 - http://bit.ly/cEw4ET >> =========================== >> > > > > -- > Regards, > Ishbir Singh > > -- "A arrogância é a arma dos fracos." =========================== Italo Moreira Campelo Maia Bacharel em Ciência da Computação - UECE Desenvolvedor WEB e Desktop (Java, Python, Lua) Coordenador do Pug-CE ----------------------------------------------------- http://www.italomaia.com/ http://twitter.com/italomaia/ http://eusouolobomau.blogspot.com/ ----------------------------------------------------- Turtle Linux 9.10 - http://tiny.cc/blogturtle910 Turtle Linux 10.10 - http://bit.ly/cEw4ET ===========================
ps: maybe a little remark in docs saying that SERVER_NAME is not working properly in 0.7.2 would be nice. Other people might face the same problem as me. 2011/9/16 Italo Maia <italo.maia@gmail.com> > I was just "trying" SERVER_NAME out. Version 0.7.2 here, so, that might be > it. I commented SERVER_NAME as soon as i tough it might be the problem. In > version 0.8 I'll try it again. Thanks. > > > 2011/9/16 Ishbir Singh <webmaster@ishbir.com> > >> Hey, >> >> What version of Flask are you using? 0.7.2 or 0.8-dev? If its the previous >> one, there was a bug with Flask relating to cookies and SERVER_NAME which >> Armin fixed. I don't know if this affects you or not, try removing >> SERVER_NAME and upgrading to the development build. >> >> Moreover, SERVER_NAME is not really required unless you're gonna be having >> a single application for various sub-domains. >> >> >> On 16 September 2011 01:37, Italo Maia <italo.maia@gmail.com> wrote: >> >>> Just cornered down the problem. In my configuration, *SERVER_NAME* was >>> set to *"127.0.0.1:5000"* in my local machine. That seems to have caused >>> problems with webkit (opera/chromium) somehow. Firefox did not bother at all >>> with this configuration. Would this be a bug of some sort or just plain >>> incompatibility? >>> >>> >>> 2011/9/15 Ishbir Singh <webmaster@ishbir.com> >>> >>>> flask.flash is not browser specific. What it does is basically store the >>>> information that you specify in a session variable and then Flask sets a >>>> cookie with that information. With the next request, when >>>> get_flashed_messages gets called, it retrieves the information and deletes >>>> it from the session. >>>> >>>> Make sure that your template does not have any CSS error which Chromium >>>> is failing on, or, your cookies might be disabled. >>>> >>>> >>>> 2011/9/15 Italo Maia <italo.maia@gmail.com> >>>> >>>>> Hi! When I flash a message then redirect, in Chromium, it does not show >>>>> in my templates. With firefox, it works. Is there any incompatibility >>>>> between flash and chromium? >>>>> >>>>> -- >>>>> "A arrogância é a arma dos fracos." >>>>> >>>>> =========================== >>>>> Italo Moreira Campelo Maia >>>>> Bacharel em Ciência da Computação - UECE >>>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>>>> Coordenador do Pug-CE >>>>> ----------------------------------------------------- >>>>> http://www.italomaia.com/ >>>>> http://twitter.com/italomaia/ >>>>> http://eusouolobomau.blogspot.com/ >>>>> ----------------------------------------------------- >>>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>>>> =========================== >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards, >>>> Ishbir Singh >>>> >>>> >>> >>> >>> -- >>> "A arrogância é a arma dos fracos." >>> >>> =========================== >>> Italo Moreira Campelo Maia >>> Bacharel em Ciência da Computação - UECE >>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>> Coordenador do Pug-CE >>> ----------------------------------------------------- >>> http://www.italomaia.com/ >>> http://twitter.com/italomaia/ >>> http://eusouolobomau.blogspot.com/ >>> ----------------------------------------------------- >>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>> =========================== >>> >> >> >> >> -- >> Regards, >> Ishbir Singh >> >> > > > -- > "A arrogância é a arma dos fracos." > > =========================== > Italo Moreira Campelo Maia > Bacharel em Ciência da Computação - UECE > Desenvolvedor WEB e Desktop (Java, Python, Lua) > Coordenador do Pug-CE > ----------------------------------------------------- > http://www.italomaia.com/ > http://twitter.com/italomaia/ > http://eusouolobomau.blogspot.com/ > ----------------------------------------------------- > Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > Turtle Linux 10.10 - http://bit.ly/cEw4ET > =========================== > -- "A arrogância é a arma dos fracos." =========================== Italo Moreira Campelo Maia Bacharel em Ciência da Computação - UECE Desenvolvedor WEB e Desktop (Java, Python, Lua) Coordenador do Pug-CE ----------------------------------------------------- http://www.italomaia.com/ http://twitter.com/italomaia/ http://eusouolobomau.blogspot.com/ ----------------------------------------------------- Turtle Linux 9.10 - http://tiny.cc/blogturtle910 Turtle Linux 10.10 - http://bit.ly/cEw4ET ===========================
Hi, On Fri, Sep 16, 2011 at 9:39 AM, Italo Maia <italo.maia@gmail.com> wrote: > ps: maybe a little remark in docs saying that SERVER_NAME is not working > properly in 0.7.2 would be nice. Other people might face the same problem as > me. I'd rather fix it in the 0.7.x maintenance branch and cut a new 0.7 release if necessary (0.8 is well on its way). Could you clarify this problem and move the discussion to: https://github.com/mitsuhiko/flask/issues Thanks, Ron > > 2011/9/16 Italo Maia <italo.maia@gmail.com> >> >> I was just "trying" SERVER_NAME out. Version 0.7.2 here, so, that might be >> it. I commented SERVER_NAME as soon as i tough it might be the problem. In >> version 0.8 I'll try it again. Thanks. >> >> 2011/9/16 Ishbir Singh <webmaster@ishbir.com> >>> >>> Hey, >>> >>> What version of Flask are you using? 0.7.2 or 0.8-dev? If its the >>> previous one, there was a bug with Flask relating to cookies and SERVER_NAME >>> which Armin fixed. I don't know if this affects you or not, try removing >>> SERVER_NAME and upgrading to the development build. >>> >>> Moreover, SERVER_NAME is not really required unless you're gonna be >>> having a single application for various sub-domains. >>> >>> On 16 September 2011 01:37, Italo Maia <italo.maia@gmail.com> wrote: >>>> >>>> Just cornered down the problem. In my configuration, SERVER_NAME was set >>>> to "127.0.0.1:5000" in my local machine. That seems to have caused problems >>>> with webkit (opera/chromium) somehow. Firefox did not bother at all with >>>> this configuration. Would this be a bug of some sort or just plain >>>> incompatibility? >>>> >>>> 2011/9/15 Ishbir Singh <webmaster@ishbir.com> >>>>> >>>>> flask.flash is not browser specific. What it does is basically store >>>>> the information that you specify in a session variable and then Flask sets a >>>>> cookie with that information. With the next request, when >>>>> get_flashed_messages gets called, it retrieves the information and deletes >>>>> it from the session. >>>>> >>>>> Make sure that your template does not have any CSS error which Chromium >>>>> is failing on, or, your cookies might be disabled. >>>>> >>>>> 2011/9/15 Italo Maia <italo.maia@gmail.com> >>>>>> >>>>>> Hi! When I flash a message then redirect, in Chromium, it does not >>>>>> show in my templates. With firefox, it works. Is there any incompatibility >>>>>> between flash and chromium? >>>>>> >>>>>> -- >>>>>> "A arrogância é a arma dos fracos." >>>>>> >>>>>> =========================== >>>>>> Italo Moreira Campelo Maia >>>>>> Bacharel em Ciência da Computação - UECE >>>>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>>>>> Coordenador do Pug-CE >>>>>> ----------------------------------------------------- >>>>>> http://www.italomaia.com/ >>>>>> http://twitter.com/italomaia/ >>>>>> http://eusouolobomau.blogspot.com/ >>>>>> ----------------------------------------------------- >>>>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>>>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>>>>> =========================== >>>>> >>>>> >>>>> >>>>> -- >>>>> Regards, >>>>> Ishbir Singh >>>> >>>> >>>> >>>> -- >>>> "A arrogância é a arma dos fracos." >>>> >>>> =========================== >>>> Italo Moreira Campelo Maia >>>> Bacharel em Ciência da Computação - UECE >>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) >>>> Coordenador do Pug-CE >>>> ----------------------------------------------------- >>>> http://www.italomaia.com/ >>>> http://twitter.com/italomaia/ >>>> http://eusouolobomau.blogspot.com/ >>>> ----------------------------------------------------- >>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET >>>> =========================== >>> >>> >>> >>> -- >>> Regards, >>> Ishbir Singh >> >> >> >> -- >> "A arrogância é a arma dos fracos." >> >> =========================== >> Italo Moreira Campelo Maia >> Bacharel em Ciência da Computação - UECE >> Desenvolvedor WEB e Desktop (Java, Python, Lua) >> Coordenador do Pug-CE >> ----------------------------------------------------- >> http://www.italomaia.com/ >> http://twitter.com/italomaia/ >> http://eusouolobomau.blogspot.com/ >> ----------------------------------------------------- >> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 >> Turtle Linux 10.10 - http://bit.ly/cEw4ET >> =========================== > > > > -- > "A arrogância é a arma dos fracos." > > =========================== > Italo Moreira Campelo Maia > Bacharel em Ciência da Computação - UECE > Desenvolvedor WEB e Desktop (Java, Python, Lua) > Coordenador do Pug-CE > ----------------------------------------------------- > http://www.italomaia.com/ > http://twitter.com/italomaia/ > http://eusouolobomau.blogspot.com/ > ----------------------------------------------------- > Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > Turtle Linux 10.10 - http://bit.ly/cEw4ET > =========================== >
There you go https://github.com/mitsuhiko/flask/issues/323 2011/9/16 Ron DuPlain <ron.duplain@gmail.com> > Hi, > > On Fri, Sep 16, 2011 at 9:39 AM, Italo Maia <italo.maia@gmail.com> wrote: > > ps: maybe a little remark in docs saying that SERVER_NAME is not working > > properly in 0.7.2 would be nice. Other people might face the same problem > as > > me. > > I'd rather fix it in the 0.7.x maintenance branch and cut a new 0.7 > release if necessary (0.8 is well on its way). Could you clarify this > problem and move the discussion to: > > https://github.com/mitsuhiko/flask/issues > > Thanks, > > Ron > > > > > > 2011/9/16 Italo Maia <italo.maia@gmail.com> > >> > >> I was just "trying" SERVER_NAME out. Version 0.7.2 here, so, that might > be > >> it. I commented SERVER_NAME as soon as i tough it might be the problem. > In > >> version 0.8 I'll try it again. Thanks. > >> > >> 2011/9/16 Ishbir Singh <webmaster@ishbir.com> > >>> > >>> Hey, > >>> > >>> What version of Flask are you using? 0.7.2 or 0.8-dev? If its the > >>> previous one, there was a bug with Flask relating to cookies and > SERVER_NAME > >>> which Armin fixed. I don't know if this affects you or not, try > removing > >>> SERVER_NAME and upgrading to the development build. > >>> > >>> Moreover, SERVER_NAME is not really required unless you're gonna be > >>> having a single application for various sub-domains. > >>> > >>> On 16 September 2011 01:37, Italo Maia <italo.maia@gmail.com> wrote: > >>>> > >>>> Just cornered down the problem. In my configuration, SERVER_NAME was > set > >>>> to "127.0.0.1:5000" in my local machine. That seems to have caused > problems > >>>> with webkit (opera/chromium) somehow. Firefox did not bother at all > with > >>>> this configuration. Would this be a bug of some sort or just plain > >>>> incompatibility? > >>>> > >>>> 2011/9/15 Ishbir Singh <webmaster@ishbir.com> > >>>>> > >>>>> flask.flash is not browser specific. What it does is basically store > >>>>> the information that you specify in a session variable and then Flask > sets a > >>>>> cookie with that information. With the next request, when > >>>>> get_flashed_messages gets called, it retrieves the information and > deletes > >>>>> it from the session. > >>>>> > >>>>> Make sure that your template does not have any CSS error which > Chromium > >>>>> is failing on, or, your cookies might be disabled. > >>>>> > >>>>> 2011/9/15 Italo Maia <italo.maia@gmail.com> > >>>>>> > >>>>>> Hi! When I flash a message then redirect, in Chromium, it does not > >>>>>> show in my templates. With firefox, it works. Is there any > incompatibility > >>>>>> between flash and chromium? > >>>>>> > >>>>>> -- > >>>>>> "A arrogância é a arma dos fracos." > >>>>>> > >>>>>> =========================== > >>>>>> Italo Moreira Campelo Maia > >>>>>> Bacharel em Ciência da Computação - UECE > >>>>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) > >>>>>> Coordenador do Pug-CE > >>>>>> ----------------------------------------------------- > >>>>>> http://www.italomaia.com/ > >>>>>> http://twitter.com/italomaia/ > >>>>>> http://eusouolobomau.blogspot.com/ > >>>>>> ----------------------------------------------------- > >>>>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > >>>>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET > >>>>>> =========================== > >>>>> > >>>>> > >>>>> > >>>>> -- > >>>>> Regards, > >>>>> Ishbir Singh > >>>> > >>>> > >>>> > >>>> -- > >>>> "A arrogância é a arma dos fracos." > >>>> > >>>> =========================== > >>>> Italo Moreira Campelo Maia > >>>> Bacharel em Ciência da Computação - UECE > >>>> Desenvolvedor WEB e Desktop (Java, Python, Lua) > >>>> Coordenador do Pug-CE > >>>> ----------------------------------------------------- > >>>> http://www.italomaia.com/ > >>>> http://twitter.com/italomaia/ > >>>> http://eusouolobomau.blogspot.com/ > >>>> ----------------------------------------------------- > >>>> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > >>>> Turtle Linux 10.10 - http://bit.ly/cEw4ET > >>>> =========================== > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Ishbir Singh > >> > >> > >> > >> -- > >> "A arrogância é a arma dos fracos." > >> > >> =========================== > >> Italo Moreira Campelo Maia > >> Bacharel em Ciência da Computação - UECE > >> Desenvolvedor WEB e Desktop (Java, Python, Lua) > >> Coordenador do Pug-CE > >> ----------------------------------------------------- > >> http://www.italomaia.com/ > >> http://twitter.com/italomaia/ > >> http://eusouolobomau.blogspot.com/ > >> ----------------------------------------------------- > >> Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > >> Turtle Linux 10.10 - http://bit.ly/cEw4ET > >> =========================== > > > > > > > > -- > > "A arrogância é a arma dos fracos." > > > > =========================== > > Italo Moreira Campelo Maia > > Bacharel em Ciência da Computação - UECE > > Desenvolvedor WEB e Desktop (Java, Python, Lua) > > Coordenador do Pug-CE > > ----------------------------------------------------- > > http://www.italomaia.com/ > > http://twitter.com/italomaia/ > > http://eusouolobomau.blogspot.com/ > > ----------------------------------------------------- > > Turtle Linux 9.10 - http://tiny.cc/blogturtle910 > > Turtle Linux 10.10 - http://bit.ly/cEw4ET > > =========================== > > > -- "A arrogância é a arma dos fracos." =========================== Italo Moreira Campelo Maia Bacharel em Ciência da Computação - UECE Desenvolvedor WEB e Desktop (Java, Python, Lua) Coordenador do Pug-CE ----------------------------------------------------- http://www.italomaia.com/ http://twitter.com/italomaia/ http://eusouolobomau.blogspot.com/ ----------------------------------------------------- Turtle Linux 9.10 - http://tiny.cc/blogturtle910 Turtle Linux 10.10 - http://bit.ly/cEw4ET ===========================