<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tecnologia de Programação 1 e 2 (2009) &#187; dica</title>
	<atom:link href="http://www.brunocampagnolo.com/2009tp/tag/dica/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brunocampagnolo.com/2009tp</link>
	<description>PUCPR &#62; Bacharelado em Sistemas de Informação &#62; 3o e 4o Períodos</description>
	<lastBuildDate>Fri, 18 Dec 2009 10:40:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exemplo de Chamada a serviço REST/JSON</title>
		<link>http://www.brunocampagnolo.com/2009tp/2009/06/27/exemplo-de-chamada-a-servico-restjson/</link>
		<comments>http://www.brunocampagnolo.com/2009tp/2009/06/27/exemplo-de-chamada-a-servico-restjson/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 13:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dúvida]]></category>
		<category><![CDATA[dica]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[webservices]]></category>

		<guid isPermaLink="false">http://www.brunocampagnolo.com/2009tp/?p=357</guid>
		<description><![CDATA[O exemplo abaixo é em JavaScript puro.
Dica: para chamar o serviço usando o jQuery, você pode usar as funções:
getJSON  ou getScript.


&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;

&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
    &#60;title&#62;Untitled Page&#60;/title&#62;

    &#60;script type=&#34;text/javascript&#34;&#62;
        function exibirAleatorios(result) {
      [...]]]></description>
			<content:encoded><![CDATA[<p>O exemplo abaixo é em JavaScript puro.<br />
Dica: para chamar o serviço usando o jQuery, você pode usar as funções:<br />
<a href="http://docs.jquery.com/Ajax/jQuery.getJSON">getJSON </a> ou <a href="http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback">getScript</a>.</p>
<pre name="code" class="html">

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;

&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
    &lt;title&gt;Untitled Page&lt;/title&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;
        function exibirAleatorios(result) {
            //alert(result);
            //console.log(result);
            //alert(result.numbers[0]);
            for(i=0;i&lt;result.numbers.length;i++) {
                alert(result.numbers[i]);
            }
        }
    &lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;
    src=&quot;http://json-random.appjet.net/?num=5&amp;min=10&amp;max=20&amp;callback=exibirAleatorios&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.brunocampagnolo.com/2009tp/2009/06/27/exemplo-de-chamada-a-servico-restjson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ferramenta: Glimmer &#8211; gerador de código jQuery</title>
		<link>http://www.brunocampagnolo.com/2009tp/2009/05/25/ferramenta-glimmer-gerador-de-codigo-jquery/</link>
		<comments>http://www.brunocampagnolo.com/2009tp/2009/05/25/ferramenta-glimmer-gerador-de-codigo-jquery/#comments</comments>
		<pubDate>Mon, 25 May 2009 17:57:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[notícias]]></category>
		<category><![CDATA[dica]]></category>
		<category><![CDATA[glimmer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.brunocampagnolo.com/2009tp/?p=313</guid>
		<description><![CDATA[
Glimmer é uma ferramenta de geração de código jQuery / HTML / CSS que elimina a necessidade de um conhecimento mais profundo da biblioteca para que se consiga a criar menus, animações e efeitos mais simples.
O download do utilitário pode ser feito em:
http://visitmix.com/lab/glimmer
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.brunocampagnolo.com/2009tp/wp-content/uploads/2009/05/glimmer.jpg"><img class="alignleft size-full wp-image-314" title="glimmer" src="http://www.brunocampagnolo.com/2009tp/wp-content/uploads/2009/05/glimmer.jpg" alt="glimmer" width="277" height="76" /></a></p>
<p>Glimmer é uma ferramenta de geração de código jQuery / HTML / CSS que elimina a necessidade de um conhecimento mais profundo da biblioteca para que se consiga a criar menus, animações e efeitos mais simples.</p>
<p>O download do utilitário pode ser feito em:</p>
<p><a href="http://visitmix.com/lab/glimmer">http://visitmix.com/lab/glimmer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunocampagnolo.com/2009tp/2009/05/25/ferramenta-glimmer-gerador-de-codigo-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dicas para o Exercício F05 &#8211; Preenchendo campos</title>
		<link>http://www.brunocampagnolo.com/2009tp/2009/05/25/dicas-para-o-exercicio-f05-preenchendo-campos/</link>
		<comments>http://www.brunocampagnolo.com/2009tp/2009/05/25/dicas-para-o-exercicio-f05-preenchendo-campos/#comments</comments>
		<pubDate>Mon, 25 May 2009 17:41:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dúvida]]></category>
		<category><![CDATA[dica]]></category>
		<category><![CDATA[exercícioF05]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.brunocampagnolo.com/2009tp/?p=309</guid>
		<description><![CDATA[Pessoal,
Vai a seguir um exemplo sobre como você pode RECUPERAR os campos que preencheu anteriormente.
Esta dica será útil no momento que o usuário desejar modificar a sua proposta de velório.
Exemplo de projeto web
]]></description>
			<content:encoded><![CDATA[<p>Pessoal,</p>
<p>Vai a seguir um exemplo sobre como você pode RECUPERAR os campos que preencheu anteriormente.</p>
<p>Esta dica será útil no momento que o usuário desejar modificar a sua proposta de velório.</p>
<p><a href="http://www.brunocampagnolo.com/2009tp/wp-content/uploads/2009/05/preenchercamposjs.zip">Exemplo de projeto web</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brunocampagnolo.com/2009tp/2009/05/25/dicas-para-o-exercicio-f05-preenchendo-campos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

