<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>zimar™ » &#187; Browser&#8217;s</title>
	<atom:link href="http://zimar.wordpress.com/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://zimar.wordpress.com</link>
	<description>» Desenvolvimento de sistemas web</description>
	<lastBuildDate>Wed, 26 Aug 2009 18:51:17 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='zimar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8b7da7089e881d92547767399216cf3e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>zimar™ » &#187; Browser&#8217;s</title>
		<link>http://zimar.wordpress.com</link>
	</image>
			<item>
		<title>Menu Accordion com JQuery</title>
		<link>http://zimar.wordpress.com/2008/07/11/menu-accordion-com-jquery/</link>
		<comments>http://zimar.wordpress.com/2008/07/11/menu-accordion-com-jquery/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 16:08:06 +0000</pubDate>
		<dc:creator>zimar™</dc:creator>
				<category><![CDATA[Browser's]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mundo]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[DOM HTML]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu accordion]]></category>
		<category><![CDATA[menu vertical]]></category>

		<guid isPermaLink="false">http://zimar.wordpress.com/?p=31</guid>
		<description><![CDATA[Bem pessoas, o fato qual me levou a desenvolver este menu foi a necessidade de manter um controle no mesmo, podendo fechar e abrir o mesmo item do submenu, tudo isso usando ul li, direto ao ponto.
Primeira coisa a fazer, como verificar qual menu estava aberto antes do reload?
A solução para isso foi gravar o [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=31&subd=zimar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Bem pessoas, o fato qual me levou a desenvolver este menu foi a necessidade de manter um controle no mesmo, podendo fechar e abrir o mesmo item do submenu, tudo isso usando ul li, direto ao ponto.</p>
<p>Primeira coisa a fazer, como verificar qual menu estava aberto antes do reload?<br />
A solução para isso foi gravar o menu em cookie para verificação, segue abaixo as funções para criar e recuperar o cookie.</p>
<p>Função para recuperar o cookie:</p>
<pre>
/**
 * Retorna o valor do cookie
 * @autor Deusimar Ferreira
 * @param string name
 */
getCookie = function(Name){
	var re=new RegExp(Name+"=[^;]+", "i");
	if (document.cookie.match(re))
		return document.cookie.match(re)[0].split("=")[1];
	return null;
}
</pre>
<p>Função para criar e setar o valor do cookie:</p>
<pre>
/**
 * Define cookie
 * @autor Deusimar Ferreira
 * @param string name
 * @param string|int value
 */
setCookie = function(name, value){
	document.cookie = name + "=" + value;
}
</pre>
<p>Cirei um atributo para meu submenu chamado de menuIndex.</p>
<pre>
// Pega submenus
var subContents = $('#menu li ul');

// Percorre o menu e adiciona indice
$("#menu li div a").each(function(index) {
	subContents.eq(index).attr({menuIndex: index + 'c'});
})
</pre>
<p>Este script contém os eventos accordion do menu, ele faz a verificação de qual submenu esta aberto e chama o evento, caso o item clicado esteja aberto ele será fechado ou inverso, caso seja outro item ele abre o item clicado e fecha os outros itens.</p>
<pre>
$("div a").click(function() {
	//$("#menu li ul:visible").slideUp("slow"); // Esocnde menu item que visivel
	//$(this).parent().next().slideToggle("slow"); // Mostra o menu item que recebeu o evento click		

	// Criar objeto gobal do parent span a
	var _this = $(this).parent().next();

	// Percorre o menu para verificar as ações que deve ser executada
	// Verifica qual submenu deve ser fechado e qual será aberto
	$("div a").each(function(index){
		if ($('#menu li ul:eq(' + index + ')').attr('menuIndex') != _this.attr('menuIndex')) {
			// Verifica se exite algum submenu que não seja o que recebeu o evento do click aberto
			if ($('#menu li ul:eq(' + index + ')').is(':visible'))
				$('#menu li ul:eq(' + index + ')').slideUp("slow"); // Esocnde submenu item que visivel
		} else {
			(_this.is(':visible')) ? _this.slideUp("slow") // Esocnde submenu item que visivel
					       : _this.slideDown("slow"); // Mostra o submenu item que recebeu o evento click
		}
	})

	// Retorna falso funciona como um pause
	return false;
})
</pre>
<p>Neste outro script ao fechar a página ele recuperar o índice do menu e cria um cookie com seu valor.</p>
<pre>
// Evento window unload
$(window).bind('unload', function(){
	$('#menu li ul').unbind(); // Remove eventos
	var expandeIndices = []; // Array indice

	$("#menu li ul:visible").each(function(index){
		// Insere o valor do menuindex no array
		expandeIndices.push($(this).attr('menuIndex'));
	})

	expandeIndices = (expandeIndices.length == 0) ? '-1c' : expandeIndices;
	setCookie('menuIndex', expandeIndices); // Seta o cookie e seu respectivo valor
})
</pre>
<p>Pega o valor do cookie e mantém o respectivo submenu aberto.</p>
<pre>
// Verifica o cookie para ver qual submenu deve ser mostrado
$("#menu li ul").each(function(){
        // Mostra o submenu
	if ($(this).attr('menuIndex') == getCookie('menuIndex')) {
		$(this).show();
	} else { // Esconde o restante
		$(this).hide();
	}
})
</pre>
<p>Eis o script completo:</p>
<pre>
$(document).ready(function() {
	/**
	 * Retorna o valor do cookie
	 * @autor Deusimar Ferreira
	 * @param string name
	 */
	getCookie = function(Name){
		var re=new RegExp(Name+"=[^;]+", "i");
		if (document.cookie.match(re))
			return document.cookie.match(re)[0].split("=")[1];
		return null;
	}

	/**
	 * Define cookie
	 * @autor Deusimar Ferreira
	 * @param string name
	 * @param string|int value
	 */
	setCookie = function(name, value){
		document.cookie = name + "=" + value;
	}

	/**
	 * Accordion Menu
	 * @autor Deusimar Ferreira
	 * @param #menu li ul
	 * @param #menu li div a
	 */
	if (typeof expandeIndices == 'string')
		expandeIndices = expandeIndices.replace(/c/ig, '').split(',') // Transfoma string value em array (ie: "c1,c2,c3" becomes [1,2,3]

	// Pega submenus
	var subContents = $('#menu li ul');

	// Percorre o menu e adiciona indice
	$("#menu li div a").each(function(index) {
		subContents.eq(index).attr({menuIndex: index + 'c'});
	})

	// Apresenta apenas o primeiro menu list
	$('#menu li ul:not(:first)').hide();
	$("div a").click(function() {
		//$("#menu li ul:visible").slideUp("slow"); // Esocnde menu item que visivel
		//$(this).parent().next().slideToggle("slow"); // Mostra o menu item que recebeu o evento click		

		// Criar objeto gobal do parent span a
		var _this = $(this).parent().next();

		// Percorre o menu para verificar as ações que deve ser executada
		// Verifica qual submenu deve ser fechado e qual será aberto
		$("div a").each(function(index){
			if ($('#menu li ul:eq(' + index + ')').attr('menuIndex') != _this.attr('menuIndex')) {
				// Verifica se exite algum submenu que não seja o que recebeu o evento do click aberto
				if ($('#menu li ul:eq(' + index + ')').is(':visible'))
					$('#menu li ul:eq(' + index + ')').slideUp("slow"); // Esocnde submenu item que visivel
			} else {
				(_this.is(':visible')) ? _this.slideUp("slow") // Esocnde submenu item que visivel
									   : _this.slideDown("slow"); // Mostra o submenu item que recebeu o evento click
			}
		})

		// Retorna falso funciona como um pause
		return false;
	})		

	// Evento window unload
	$(window).bind('unload', function(){
		$('#menu li ul').unbind(); // Remove eventos
		var expandeIndices = []; // Array indice

		$("#menu li ul:visible").each(function(index){
			// Insere o valor do menuindex no array
			expandeIndices.push($(this).attr('menuIndex'));
		})

		expandeIndices = (expandeIndices.length == 0) ? '-1c' : expandeIndices;
		setCookie('menuIndex', expandeIndices); // Seta o cookie e seu respectivo valor
	})		

	// Verifica o cookie para ver qual submenu deve ser mostrado
	$("#menu li ul").each(function(){
		if ($(this).attr('menuIndex') == getCookie('menuIndex')) { // Mostra o submenu
			$(this).show();
		} else { // Esconde o restante
			$(this).hide();
		}
	})
})
</pre>
<p>Folha de estilo css:</p>
<pre>
div {
	font-family: Verdana, Arial;
	font-size: 11px;
	font-weight: bold;
	margin: 1px 0px;
	padding: 0px;
	border: 1px #06c solid;
	background-color: gray;
}

ul {
	list-style-type: none;
	max-width: 202px;
	_width: 200px; /* Adivinha para quem serve essa linha - Claro que é o IE! */
}

#menu li {
	margin: 0px 0px;
}

#menu li ul{
	margin: 0px;
	padding: 1px 5px;
	display: none;
}

#menu li div a{
	text-decoration: none;
	outline: none;
	line-height: 18px;
	padding: 1px 4px;
	color: white;
}

a {
	font-family: Verdana, Arial;
	font-size: 11px;
	text-decoration: none;
	outline: none;
	padding: 1px 4px;
	color: #06c;
}

a:hover {
	font-family: Verdana, Arial;
	font-size: 11px;
	text-decoration: underline;
	outline: none;
	padding: 1px 4px;
	color: #06c;
}
</pre>
<p>Estrutura do menu em lista não ordenada, ul li:</p>
<pre>
&lt;ul id="menu"&gt;
	&lt;li&gt;
		&lt;div&gt;&lt;a href=""&gt;JQuery Documentation&lt;/a&gt;&lt;/div&gt;
		&lt;ul id="submenu"&gt;
			&lt;li&gt;&lt;a href="http://docs.jquery.com/Main_Page" target="blank" title="Documentation"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://docs.jquery.com/Tutorials" target="blank" title="Tutrorials"&gt;Tutrorials&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;

	&lt;li&gt;
		&lt;div&gt;&lt;a href=""&gt;Player Game&lt;/a&gt;&lt;/div&gt;
		&lt;ul id="submenu"&gt;
			&lt;li&gt;&lt;a href="http://www.cdt.unb.br/memoria" title="Memória Empreendedora"&gt;Memória Empreendedora&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="" title="Memória Empreendedora"&gt;Memória Empreendedora&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;

	&lt;li&gt;
		&lt;div&gt;&lt;a href=""&gt;Sobre&lt;/a&gt;&lt;/div&gt;
		&lt;ul id="submenu" style="border-bottom: 1px #06c solid;"&gt;
			&lt;li&gt;&lt;a href="http://zimar.wordpress.com/about/" title="Sobre Me"&gt;Sobre Me&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://docs.google.com/View?docid=ddft82q4_42hmpmmcgv" title="Curriculum"&gt;By Curriculum&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>é isso ai, qualquer dúvida, pergunte!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zimar.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zimar.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zimar.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zimar.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zimar.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zimar.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zimar.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zimar.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zimar.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zimar.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zimar.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zimar.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=31&subd=zimar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zimar.wordpress.com/2008/07/11/menu-accordion-com-jquery/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f7a21671da2fcabc9fe2978427056fa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zimar™</media:title>
		</media:content>
	</item>
		<item>
		<title>Unidos pelo récorde</title>
		<link>http://zimar.wordpress.com/2008/03/18/unidos-pelo-recorde/</link>
		<comments>http://zimar.wordpress.com/2008/03/18/unidos-pelo-recorde/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 18:34:15 +0000</pubDate>
		<dc:creator>zimar™</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Browser's]]></category>
		<category><![CDATA[Java for web]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mundo]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[muldial]]></category>
		<category><![CDATA[récorde]]></category>

		<guid isPermaLink="false">http://zimar.wordpress.com/?p=19</guid>
		<description><![CDATA[Unidos para que o Firefox 3 bata o récorde mundial de download.
Abracem esta idéia!



       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=19&subd=zimar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Unidos para que o Firefox 3 bata o récorde mundial de download.</p>
<p>Abracem esta idéia!</p>
<p><a href="http://www.spreadfirefox.com/node&amp;id=0&amp;t=269" target="_blank"><br />
<img src="http://www.spreadfirefox.com/files/images/affiliates_banners/sns_badge1_en.png" border="0" alt="Download Day"><br />
</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zimar.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zimar.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zimar.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zimar.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zimar.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zimar.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zimar.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zimar.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zimar.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zimar.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zimar.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zimar.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=19&subd=zimar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zimar.wordpress.com/2008/03/18/unidos-pelo-recorde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f7a21671da2fcabc9fe2978427056fa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zimar™</media:title>
		</media:content>

		<media:content url="http://www.spreadfirefox.com/files/images/affiliates_banners/sns_badge1_en.png" medium="image">
			<media:title type="html">Download Day</media:title>
		</media:content>
	</item>
		<item>
		<title>Requisitando uma página em ajax</title>
		<link>http://zimar.wordpress.com/2008/02/12/requisitando-uma-pagina-em-ajax/</link>
		<comments>http://zimar.wordpress.com/2008/02/12/requisitando-uma-pagina-em-ajax/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 15:51:39 +0000</pubDate>
		<dc:creator>zimar™</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Browser's]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[php + ajax]]></category>
		<category><![CDATA[requisitar]]></category>
		<category><![CDATA[requisitar página em ajax]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://zimar.wordpress.com/?p=9</guid>
		<description><![CDATA[A finalidade deste exemplo é mostra para os iniciantes em ajax como é simples efetuar uma requisição usando o ajax.
A primeira coisa a fazer é verificar se o browser do cliente suporta o ajax e instânciar o objeto.

var ajax;
try {
  // Verifica se o Firefox, Opera 8.0+, Safari suporta o ajax
  ajax = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=9&subd=zimar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A finalidade deste exemplo é mostra para os iniciantes em ajax como é simples efetuar uma requisição usando o ajax.</p>
<p>A primeira coisa a fazer é verificar se o browser do cliente suporta o ajax e instânciar o objeto.</p>
<pre>
var ajax;
try {
  // Verifica se o Firefox, Opera 8.0+, Safari suporta o ajax
  ajax = new XMLHttpRequest();
} catch (e) {
  // Verifica se o Internet Explorer suporta o ajax
  try {
    ajax = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      ajax = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (e) {
      alert("Seu browser não dar suporte ao AJAX!");
      return false;
    }
  }
}
</pre>
<p>Agora vamos processar nosso ajax, observe que neste exemplo estamos tratando o readyState 4, que seguinifica que a requisição foi bem sucedida.</p>
<pre>
// Processa requisição ajax
ajax.onreadystatechange = function() {
  if(ajax.readyState == 4) {
    document.getElementById('campoResposta').innerHTML = ajax.responseText;
  }
}
ajax.open('POST', 'time.php', true);
ajax.send(null);
</pre>
<p>Neste exemplo o ajax requisita uma página que contém uma função date(&#8216;H:i:s&#8217;)<br />
time.php</p>
<pre>
date('H:i:s')
</pre>
<p>Agora juntamos as partes do objeto ajax em uma função para efetuarmos a requisição.</p>
<pre>
function ajaxSend() {
  var ajax;
  try {
    // Firefox, Opera 8.0+, Safari
    ajax = new XMLHttpRequest();
  } catch (e) {
      // Internet Explorer
      try {
        ajax = new ActiveXObject("Msxml2.XMLHTTP");
      } catch (e) {
        try {
          ajax = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (e) {
          alert("Seu browser não dar suporte ao AJAX!");
          return false;
        }
      }
  }

  // Processa requisição ajax
  ajax.onreadystatechange=function() {
    if(ajax.readyState == 4) {
      document.getElementById('time').innerHTML = 'Time: ' + ajax.responseText;
    }
  }
  ajax.open('POST', 'time.php', true);
  ajax.send(null);
}
</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zimar.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zimar.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zimar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zimar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zimar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zimar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zimar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zimar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zimar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zimar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zimar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zimar.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=9&subd=zimar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zimar.wordpress.com/2008/02/12/requisitando-uma-pagina-em-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f7a21671da2fcabc9fe2978427056fa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zimar™</media:title>
		</media:content>
	</item>
		<item>
		<title>Site da Agência Liberdade de Expressão</title>
		<link>http://zimar.wordpress.com/2007/09/04/site-da-agencia-liberdade-de-expressao/</link>
		<comments>http://zimar.wordpress.com/2007/09/04/site-da-agencia-liberdade-de-expressao/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 19:42:35 +0000</pubDate>
		<dc:creator>zimar™</dc:creator>
				<category><![CDATA[Browser's]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mundo]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[agência]]></category>
		<category><![CDATA[comunicação]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[expressão]]></category>
		<category><![CDATA[liberdade]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://zimar.wordpress.com/?p=18</guid>
		<description><![CDATA[Site da Agência e Asssessoria de Comunicação Liberdade de Expressão, desenvolvido em php e javascript,  baseado nos padrões adotados pela W3C.
Projeto de Interface desenvolvida por, Yoda Nakasu.



       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=18&subd=zimar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Site da Agência e Asssessoria de Comunicação Liberdade de Expressão, desenvolvido em php e javascript,  baseado nos padrões adotados pela W3C.</p>
<p>Projeto de Interface desenvolvida por, Yoda Nakasu.</p>
<p><a href="http://www.liberdadedeexpressao.inf.br/" target="_blank"><br />
<img src="http://zimar.files.wordpress.com/2008/06/le1.png?w=450&#038;h=277" alt="" width="450" height="277" class="aligncenter size-full wp-image-27" /><br />
</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zimar.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zimar.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zimar.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zimar.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zimar.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zimar.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zimar.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zimar.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zimar.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zimar.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zimar.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zimar.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zimar.wordpress.com&blog=1876517&post=18&subd=zimar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zimar.wordpress.com/2007/09/04/site-da-agencia-liberdade-de-expressao/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f7a21671da2fcabc9fe2978427056fa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zimar™</media:title>
		</media:content>

		<media:content url="http://zimar.files.wordpress.com/2008/06/le1.png" medium="image" />
	</item>
	</channel>
</rss>