<?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>KomunitasWeb &#187; django</title>
	<atom:link href="http://komunitasweb.com/tag/django/feed/" rel="self" type="application/rss+xml" />
	<link>http://komunitasweb.com</link>
	<description>Gilang Chandrasa&#039;s personal website. Talking about Python, Django, PHP, jQuery, and everything else about the web.</description>
	<lastBuildDate>Mon, 31 Oct 2011 14:51:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Install OSQA in Ubuntu Server</title>
		<link>http://komunitasweb.com/2011/06/how-to-install-osqa-in-ubuntu-server/</link>
		<comments>http://komunitasweb.com/2011/06/how-to-install-osqa-in-ubuntu-server/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 04:29:13 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[OSQA]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=839</guid>
		<description><![CDATA[OSQA is questions and answers application built in Django. It&#8217;s open source StackOverflow clone. While it has documentation about installing on Linux server, but here I just want to share my step to step instructions on installing OSQA in Ubuntu server. Web Server Install apache webserver and mod_wsgi module sudo apt-get install apache2 libapache2-mod-wsgi Database [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/02/cakephp-tutorial-installing-cakephp-on-ubuntu/' rel='bookmark' title='CakePHP Tutorial:Installing CakePHP on Ubuntu'>CakePHP Tutorial:Installing CakePHP on Ubuntu</a></li>
<li><a href='http://komunitasweb.com/2010/08/django-deployment-tutorials/' rel='bookmark' title='Django Deployment Tutorials'>Django Deployment Tutorials</a></li>
<li><a href='http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/' rel='bookmark' title='A Quick Tutorial on Django MPTT'>A Quick Tutorial on Django MPTT</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/06/how-to-install-osqa-in-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Reset Django Admin Password</title>
		<link>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/</link>
		<comments>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/#comments</comments>
		<pubDate>Tue, 10 May 2011 02:38:57 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=816</guid>
		<description><![CDATA[There is a time when I forgot my password for Django admin. You can create new one using createsuperuser, but if you want to reset your available account you can use django shell : python manage.py shell Now, get your account and set new password. from django.contrib.auth.models import User &#160; user = User.objects.get&#40;username='admin'&#41; user.set_password&#40;'new_password'&#41; user.save&#40;&#41; [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/' rel='bookmark' title='Sending Email Using Gmail Account in Django'>Sending Email Using Gmail Account in Django</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/11/getting-started-with-django-cms/' rel='bookmark' title='Getting Started With Django-CMS'>Getting Started With Django-CMS</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Django and TinyMCE</title>
		<link>http://komunitasweb.com/2010/11/django-and-tinymce/</link>
		<comments>http://komunitasweb.com/2010/11/django-and-tinymce/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 13:02:04 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[tinymce]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=763</guid>
		<description><![CDATA[For content management, most likely you need to add WYSIWYG editor. While there are several free WYSIWYG editors, for this article I choose to use TinyMCE. Alternatively you can use django-tinymce. Here you go: Download TinyMCE. Copy tiny_mce directory under jscript, and put them in your project media folder. Create textareas.js in tiny_mce directory. 1 [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/11/getting-started-with-django-cms/' rel='bookmark' title='Getting Started With Django-CMS'>Getting Started With Django-CMS</a></li>
<li><a href='http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/' rel='bookmark' title='A Quick Tutorial on Django MPTT'>A Quick Tutorial on Django MPTT</a></li>
<li><a href='http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/' rel='bookmark' title='How to Reset Django Admin Password'>How to Reset Django Admin Password</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/11/django-and-tinymce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started With Django-CMS</title>
		<link>http://komunitasweb.com/2010/11/getting-started-with-django-cms/</link>
		<comments>http://komunitasweb.com/2010/11/getting-started-with-django-cms/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 07:54:18 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=719</guid>
		<description><![CDATA[Django CMS is content management system built in Django. You can extend the CMS via plugins, and there are already some plugins/extensions you can use or you can write custom plugin/extension for your specific need. I&#8217;ll walk you through from installing to writing your first page. So, let&#8217;s go. Ingredient : Django 1.2.3 Django-CMS trunk [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/06/handling-404-page-on-feincms/' rel='bookmark' title='Handling 404 Page on FeinCMS'>Handling 404 Page on FeinCMS</a></li>
<li><a href='http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/' rel='bookmark' title='A Quick Tutorial on Django MPTT'>A Quick Tutorial on Django MPTT</a></li>
<li><a href='http://komunitasweb.com/2010/11/django-and-tinymce/' rel='bookmark' title='Django and TinyMCE'>Django and TinyMCE</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/11/getting-started-with-django-cms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A Quick Tutorial on Django MPTT</title>
		<link>http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/</link>
		<comments>http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 14:52:31 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[mptt]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=692</guid>
		<description><![CDATA[Problem You create a project using Django framework and you need to store hierarchical data in database, for example Category model. Just say you need a category model that can contains another category. Update : I use django-mptt version 0.3.1, note that as Craig de Stigter mentions in the comment latest version of django-mptt doesn&#8217;t [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/11/getting-started-with-django-cms/' rel='bookmark' title='Getting Started With Django-CMS'>Getting Started With Django-CMS</a></li>
<li><a href='http://komunitasweb.com/2010/11/django-and-tinymce/' rel='bookmark' title='Django and TinyMCE'>Django and TinyMCE</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Django Deployment Tutorials</title>
		<link>http://komunitasweb.com/2010/08/django-deployment-tutorials/</link>
		<comments>http://komunitasweb.com/2010/08/django-deployment-tutorials/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 19:36:38 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[gunicorn]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[uswgi]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=654</guid>
		<description><![CDATA[The current recommendation for Django deployment is Apache + mod_wsgi. But for those who need more performance, then you can take adventure to use another server. With different server the deployment and configuration may not be easy, so to speed up your deployment you can take a look on several Django deployment tutorials. So here [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/03/codeigniter-tutorials-to-help-you-get-started/' rel='bookmark' title='CodeIgniter Tutorials to Help You Get Started'>CodeIgniter Tutorials to Help You Get Started</a></li>
<li><a href='http://komunitasweb.com/2011/06/how-to-install-osqa-in-ubuntu-server/' rel='bookmark' title='How to Install OSQA in Ubuntu Server'>How to Install OSQA in Ubuntu Server</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/08/django-deployment-tutorials/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Receiving Email Using AppEngine and Django</title>
		<link>http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/</link>
		<comments>http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 00:34:53 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[app engine]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=601</guid>
		<description><![CDATA[While Python AppEngine documentation give a good example on receiving email on AppEngine, but for me it take time to figure out how to do that in Django. For those who haven&#8217;t yet figure out how to do that, let me save your time. Configuring Your App to Receive Email Incoming email is disabled by [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/' rel='bookmark' title='Sending Email Using Gmail Account in Django'>Sending Email Using Gmail Account in Django</a></li>
<li><a href='http://komunitasweb.com/2010/08/using-django-paypal-in-django-1-2/' rel='bookmark' title='Using django-paypal IPN in Django 1.2'>Using django-paypal IPN in Django 1.2</a></li>
<li><a href='http://komunitasweb.com/2009/03/email-validation-challenge/' rel='bookmark' title='Email Validation Challenge'>Email Validation Challenge</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sending Email Using Gmail Account in Django</title>
		<link>http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/</link>
		<comments>http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 23:46:40 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=536</guid>
		<description><![CDATA[Sending email in Django is easy, just add a few lines in your settings.py and you have everything ready to send an email. But if you&#8217;re using Gmail as your SMTP server you need add a few more lines to your settings.py. You need to specify what port Gmail server using and set to use [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/' rel='bookmark' title='Receiving Email Using AppEngine and Django'>Receiving Email Using AppEngine and Django</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2009/03/email-validation-challenge/' rel='bookmark' title='Email Validation Challenge'>Email Validation Challenge</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Django 101</title>
		<link>http://komunitasweb.com/2010/02/django-101/</link>
		<comments>http://komunitasweb.com/2010/02/django-101/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 13:50:13 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=446</guid>
		<description><![CDATA[Django has excellent documentation, and it&#8217;s great place to get started if you want to learn about Django framework. The second place maybe this great Django book. I also found lot of django tutorials on other sites, but some of them are very old and they probably  don&#8217;t work with current Django stable version (1.1.1 [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/03/komunitasweb-march-2009-summary/' rel='bookmark' title='KomunitasWeb March 2009 Summary'>KomunitasWeb March 2009 Summary</a></li>
<li><a href='http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/' rel='bookmark' title='10 Django Apps I Can&#8217;t Live Without'>10 Django Apps I Can&#8217;t Live Without</a></li>
<li><a href='http://komunitasweb.com/2009/03/101-php-tutorials-for-php-programmer-wannabe/' rel='bookmark' title='101 PHP Tutorials for PHP Programmer Wannabe'>101 PHP Tutorials for PHP Programmer Wannabe</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/02/django-101/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Django Apps I Can&#8217;t Live Without</title>
		<link>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/</link>
		<comments>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 06:49:39 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=448</guid>
		<description><![CDATA[I love Django pluggable applications. Basically you just need to install the application, and you&#8217;re done. How many hours do you spend to create registration system for your new project? Well, in Django you just need to use django-registration, set up the urls and everything is up and running. In this way you can save [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-101/' rel='bookmark' title='Django 101'>Django 101</a></li>
<li><a href='http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/' rel='bookmark' title='Receiving Email Using AppEngine and Django'>Receiving Email Using AppEngine and Django</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

