<?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>Red Robot Studios &#187; Scott Barnham</title>
	<atom:link href="http://www.redrobotstudios.com/blog/author/sgb/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redrobotstudios.com/blog</link>
	<description>Web development company specialising in Django and mobile development for clients around the world</description>
	<lastBuildDate>Wed, 14 Jul 2010 09:12:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Dynamic Data Filtering for WhoIsHostingThis.com</title>
		<link>http://www.redrobotstudios.com/blog/2010/07/14/dynamic-data-filtering-for-whoishostingthis/</link>
		<comments>http://www.redrobotstudios.com/blog/2010/07/14/dynamic-data-filtering-for-whoishostingthis/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:12:13 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog/?p=213</guid>
		<description><![CDATA[We&#8217;ve worked on the WhoIsHostingThis.com site for several years, since it was taken over by web marketing experts Quality Nonsense.  It started as a tool to tell you which web hosting company is hosting any site, but has changed and expanded in scope and usefulness, adding honest reviews and special offer coupons over the [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve worked on the WhoIsHostingThis.com site for several years, since it was taken over by web marketing experts <a href="http://www.qualitynonsense.com/">Quality Nonsense</a>.  It started as a tool to tell you which web hosting company is hosting any site, but has changed and expanded in scope and usefulness, adding <a href="http://www.whoishostingthis.com/about-our-reviews/">honest reviews</a> and special offer <a href="http://www.whoishostingthis.com/hosting-coupons/">coupons</a> over the last couple of years.</p>
<h3>Hosting Comparison Tool</h3>
<p>A few months ago we helped launch the new <a href="http://www.whoishostingthis.com/hosting-reviews/">hosting comparison</a> tool which filters tens of thousands of data points to tell you which web hosting company is best for you.  Our role was to develop the comparison engine and super-slick dynamic interface which updates the list of suitable hosts as you click features and criteria that are important to you.</p>
<p><a href="http://www.redrobotstudios.com/blog/wp-content/uploads/2010/07/wiht-comparison.png"><img class="aligncenter size-full wp-image-216" title="web hosting comparison" src="http://www.redrobotstudios.com/blog/wp-content/uploads/2010/07/wiht-comparison.png" alt="" width="600" height="340" /></a></p>
<h3>Data Update Interface</h3>
<p>Behind the scenes, the team at WhoIsHostingThis.com add web hosting plans and regularly update masses of data using an interface we developed.  All changes are logged, checked and approved before going live on the site.</p>
<h3>Tech</h3>
<p>The WhoIsHostingThis.com site uses PHP and MySQL.  Much of the work for the hosting comparison tool was client-side, using JavaScript and the MooTools library.  The filter uses ajax to update the list of hosts without reloading the page making it quick and simple to compare and contrast hosts.</p>
<h3>Job Done</h3>
<p>WhoIsHostingThis.com is probably the largest site we regularly work on and Quality Nonsense is a great client.  We&#8217;re happy with the work we&#8217;ve done and it has been well received by testers and reviewers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2010/07/14/dynamic-data-filtering-for-whoishostingthis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t delete an image file when deleting a Django model instance</title>
		<link>http://www.redrobotstudios.com/blog/2010/03/02/dont-delete-image-file-when-deleting-django-model-instance/</link>
		<comments>http://www.redrobotstudios.com/blog/2010/03/02/dont-delete-image-file-when-deleting-django-model-instance/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 09:54:22 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog/?p=55</guid>
		<description><![CDATA[If you have a Django model with a FileField or ImageField, when you delete the model instance, the associated file or image is also deleted.  In most cases this is desirable and keeps things tidy, but I had a situation recently where the image file should not be deleted when the model was deleted. [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a Django model with a <code>FileField</code> or <code>ImageField</code>, when you delete the model instance, the associated file or image is also deleted.  In most cases this is desirable and keeps things tidy, but I had a situation recently where the image file should not be deleted when the model was deleted.  Here&#8217;s a simple way to override the default behaviour.</p>
<h3>Custom file storage</h3>
<p>Django uses storage classes to determine how files are read and written.  Normally, the data is just written as files to disk, but there are other possibilities such as storing on remote servers.</p>
<p>It&#8217;s easy to write a <a href="http://docs.djangoproject.com/en/dev/howto/custom-file-storage/">custom file storage</a> class to override the behaviour of the default <code>FileStorageSystem</code>.  In this case, we only need to change the <code>delete</code> method so it does not delete the file.</p>
<p>In custom.py</p>
<pre>from django.core.files import storage

class NoDeleteFileStorage(storage.FileSystemStorage):
    def delete(self, name):
        pass</pre>
<p>We can then <a href="http://docs.djangoproject.com/en/1.1/topics/files/#file-storage">use the custom file storage</a> by making an instance and passing it to the <code>ImageField</code>.</p>
<p>In models.py</p>
<pre>from custom import NoDeleteFileStorage

ndfs = NoDeleteFileStorage()

class ImageInstance(models.Model):
    image = models.ImageField(storage=ndfs, ...)</pre>
<p>It&#8217;s as simple as that!  Custom file storage has some interesting possibilities.  With it you can handle how files are named or integrate with some caching or <a href="http://en.wikipedia.org/wiki/Content_Delivery_Network">CDN</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2010/03/02/dont-delete-image-file-when-deleting-django-model-instance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom web, Django and mobile development</title>
		<link>http://www.redrobotstudios.com/blog/2010/02/08/custom-web-django-and-mobile-development/</link>
		<comments>http://www.redrobotstudios.com/blog/2010/02/08/custom-web-django-and-mobile-development/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 10:04:15 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Company]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog/?p=50</guid>
		<description><![CDATA[We started Red Robot Studios in 2008 to develop web-based apps using great technologies like Django. Since then we&#8217;ve learned an enormous amount about what it takes to build and deploy large-scale web applications, and as we&#8217;ve developed and released our own sites and apps, we&#8217;ve increasingly been approached by people who want us to work with [...]]]></description>
			<content:encoded><![CDATA[<p>We started Red Robot Studios in 2008 to develop web-based apps using great technologies like Django. Since then we&#8217;ve learned an enormous amount about what it takes to build and deploy large-scale web applications, and as we&#8217;ve developed and released our own sites and apps, we&#8217;ve increasingly been approached by people who want us to work with them to help them build great sites and services.</p>
<p>We&#8217;re still going to be building and releasing our own projects but have also decided to offer our development service to clients as well. We have some excellent clients already and will be accepting work from new clients.</p>
<p>Our aim is not just to provide a normal development service but to help our clients achieve their goals. We want to help and advise based on our experience and go the extra mile to provide <strong>really great</strong> development services to all our clients.</p>
<p>Our main focus is <a href="http://www.redrobotstudios.com/django-development/">Django development</a>, <a href="http://www.redrobotstudios.com/mobile-development/">iPhone and mobile development</a>, but we are well experienced in many other areas including things as diverse as WordPress plugins, Facebook apps and Firefox extensions. We&#8217;d love to hear about your great idea, so <a href="http://www.redrobotstudios.com/contact/">get in touch</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2010/02/08/custom-web-django-and-mobile-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Requiring https for certain paths in Django</title>
		<link>http://www.redrobotstudios.com/blog/2010/02/06/requiring-https-for-certain-paths-in-django/</link>
		<comments>http://www.redrobotstudios.com/blog/2010/02/06/requiring-https-for-certain-paths-in-django/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 12:03:25 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog/?p=45</guid>
		<description><![CDATA[A while ago I wrote about Securing Django with SSL.  Here&#8217;s a small addition.
Some paths need https
If you&#8217;re using SSL it makes sense for certain parts of the site to require a secure connection.  For example, the admin section.
Previously I shared the secure_required decorator which forces requests to use https for specific views. [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I wrote about <a href="http://www.redrobotstudios.com/blog/2009/02/18/securing-django-with-ssl/">Securing Django with SSL</a>.  Here&#8217;s a small addition.</p>
<h3>Some paths need https</h3>
<p>If you&#8217;re using SSL it makes sense for certain parts of the site to require a secure connection.  For example, the admin section.</p>
<p>Previously I shared the <a href="http://www.redrobotstudios.com/blog/2009/02/18/securing-django-with-ssl/">secure_required</a> decorator which forces requests to use https for specific views.  This works ok, but if you know an entire section of the site under a given path (e.g. <code>/admin/</code>) should be secure, it&#8217;s hassle to have to add the decorator to each view.</p>
<p>You can require secure connections over https using webserver config or using Django itself.</p>
<h3>Requiring https using Nginx</h3>
<p>In your Nginx config file under the section for the unsecure http/port 80 server you can specify a location path and redirect all requests to it to https instead.</p>
<pre>server {
    listen 10.10.10.10:80;
    server_name example.com;
...
    location /admin {
        # force admin to use https
        rewrite (.*) https://example.com/$1 permanent;
    }
...
}
</pre>
<p>Apache and other web servers can have a similar configuration.</p>
<p>If you can configure it in the web server, that&#8217;s more efficient because the request can be redirected by the server, without having to contact your Django project.  However, it should be fairly rare for requests to be redirected like this so it&#8217;s not a big performance issue and sometimes it&#8217;s easier to handle things in Django.</p>
<h3>Requiring https using Django middleware</h3>
<p>In Django it&#8217;s easy to write <a href="http://docs.djangoproject.com/en/dev/topics/http/middleware/">custom middleware</a> which gets called before each request reaches a view.</p>
<p>Here&#8217;s a small piece of middleware which checks if the request is over http to a path we want to be secure and if so redirects to the same path but over https.</p>
<pre>from django.http import HttpResponsePermanentRedirect
from django.conf import settings

class SecureRequiredMiddleware(object):
    def __init__(self):
        self.paths = getattr(settings, 'SECURE_REQUIRED_PATHS')
        self.enabled = self.paths and getattr(settings, 'HTTPS_SUPPORT')

    def process_request(self, request):
        if self.enabled and not request.is_secure():
            for path in self.paths:
                if request.get_full_path().startswith(path):
                    request_url = request.build_absolute_uri(request.get_full_path())
                    secure_url = request_url.replace('http://', 'https://')
                    return HttpResponsePermanentRedirect(secure_url)
        return None</pre>
<p>In <code>settings.py</code></p>
<pre>MIDDLEWARE_CLASSES = (
...
    'myproject.middleware.SecureRequiredMiddleware',
)

HTTPS_SUPPORT = True
SECURE_REQUIRED_PATHS = (
    '/admin/',
    '/accounts/',
    '/management/',
)
</pre>
<p><code>SECURE_REQUIRED_PATHS</code> is a list or tuple of paths that should be secure.  Any request to a path which starts with one of these will be required to use https.</p>
<p><code>HTTPS_SUPPORT</code> is a custom setting to make it easier to use this on your dev server without SSL support.  Set it to <code>True</code> in the settings for the live server and <code>False</code> in the settings for the dev server.</p>
<p>So there we go, an easy way to require secure https requests for certain parts of your Django site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2010/02/06/requiring-https-for-certain-paths-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Nearby Developers on Djangogigs</title>
		<link>http://www.redrobotstudios.com/blog/2009/06/23/find-nearby-developers-on-djangogigs/</link>
		<comments>http://www.redrobotstudios.com/blog/2009/06/23/find-nearby-developers-on-djangogigs/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:46:47 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Djangogigs]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=30</guid>
		<description><![CDATA[Djangogigs is a very successful job board we run for web developers who use the Django framework.  A few jobs and freelance gigs are added each week and there is a large directory of developers available&#160;for&#160;hire.
Finding&#160;Django&#160;Developers
As the number of developers increases, it becomes harder to find the person you are looking for.  A [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://djangogigs.com/">Djangogigs</a> is a very successful job board we run for web developers who use the <a href="http://www.djangoproject.com/">Django framework</a>.  A few jobs and freelance gigs are added each week and there is a large directory of developers available&nbsp;for&nbsp;hire.</p>
<h3>Finding&nbsp;Django&nbsp;Developers</h3>
<p>As the number of developers increases, it becomes harder to find the person you are looking for.  A while ago we added filtering by country, but for large countries such as the US, there are still way too many developer profiles to look through.  We now have nearly 700 <a href="http://djangogigs.com/developers/">Django developers</a> on the site and needed to find a&nbsp;better&nbsp;way.
</p>
<p>The solution we chose was <a href="http://en.wikipedia.org/wiki/Geocoding">geocoding</a> the location of each developer so that we can find developers who are close to a given location.  Ignoring the technical stuff, it&#8217;s very easy to use.  <strong>Just type in the name of your town or city and get back a list of developers who are nearby</strong>.</p>
<p>We&#8217;re confident this will make it much easier to find Django developers and may add other search options in future.  As always, we&#8217;re happy to hear <a href="http://getsatisfaction.com/redrobotstudios/products/redrobotstudios_djangogigs">your feedback</a>.
</p>
<h3>Follow us&nbsp;on&nbsp;Twitter</h3>
<p>We&#8217;ve also added a <a href="http://twitter.com/djangogigs">Djangogigs Twitter account</a> which you can follow to see the latest gigs as they&nbsp;are&nbsp;added.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2009/06/23/find-nearby-developers-on-djangogigs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing Django with SSL</title>
		<link>http://www.redrobotstudios.com/blog/2009/02/18/securing-django-with-ssl/</link>
		<comments>http://www.redrobotstudios.com/blog/2009/02/18/securing-django-with-ssl/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 11:56:08 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=42</guid>
		<description><![CDATA[When we built the centralized authentication system for Red Robot Studios we wanted all authentication and account resources to be available solely over&#160;https.

This article covers some tips and tricks we discovered while building the app, and how you can use Django to get fine-grained control as to which resources are available&#160;securely.

Why bother with&#160;security?
We all know [...]]]></description>
			<content:encoded><![CDATA[<p>When we built the centralized authentication system for <a href="http://www.redrobotstudios.com/">Red Robot Studios</a> we wanted all authentication and account resources to be available solely over&nbsp;https.
</p>
<p>This article covers some tips and tricks we discovered while building the app, and how you can use Django to get fine-grained control as to which resources are available&nbsp;securely.
</p>
<h3>Why bother with&nbsp;security?</h3>
<p>We all know that data sent over http is cleartext and can potentially be read on any network between the client and server.  But the risk feels pretty minimal and many sites don&#8217;t bother using <span class="caps">SSL</span> to encrypt sensitive traffic.  For online banking and ecommerce, you&#8217;d be crazy not to use it, but for other sites, why&nbsp;bother?</p>
<p>The chances of your http requests being snooped upon by an <span class="caps">ISP</span>, intermediate networks or your hosting company seem minimal.  But one potentially big risk is users accessing your website on an open wireless&nbsp;network.
</p>
<p>For example, perhaps your user has an unsecured wireless home or office network or maybe they use wireless networks in coffee shops and airports: It&#8217;s really easy in this situation for sensitive requests to be snooped&nbsp;upon.
</p>
<p>The data on your website may not be sensitive, but if you use Django&#8217;s admin or authentication frameworks, two important bits of information are passed as&nbsp;cleartext.
</p>
<p>When a user logs in, their username and password is posted in cleartext.  Assuming login is successful, each subsequent request includes a cookie containing the <code>sessionid</code>. The <code>sessionid</code> is just a random string, but if you know the <code>sessionid</code> of a user, it is trivial to hijack the session and have the same access to the website as that user does until they log&nbsp;out.</p>
<h3>Encrypting login&nbsp;sessions</h3>
<p>If you want to be sure user credentials and sessions cannot be compromised by eavesdroppers, you need to use <span class="caps">SSL</span> encryption.  Install an <span class="caps">SSL</span> certificate on the server so that traffic is encrypted end-to-end between client and&nbsp;server.
</p>
<p>You probably don&#8217;t want the whole site to be secure because it will be a lot slower and significantly increase the load on your servers.  Instead, you can be selective about which parts of the site should use https instead of http.  If you want user sessions to be secure, you should make sure that logging in and all parts of the site that require a logged-in user use&nbsp;https.</p>
<h3><span class="caps">SSL</span></h3>
<p>Standard <span class="caps">SSL</span> certificates are pretty cheap these days – under $20 per year.  We go some from <a href="http://www.rapidsslonline.com/">RapidSSLOnline</a>.  Each secure site needs its own <span class="caps">IP</span> address, so if you&#8217;re hosting multiple sites using virtual hosting, you&#8217;ll need to look in to getting some dedicated&nbsp;IPs.
</p>
<p>There are lots of guides to installing <span class="caps">SSL</span> certificates and configuring web servers such as Apache, Lighttpd and Nginx, so I won&#8217;t cover that&nbsp;here.
</p>
<h3>Making Django sessions&nbsp;secure</h3>
<p>Django uses cookies for its sessions.  When a cookie is set, you can specify that it be a secure cookie, meaning it is only ever passed over https and not in http requests.  We can tell Django to use secure cookies for sessions by adding a setting to <code>settings.py</code>
</p>
<pre><code>SESSION_COOKIE_SECURE = True
</code></pre>
<p>If you set Django to use secure cookies then try to log in over http you will get the&nbsp;error</p>
<blockquote><p><span class="dquo">&#8220;</span>Looks like your browser isn&#8217;t configured to accept cookies. Please enable cookies, reload this page, and try&nbsp;again.&#8221;
</p>
</blockquote>
<p>This happens because Django sets the cookie, but it&#8217;s a secure cookie, so when the page loads over http, Django can&#8217;t see the cookie and so assumes cookies are disabled in your&nbsp;browser.
</p>
<h3>Requiring https for&nbsp;admin</h3>
<p>To avoid this cookie warning and make sure you only ever pass your admin credentials over https, you can configure your web server so that any http requests are redirected to&nbsp;https.</p>
<p>For example, in Nginx it would look&nbsp;like:
</p>
<pre><code>server {
    server_name example.com;
    location /admin {
        # force admin to use https
        rewrite (.*) https://example.com/$1 permanent;
    }
...
}
</code></pre>
<p>In Apache, something&nbsp;like:
</p>
<pre><code>&lt;Location /admin&gt;
    RewriteRule (.*) https://example.com/$1 [L,R=301]
    ...
&lt;/Location&gt;
</code></pre>
<p>Of course, these bits of config should go in the http config, not the https config or you will cause infinite&nbsp;redirects!
</p>
<h3>Requiring https for certain&nbsp;views</h3>
<p>If all the logged-in parts of your site are in a certain path (e.g. /accounts/ and /members/) you can configure your web server in the same way to require https for these&nbsp;locations.
</p>
<p>If certain views require https (e.g. <code>/members/bert/</code> is public but <code>/members/bert/edit/</code> requires login), you may want to check <code>request.is_secure()</code> in those views.  A neat way to do it is with a decorator which can also redirect any http requests to&nbsp;https.</p>
<pre><code>from django.conf import settings
from django.http import HttpResponseRedirect

def secure_required(view_func):
    """Decorator makes sure URL is accessed over https."""
    def _wrapped_view_func(request, *args, **kwargs):
        if not request.is_secure():
            if getattr(settings, 'HTTPS_SUPPORT', True):
                request_url = request.build_absolute_uri(request.get_full_path())
                secure_url = request_url.replace('http://', 'https://')
                return HttpResponseRedirect(secure_url)
        return view_func(request, *args, **kwargs)
    return _wrapped_view_func
</code></pre>
<p>Then on your&nbsp;view:
</p>
<pre><code>@secure_required
@login_required
def edit_member(request, slug):
    ...
</code></pre>
<h3>Moving between http and https&nbsp;pages</h3>
<p>It&#8217;s normal to use full path URLs like <code>/accounts/login/</code> and <code>/blog/</code>.  Bear in mind that if you are accessing the site over https and follow one of these links, you will also access them over https.  If you want to be explicit, you need to specify the protocol and domain in the links, e.g. <strong>https</strong>://example.com/accounts/login/ and <strong>http</strong>://example.co/blog/&nbsp;.</p>
<p>For $20 and a bit of config, you can secure logged-in sessions on your site and protect yourself and your users from being compromised by eavesdroppers.  There are still plenty of sites where this is overkill, but you can see now how easy it is to secure your Django site with&nbsp;<span class="caps">SSL</span>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2009/02/18/securing-django-with-ssl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy Job Boards Rebrand</title>
		<link>http://www.redrobotstudios.com/blog/2009/01/02/easy-job-boards-rebrand/</link>
		<comments>http://www.redrobotstudios.com/blog/2009/01/02/easy-job-boards-rebrand/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:52:56 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Easy Job Boards]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=17</guid>
		<description><![CDATA[We launched our hosted job board product a couple of months ago under the name “Fuselagejobs”.  Much as we liked the name and plane logo, it&#8217;s not obvious from the name that it&#8217;s an easy way to have your own&#160;job&#160;board.
Today we changed to easyjobboards.com with a fresh new logo and more obvious domain name. [...]]]></description>
			<content:encoded><![CDATA[<p>We launched our hosted job board product a couple of months ago under the name “Fuselagejobs”.  Much as we liked the name and plane logo, it&#8217;s not obvious from the name that it&#8217;s an easy way to have your own&nbsp;job&nbsp;board.</p>
<p>Today we changed to <a href="http://www.easyjobboards.com/">easyjobboards.com</a> with a fresh new logo and more obvious domain name.  We hope this will be much clearer to people who are looking for a hosted job board solution.  We chose “easy” to emphasise one of our key goals: make it easy for non-technical folks to start and run a&nbsp;job&nbsp;board.
</p>
<p>We have many improvements in the pipeline and we&#8217;d love to hear <a href="http://getsatisfaction.com/redrobotstudios/products/redrobotstudios_easyjobboards">your suggestions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2009/01/02/easy-job-boards-rebrand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling Subdomains in Django</title>
		<link>http://www.redrobotstudios.com/blog/2008/12/12/handling-subdomains-in-django/</link>
		<comments>http://www.redrobotstudios.com/blog/2008/12/12/handling-subdomains-in-django/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:46:57 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=35</guid>
		<description><![CDATA[This is the first part of our series on some of the more interesting tech we&#8217;ve developed for Red Robot Studios. We&#8217;re working from webserver up, so we thought that subdomains would be a good place to&#160;start.

Subdomains are useful when you want to host multiple sites with the same code and different data.  For [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first part of our series on some of the more interesting tech we&#8217;ve developed for <a href="http://www.redrobotstudios.com/">Red Robot Studios</a>. We&#8217;re working from webserver up, so we thought that subdomains would be a good place to&nbsp;start.
</p>
<p>Subdomains are useful when you want to host multiple sites with the same code and different data.  For example, providing websites for clubs where each club has its own subdomain.  In Django, you could have a <code>Club</code> model and some associated models holding data.  When a user visits <code>alpha.example.com</code>, you want to show the data from the <code>Club</code> model instance for <code>alpha</code>.</p>
<h4><span class="caps">DNS</span> Subdomains and&nbsp;Wildcards</h4>
<p>You could add individual subdomains using <span class="caps">DNS</span> <code>CNAME</code>s or <code>A</code> records, but if you want to generate objects in your Django app on the fly, have a look at wildcards.  To match any subdomain you add “*” as a subdomain.  It looks something&nbsp;like:
</p>
<p><code>*.example.com 14400 IN A 208.77.188.166</code>
</p>
<p>This will match <code>www.example.com</code> as well as <code>alpha.example.com</code>, <code>beta.example.com</code>,&nbsp;etc.
</p>
<h4>Webserver&nbsp;Wildcards</h4>
<p>The webserver config needs a similar setting so it knows to respond to any&nbsp;subdomain.
</p>
<p>In Nginx, it looks something&nbsp;like:
</p>
<pre><code>server {
    listen       208.77.188.166:80;
    server_name  example.com *.example.com;
...
</code></pre>
<p>In&nbsp;Apache:
</p>
<pre><code>&lt;VirtualHost 208.77.188.166&gt;
    ServerName example.com
    ServerAlias *.example.com
...
</code></pre>
<p>If you want to use <span class="caps">SSL</span> certificates on your subdomains, you need to get a “wildcard subdomain certificate”.  They cost more than a regular certificate, but are necessary to provide a valid certificate for any subdomain on your site.  We go ours from <a href="http://www.rapidsslonline.com/">RapidSSLOnline</a>.</p>
<p>This should be enough config for your Django app to receive requests for any subdomain. Now your Django app needs to respond appropriately for each&nbsp;subdomain.
</p>
<h4>Getting the Subdomain in&nbsp;Django</h4>
<p>There are a few different ways to do it, but we went with a piece of middleware that gets the subdomain from the request and retrieves a matching&nbsp;model.
</p>
<p>We have added two additional settings: <code>DOMAIN_MIDDLEWARE_MODEL</code> and <code>DOMAIN_MIDDLEWARE_INSTANCE_NAME</code> to our settings.py so we can specify the model which the middleware queries, and the name which the instance is given when added to our <code>request</code> instance.</p>
<pre><code>DOMAIN_MIDDLEWARE_MODEL = 'core.Club'
DOMAIN_MIDDLEWARE_INSTANCE_NAME = 'club'
</code></pre>
<p>The model is assumed to have a field named &#8220;slug&#8221;, which the middleware uses to match the subdomain against an instance of the&nbsp;model.
</p>
<p>Right, so let&#8217;s create our&nbsp;middleware:
</p>
<pre><code>class DomainMiddleware(object):
    """Gets the correct instance of an application-specific model by matching the
    sub-domain of the request."""

    def __init__(self):
        self.site_domain = Site.objects.get_current().domain
        if self.site_domain.startswith('www.'):
            self.site_domain = self.site_domain[4:]
        self.SUBDOMAIN_RE = re.compile(r'^(?:www\.)?(?P&lt;slug&gt;[\w-]+)\.%s' % re.escape(self.site_domain))
        try:
            app_name, model_name = settings.DOMAIN_MIDDLEWARE_MODEL.split('.', 2)
            self.model = get_model(app_name, model_name)
            self.instance_name = settings.DOMAIN_MIDDLEWARE_INSTANCE_NAME
            assert self.instance_name
        except (AttributeError, AssertionError):
            raise ImproperlyConfigured('DomainMiddleware requires DOMAIN_MIDDLEWARE_MODEL and DOMAIN_MIDDLEWARE_INSTANCE_NAME settings')
</code></pre>
<p>In our <code>init</code> method we do some basic setup like creating a regex which will match the subdomain slug, and loading in our model using <code>django.db.models.get_model</code> with the <code>app.model</code> args from <code>DOMAIN_MIDDLEWARE_MODEL</code>.</p>
<pre><code>    def process_view(self, request, view_func, view_args, view_kwargs):
        """If domain is not main site, check for subdomain.

        Get the model from the subdomain slug.
        """
        port = request.META.get('SERVER_PORT')
        domain = request.META.get('HTTP_HOST', '').replace(':%s' % port, '')
        if domain.startswith('www.'):
            domain = domain[4:]
        if domain != self.site_domain:
            match = self.SUBDOMAIN_RE.match(domain)
            if match:
                slug = match.group('slug')
                instance = get_object_or_404(self.model, slug=slug)
            setattr(request, self.instance_name, instance)
        return None
</code></pre>
<p>In <code>process_view</code> we grab the subdomain from the <code>HTTP_HOST</code> header of the request, and using <code>get_object_or_404</code> we load the correct instance of the model and set it as an attribute on our <code>request</code> object with the name given in <code>DOMAIN_MIDDLEWARE_INSTANCE_NAME</code>.</p>
<p>When someone goes to <code>alpha.example.com</code> the middleware picks out <code>alpha</code> and gets the <code>Club</code> instance with <code>slug=alpha</code> and adds it to <code>request</code> to be used in&nbsp;views.</p>
<p>The middleware uses <code>Site.objects.get_current()</code> to get the base <span class="caps">URL</span>, so make sure you have <code>Site</code> set up properly or none of your subdomains will&nbsp;match.
</p>
<p>The advantage of having the middleware load in the correct instance for you is that your views can simply use the <code>club</code> attribute to access all related data for this club.</p>
<pre><code>def index(request):
    members = request.club.members.approved().order_by('-creation_date')
    return list_detail.object_list(
        request                 = request,
        queryset                = members,
        template_name           = 'club/index.html',
        template_object_name    = 'member'
    )
</code></pre>
<p>This is extremely useful when you want to ensure that your data is correctly filtered: you don&#8217;t need to have each view filter based on the subdomain, which is pretty error-prone, and if you get it wrong a user&#8217;s data would end up on someone else&#8217;s page.  This way is a lot&nbsp;simpler.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2008/12/12/handling-subdomains-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Job Boards now with Submit, Analytics and API</title>
		<link>http://www.redrobotstudios.com/blog/2008/12/02/job-boards-now-with-submit-analytics-and-api/</link>
		<comments>http://www.redrobotstudios.com/blog/2008/12/02/job-boards-now-with-submit-analytics-and-api/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 16:58:23 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Easy Job Boards]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=15</guid>
		<description><![CDATA[Instead of launching a separate version of Fuselagejobs we decided to tighten our focus and add new features to the existing&#160;job&#160;boards.


     You can now allow visitors to submit job listings to your job board.  If you approve the job listing, it will be displayed on your&#160;job&#160;board.
 

    [...]]]></description>
			<content:encoded><![CDATA[<p>Instead of launching a separate version of <a href="http://www.fuselagejobs.com/">Fuselagejobs</a> we decided to tighten our focus and add new features to the existing&nbsp;job&nbsp;boards.</p>
<ul>
<li>
     You can now allow visitors to submit job listings to your job board.  If you approve the job listing, it will be displayed on your&nbsp;job&nbsp;board.
 </li>
<li>
     We&#8217;ve improved the management interface where you can add and manage jobs and&nbsp;contact&nbsp;details.
 </li>
<li>
     You can now use <a href="http://www.google.com/analytics/">Google Analytics</a> to track visitors to your&nbsp;job&nbsp;board.
 </li>
<li>
     We added a lightweight JSON API to make it easier to display your jobs on other websites.  Widgets&nbsp;coming&nbsp;soon.
 </li>
<li>
     We&#8217;re confident these new features make the job boards more useful and better value.  We&#8217;d love to <a href="http://getsatisfaction.com/redrobotstudios/products/redrobotstudios_fuselagejobs">hear your feedback</a> on these changes or anything you&#8217;d like&nbsp;to&nbsp;see.
 </li>
<li>
<p>     Get your own job board now on <a href="http://www.fuselagejobs.com/">Fuselagejobs</a> &#8211; it&#8217;s free&nbsp;to&nbsp;try.
 </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2008/12/02/job-boards-now-with-submit-analytics-and-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why we launched a Job Board app</title>
		<link>http://www.redrobotstudios.com/blog/2008/12/02/why-we-launched-a-job-board-app/</link>
		<comments>http://www.redrobotstudios.com/blog/2008/12/02/why-we-launched-a-job-board-app/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 16:42:44 +0000</pubDate>
		<dc:creator>Scott Barnham</dc:creator>
				<category><![CDATA[Easy Job Boards]]></category>

		<guid isPermaLink="false">http://www.redrobotstudios.com/blog2/?p=11</guid>
		<description><![CDATA[Our first product is Fuselagejobs which lets you easily start your own job board and list job vacancies online.  It might seem like a strange choice for a hosted web application.  Job listings have been on the web for a long time and there are established big players as well as open source [...]]]></description>
			<content:encoded><![CDATA[<p>Our first product is <a href="http://www.fuselagejobs.com/">Fuselagejobs</a> which lets you easily start your own job board and list job vacancies online.  It might seem like a strange choice for a hosted web application.  Job listings have been on the web for a long time and there are <a href="http://www.jobster.com/">established</a> <a href="http://www.monster.com/">big players</a> as well as <a href="http://www.jobberbase.com/">open source</a> alternatives.  So where do we&nbsp;fit&nbsp;in?</p>
<h4>Big&nbsp;Players</h4>
<p>The big job databases have lots of traffic, lots of employers and lots of candidates.  They list jobs from different industries and rely on search to find what you are looking for.  That&#8217;s ok, but maybe not the best way for candidates to find interesting jobs and for employers to find the best candidates.  It all seems very big&nbsp;and&nbsp;impersonal.
</p>
<h4>Niche&nbsp;Job&nbsp;Boards</h4>
<p>Small job boards that target an industry niche or geographical area are becoming popular.  We saw great success with <a href="http://djangogigs.com/">Djangogigs</a>, a job board for web developers who use the <a href="http://www.djangoproject.com/">Django framework</a>.  That&#8217;s a good example of a tightly-focussed industry niche.  It was launched over a year ago and has had over 500 jobs submitted so far.  It quickly became the de facto place for employers to post job ads and candidates to look for work in&nbsp;that&nbsp;niche.</p>
<p>Many of the <a href="http://gigaom.com/">large</a> <a href="http://www.techcrunch.com/">blogs</a> and <a href="http://jobs.37signals.com/">other websites</a> with a lot of users have started their own job boards as a way of helping their community and generating some revenue.  The jobs are focussed enough that they are interesting to the website regulars.  Employers pay to advertise knowing the people who see their job adverts are the type of candidates they&#8217;d like&nbsp;to&nbsp;attract.
</p>
<h4>DIY&nbsp;for&nbsp;non-geeks</h4>
<p>So why not use one of the open source packages to set up your own job board?  You could if you have the technical skills or have staff to do that for you.  If you don&#8217;t want to wait for the IT guys or in-house developers to get round to it, <a href="http://www.fuselagejobs.com/">Fuselagejobs</a> is a good alternative.  It&#8217;s easy to use, requires no technical skills and is fully hosted.  Just <a href="http://www.fuselagejobs.com/accounts/signup/">sign up</a> and start adding jobs&nbsp;within&nbsp;minutes.
</p>
<h4>Innovation</h4>
<p>A basic job board is pretty easy to develop, but we think there&#8217;s room for innovation to make it easier for the right candidates to find the right jobs.  As always, we&#8217;re keen to <a href="http://getsatisfaction.com/redrobotstudios/products/redrobotstudios_fuselagejobs">hear your feedback</a> on what you&#8217;d like job boards to do&nbsp;for&nbsp;you.</p>
<p>So that&#8217;s why we launched a job&nbsp;board&nbsp;app!
</p>
<p>Check out <a href="http://www.fuselagejobs.com/">Fuselagejobs</a> and create your own job board&nbsp;for&nbsp;free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redrobotstudios.com/blog/2008/12/02/why-we-launched-a-job-board-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
