<?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>So little to say... so much time.</title>
	<atom:link href="http://blog.honnecke.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.honnecke.us</link>
	<description>Inside jokes and things that I can&#039;t be bothered to search for again</description>
	<lastBuildDate>Sat, 07 Aug 2010 22:47:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using sfDoctrineGuardUser&#8217;s external authentication</title>
		<link>http://blog.honnecke.us/2010/01/using-sfdoctrineguardusers-external-authentication/</link>
		<comments>http://blog.honnecke.us/2010/01/using-sfdoctrineguardusers-external-authentication/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:06:03 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[doctrine]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=117</guid>
		<description><![CDATA[sfDoctrineGuardUser has a neat ability to allow you to use an external (the examples are all for LDAP, but would work for anything) authentication process for authenticating your users.
This is really helpful, assuming that you don&#8217;t mind manually adding all users in the LDAP directory to the sf_guard_user table.  This is because the way [...]]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2010/01/using-sfdoctrineguardusers-external-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding login form in your homepage with symfony</title>
		<link>http://blog.honnecke.us/2010/01/embedding-login-form-in-your-homepage-with-symfony/</link>
		<comments>http://blog.honnecke.us/2010/01/embedding-login-form-in-your-homepage-with-symfony/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 03:34:19 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=108</guid>
		<description><![CDATA[
add this to your action (taken from sfGuardAuthActions)

    $class = sfConfig::get('app_sf_guard_plugin_signin_form', 'sfGuardFormSignin');
    $this-&#62;form = new $class();


add this to your template (from the sfGuardAuth template)

      &#60;form action=&#34;&#60;?php echo url_for('@sf_guard_signin') ?&#62;&#34;
                [...]]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2010/01/embedding-login-form-in-your-homepage-with-symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Correct jq_button_to_remote complete handler response var</title>
		<link>http://blog.honnecke.us/2009/10/correct-jq_button_to_remote-complete-handler-response-var/</link>
		<comments>http://blog.honnecke.us/2009/10/correct-jq_button_to_remote-complete-handler-response-var/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:58:08 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=101</guid>
		<description><![CDATA[Symfony docs claim that in the &#8216;complete&#8217; callback you have access to the response as request.responseText.
From svn

 * To access the server response, use &#8216;request.responseText&#8217;, to
 * find out the HTTP status, use &#8216;request.status&#8217;.

This has not been my experience. When inspecting the variables in scope, I was only able to find, and subsequently access

XMLHttpRequest.responseText;
XMLHttpRequest.status;

]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/10/correct-jq_button_to_remote-complete-handler-response-var/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manually set a breakpoint in safari (and in chrome on OSX)</title>
		<link>http://blog.honnecke.us/2009/10/manually-set-a-breakpoint-in-safari/</link>
		<comments>http://blog.honnecke.us/2009/10/manually-set-a-breakpoint-in-safari/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:33:10 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=92</guid>
		<description><![CDATA[To manually set a breakpoint add the line &#8216;debugger;&#8217;
So if I have some js in an onclick, and I&#8217;m trying to look at the scope there, just add &#8216;debugger;&#8217; to the onclick.


click me


]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/10/manually-set-a-breakpoint-in-safari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding custom fields to the admin generator</title>
		<link>http://blog.honnecke.us/2009/10/adding-custom-fields-to-the-admin-generator/</link>
		<comments>http://blog.honnecke.us/2009/10/adding-custom-fields-to-the-admin-generator/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:17:58 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[doctrine]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=86</guid>
		<description><![CDATA[The documentation leaves out one thing in regard to adding your own &#8220;virtual field&#8221; to the admin generator.  In addition to everything in the docs, You have to override the toArray method.
The documentation says:
Custom Fields
As a matter of fact, the fields configured in generator.yml don&#8217;t even need to correspond to actual columns defined in [...]]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/10/adding-custom-fields-to-the-admin-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Admin Generator Filters in Symfony Using Doctrine</title>
		<link>http://blog.honnecke.us/2009/10/customizing-admin-generator-filters-in-symfony-using-doctrine/</link>
		<comments>http://blog.honnecke.us/2009/10/customizing-admin-generator-filters-in-symfony-using-doctrine/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:31:54 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[doctrine]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=57</guid>
		<description><![CDATA[How to extend the existing filters in the symfony doctrine admin generator
Here is our (simplified) schema:

Group: [id, group_name]
User: [username, group_id]
Phonenumber: [user_id, num]

Groups contain many users, and users contain many phone numbers.
The prebuilt admin generator will allow you to filter on any of the existing fields in the table for the object that you are viewing, [...]]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/10/customizing-admin-generator-filters-in-symfony-using-doctrine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t let idiots make file extensions&#8230;</title>
		<link>http://blog.honnecke.us/2009/05/dont-let-idiots-make-file-extensions/</link>
		<comments>http://blog.honnecke.us/2009/05/dont-let-idiots-make-file-extensions/#comments</comments>
		<pubDate>Tue, 05 May 2009 20:08:36 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/2009/05/dont-let-idiots-make-file-extensions/</guid>
		<description><![CDATA[
The thing is, there are like ten of them.  That means that ten people thought &#8220;hey, you know what would make a great file extension? ASS!&#8221;
]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/05/dont-let-idiots-make-file-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unhappy Hour?</title>
		<link>http://blog.honnecke.us/2009/05/not-such-a-great-deal/</link>
		<comments>http://blog.honnecke.us/2009/05/not-such-a-great-deal/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:15:17 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=45</guid>
		<description><![CDATA[
]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/05/not-such-a-great-deal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make safari open links in new tab</title>
		<link>http://blog.honnecke.us/2009/04/make-safari-open-links-in-new-tab/</link>
		<comments>http://blog.honnecke.us/2009/04/make-safari-open-links-in-new-tab/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:04:03 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=41</guid>
		<description><![CDATA[To force safari to open links that would otherwise have been opened in a new window (target=_blank) to open in new tabs instead:

defaults write com.apple.Safari TargetedClicksCreateTabs -bool true

]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/04/make-safari-open-links-in-new-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing screenshot file location in osx</title>
		<link>http://blog.honnecke.us/2009/04/changing-screenshot-file-location-in-osx/</link>
		<comments>http://blog.honnecke.us/2009/04/changing-screenshot-file-location-in-osx/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 03:32:22 +0000</pubDate>
		<dc:creator>ashton</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://blog.honnecke.us/?p=37</guid>
		<description><![CDATA[
$ defaults write com.apple.screencapture location /Users/ashton/Pictures/Screenshots/
$ killall -HUP SystemUIServer

]]></description>
		<wfw:commentRss>http://blog.honnecke.us/2009/04/changing-screenshot-file-location-in-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

