<?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>Gustavo Henrique.net &#187; sites</title>
	<atom:link href="http://www.gustavohenrique.net/brogui/tag/sites/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gustavohenrique.net/brogui</link>
	<description>Só mais um blog com Wordpress</description>
	<lastBuildDate>Tue, 29 Jun 2010 00:00:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Removendo &#8220;auth&#8221; e &#8220;sites&#8221; do admin do Django</title>
		<link>http://www.gustavohenrique.net/brogui/2009/05/removendo-auth-e-sites-do-admin/</link>
		<comments>http://www.gustavohenrique.net/brogui/2009/05/removendo-auth-e-sites-do-admin/#comments</comments>
		<pubDate>Thu, 28 May 2009 13:37:11 +0000</pubDate>
		<dc:creator>gustavohenrique</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[app_list]]></category>
		<category><![CDATA[app_url]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[sites]]></category>

		<guid isPermaLink="false">http://www.gustavohenrique.net/brogui/?p=104</guid>
		<description><![CDATA[Você não quer que apareça na tela do admin as app auth e sites? Então vou mostrar como retirar de forma fácil e rápida.
O procedimento se resume em copiar e alterar o arquivo index.html localizado dentro do diretório de templates do admin do django (django/contrib/admin/templates/admin/) e inserir o código que impede que sejam exibidas as [...]]]></description>
			<content:encoded><![CDATA[<p>Você não quer que apareça na tela do admin as app auth e sites? Então vou mostrar como retirar de forma fácil e rápida.<br />
O procedimento se resume em copiar e alterar o arquivo <b>index.html</b> localizado dentro do diretório de templates do admin do django (<code>django/contrib/admin/templates/admin/</code>) e inserir o código que impede que sejam exibidas as apps <strong>auth</strong> e <strong>sites</strong>.<br />
<span id="more-104"></span><br />
Exemplo de como copiar usando um terminal Linux:<br />
<code><br />
$ cd meuprojeto/templates<br />
$ mkdir admin<br />
$ cp /usr/lib/python2.5/site-packages/django/contrib/admin/templates/admin/index.html admin/<br />
</code></p>
<p>Abaixo está o código dentro do arquivo <b>index.html</b> responsável por exibir a lista de apps no admin.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> app_list <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
  <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">for</span> app <span style="color: #ff7700;font-weight:bold;">in</span> app_list <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
        <span style="color: #66cc66;">&lt;</span>div <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;module&quot;</span><span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>table summary=<span style="color: #483d8b;">&quot;{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}&quot;</span><span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>caption<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ app.app_url }}&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;section&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> blocktrans <span style="color: #ff7700;font-weight:bold;">with</span> app.<span style="color: black;">name</span> <span style="color: #ff7700;font-weight:bold;">as</span> name <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> name <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endblocktrans <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/caption<span style="color: #66cc66;">&gt;</span>
        <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">for</span> model <span style="color: #ff7700;font-weight:bold;">in</span> app.<span style="color: black;">models</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
            <span style="color: #66cc66;">&lt;</span>tr<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">change</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>th scope=<span style="color: #483d8b;">&quot;row&quot;</span><span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> model.<span style="color: black;">name</span> <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/th<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>th scope=<span style="color: #483d8b;">&quot;row&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> model.<span style="color: black;">name</span> <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/th<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
&nbsp;
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">add</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}add/&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;addlink&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">'Add'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&amp;</span>nbsp<span style="color: #66cc66;">;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
&nbsp;
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">change</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;changelink&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">'Change'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&amp;</span>nbsp<span style="color: #66cc66;">;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
            <span style="color: #66cc66;">&lt;</span>/tr<span style="color: #66cc66;">&gt;</span>
        <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endfor <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
        <span style="color: #66cc66;">&lt;</span>/table<span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>/div<span style="color: #66cc66;">&gt;</span>
  <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endfor <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
<span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
    <span style="color: #66cc66;">&lt;</span>p<span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">&quot;You don't have permission to edit anything.&quot;</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/p<span style="color: #66cc66;">&gt;</span>
<span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span></pre></td></tr></table></div>

<p>O que vamos fazer é inserir 2 <code>"ifs"</code> dentro da tag <code>for</code> de modo a não exibir as apps <b>auth</b> e <b>sites</b>. O primeiro <code>if</code> verifica se <code>app_url = 'auth/'</code> e o segundo se <code>app_url = 'sites/'</code>. Se <code>app_url</code> não for igual à nenhuma das 2 opções então a app será exibida na tela.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> ifnotequal app.<span style="color: black;">app_url</span> <span style="color: #483d8b;">'auth/'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
<span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> ifnotequal app.<span style="color: black;">app_url</span> <span style="color: #483d8b;">'sites/'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span></pre></td></tr></table></div>

<p>Abaixo o código com os <code>"ifs"</code> inseridos. Lembrando que é preciso fechar as tags. Reparem na terceira e quarta linha:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> app_list <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
  <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">for</span> app <span style="color: #ff7700;font-weight:bold;">in</span> app_list <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
    <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> ifnotequal app.<span style="color: black;">app_url</span> <span style="color: #483d8b;">'auth/'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
      <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> ifnotequal app.<span style="color: black;">app_url</span> <span style="color: #483d8b;">'sites/'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
        <span style="color: #66cc66;">&lt;</span>div <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;module&quot;</span><span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>table summary=<span style="color: #483d8b;">&quot;{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}&quot;</span><span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>caption<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ app.app_url }}&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;section&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> blocktrans <span style="color: #ff7700;font-weight:bold;">with</span> app.<span style="color: black;">name</span> <span style="color: #ff7700;font-weight:bold;">as</span> name <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> name <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endblocktrans <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/caption<span style="color: #66cc66;">&gt;</span>
        <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">for</span> model <span style="color: #ff7700;font-weight:bold;">in</span> app.<span style="color: black;">models</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
            <span style="color: #66cc66;">&lt;</span>tr<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">change</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>th scope=<span style="color: #483d8b;">&quot;row&quot;</span><span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> model.<span style="color: black;">name</span> <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/th<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>th scope=<span style="color: #483d8b;">&quot;row&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: black;">&#123;</span> model.<span style="color: black;">name</span> <span style="color: black;">&#125;</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/th<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
&nbsp;
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">add</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}add/&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;addlink&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">'Add'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&amp;</span>nbsp<span style="color: #66cc66;">;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
&nbsp;
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">if</span> model.<span style="color: black;">perms</span>.<span style="color: black;">change</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&lt;</span>a href=<span style="color: #483d8b;">&quot;{{ model.admin_url }}&quot;</span> <span style="color: #ff7700;font-weight:bold;">class</span>=<span style="color: #483d8b;">&quot;changelink&quot;</span><span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">'Change'</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/a<span style="color: #66cc66;">&gt;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
                <span style="color: #66cc66;">&lt;</span>td<span style="color: #66cc66;">&gt;&amp;</span>nbsp<span style="color: #66cc66;">;&lt;</span>/td<span style="color: #66cc66;">&gt;</span>
            <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
            <span style="color: #66cc66;">&lt;</span>/tr<span style="color: #66cc66;">&gt;</span>
        <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endfor <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
        <span style="color: #66cc66;">&lt;</span>/table<span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>/div<span style="color: #66cc66;">&gt;</span>
      <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endifnotequal <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
    <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endifnotequal <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
  <span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endfor <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
<span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> <span style="color: #ff7700;font-weight:bold;">else</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span>
    <span style="color: #66cc66;">&lt;</span>p<span style="color: #66cc66;">&gt;</span><span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> trans <span style="color: #483d8b;">&quot;You don't have permission to edit anything.&quot;</span> <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span><span style="color: #66cc66;">&lt;</span>/p<span style="color: #66cc66;">&gt;</span>
<span style="color: black;">&#123;</span><span style="color: #66cc66;">%</span> endif <span style="color: #66cc66;">%</span><span style="color: black;">&#125;</span></pre></td></tr></table></div>

<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Compartilhe esse artigo</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;submitHeadline=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django&amp;submitSummary=" rel="nofollow" title="Adicionar ao&nbsp;Buzz"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/buzz.png" title="Adicionar ao&nbsp;Buzz" alt="Adicionar ao&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;title=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Del.icio.us"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/delicious.png" title="Adicionar ao&nbsp;Del.icio.us" alt="Adicionar ao&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;title=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;digg"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/digg.png" title="Adicionar ao&nbsp;digg" alt="Adicionar ao&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F" rel="nofollow" title="Adicionar ao&nbsp;Facebook"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/facebook.png" title="Adicionar ao&nbsp;Facebook" alt="Adicionar ao&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;title=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Google Bookmarks"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/google.png" title="Adicionar ao&nbsp;Google Bookmarks" alt="Adicionar ao&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;bm_description=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Mister Wong"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Adicionar ao&nbsp;Mister Wong" alt="Adicionar ao&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;T=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Netscape"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/netscape.png" title="Adicionar ao&nbsp;Netscape" alt="Adicionar ao&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;title=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;reddit"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/reddit.png" title="Adicionar ao&nbsp;reddit" alt="Adicionar ao&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;title=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Stumble Upon"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Adicionar ao&nbsp;Stumble Upon" alt="Adicionar ao&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F" rel="nofollow" title="Adicionar ao&nbsp;Technorati"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/technorati.png" title="Adicionar ao&nbsp;Technorati" alt="Adicionar ao&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F" rel="nofollow" title="Adicionar ao&nbsp;Tip'd"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/tipd.png" title="Adicionar ao&nbsp;Tip'd" alt="Adicionar ao&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django+@+http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F" rel="nofollow" title="Adicionar ao&nbsp;Twitter"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/twitter.png" title="Adicionar ao&nbsp;Twitter" alt="Adicionar ao&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.gustavohenrique.net%2Fbrogui%2F2009%2F05%2Fremovendo-auth-e-sites-do-admin%2F&amp;t=Removendo+%26%238220%3Bauth%26%238221%3B+e+%26%238220%3Bsites%26%238221%3B+do+admin+do+Django" rel="nofollow" title="Adicionar ao&nbsp;Yahoo My Web"><img class="social_img" src="http://www.gustavohenrique.net/brogui/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Adicionar ao&nbsp;Yahoo My Web" alt="Adicionar ao&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.gustavohenrique.net/brogui/2009/05/removendo-auth-e-sites-do-admin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
