<?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>devexp &#187; Symfony</title>
	<atom:link href="http://www.devexp.eu/tag/symfony/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devexp.eu</link>
	<description>DEVelopment EXPerience, shared with the world!</description>
	<lastBuildDate>Tue, 16 Feb 2010 14:38:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to force symfony colors on windows with PuttyCyg?</title>
		<link>http://www.devexp.eu/2009/09/22/how-to-force-symfony-colors-on-windows-with-cygwinputtycyg/</link>
		<comments>http://www.devexp.eu/2009/09/22/how-to-force-symfony-colors-on-windows-with-cygwinputtycyg/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 13:18:14 +0000</pubDate>
		<dc:creator>Van de Voorde Toni</dc:creator>
				<category><![CDATA[Framework]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=936</guid>
		<description><![CDATA[Those of you who’re developing with symfony under windows will have noticed that, when running tasks in the command prompt, no colors are used. This is because the windows command prompt isn’t compatible with the color notation. Most of you also have cygwin installed (shame on you if you didn’t :p). But even if you [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/09/22/how-to-force-symfony-colors-on-windows-with-cygwinputtycyg/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Interview: Stefan Koopmanschap</title>
		<link>http://www.devexp.eu/2009/09/22/interview-stefan-koopmanschap/</link>
		<comments>http://www.devexp.eu/2009/09/22/interview-stefan-koopmanschap/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 06:24:18 +0000</pubDate>
		<dc:creator>van Rumste Kenneth</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Koopmanschap]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Stefan]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=928</guid>
		<description><![CDATA[A few weeks ago I thought it might be cool to get some interesting guys, which are occupied with projects in PHP, interviewed. And guess what, we got on contact with Mr. Stefan Koopmanschap and he was kind enough to answer all our questions. Stefan Koopmanschap (&#8216;left&#8217;) is a PHP developer, consultant and trainer with [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/09/22/interview-stefan-koopmanschap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic forms with Symfony</title>
		<link>http://www.devexp.eu/2009/04/30/basic-forms-with-symfony/</link>
		<comments>http://www.devexp.eu/2009/04/30/basic-forms-with-symfony/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 11:12:57 +0000</pubDate>
		<dc:creator>van Rumste Kenneth</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=726</guid>
		<description><![CDATA[Our goal is to create a little crud that contains 4 fields id (auto increment integer) name (varchar 50) value (double) type (0 or 1) What I will explain is how to change your fields in the form after creation with generation of a module. So we start with a clean module that contains 1 [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/04/30/basic-forms-with-symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony Form: unsetAllFieldsExcept()</title>
		<link>http://www.devexp.eu/2009/04/27/symfony-form-unsetallfieldsexcept/</link>
		<comments>http://www.devexp.eu/2009/04/27/symfony-form-unsetallfieldsexcept/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 12:37:31 +0000</pubDate>
		<dc:creator>Van de Voorde Toni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[form]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=706</guid>
		<description><![CDATA[When creating forms in symfony which extends from a Base (ORM) class, you sometimes do not need all fields that Propel/Doctrine generates for you. If you want to remove them you have several ways to do so. 1. Unset the fiels you don&#8217;t need. public function configure() { unset($this['field1'], $this['field2'], ... ); } Simple way [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/04/27/symfony-form-unsetallfieldsexcept/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>sfWidgetFormInputCheckbox unchecked bug</title>
		<link>http://www.devexp.eu/2009/04/23/sfwidgetforminputcheckbox-unchecked-bug/</link>
		<comments>http://www.devexp.eu/2009/04/23/sfwidgetforminputcheckbox-unchecked-bug/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 12:33:37 +0000</pubDate>
		<dc:creator>Van de Voorde Toni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[sfWidgetFormInputCheckbox]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=681</guid>
		<description><![CDATA[Ever tried to create a Symfony form with a check box input field, which by default should be unchecked ? No ? Well read on because it&#8217;s not that easy . This would be the code to print a check box input field in a Symfony form: class CheckboxForm extends BaseCheckboxForm { public function configure() [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/04/23/sfwidgetforminputcheckbox-unchecked-bug/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Interesting People &#8211; part 1: Fabien Potencier</title>
		<link>http://www.devexp.eu/2009/04/04/interesting-people-part-1-fabien-potencier/</link>
		<comments>http://www.devexp.eu/2009/04/04/interesting-people-part-1-fabien-potencier/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 09:03:21 +0000</pubDate>
		<dc:creator>van Rumste Kenneth</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[fabien Potencier]]></category>
		<category><![CDATA[lead developer]]></category>
		<category><![CDATA[sensio]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=543</guid>
		<description><![CDATA[Nothing better to get inspiration from then a nice cup of Nespresso in the evening. We are working with Symfony for a few months (years) now and I was wondering earlier this day: Who are the guys that are able to produce such a nice piece of software? You got to admit it that the [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/04/04/interesting-people-part-1-fabien-potencier/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Symfony Forms Framework: Merge 2 forms</title>
		<link>http://www.devexp.eu/2009/03/19/symfony-forms-framework-merge-2-forms/</link>
		<comments>http://www.devexp.eu/2009/03/19/symfony-forms-framework-merge-2-forms/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 11:02:22 +0000</pubDate>
		<dc:creator>Van de Voorde Toni</dc:creator>
				<category><![CDATA[Framework]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=462</guid>
		<description><![CDATA[Recently I had to create a form to create/update users in our system. Some time ago we decided to save are users in 2 tables. The first table would contain all login information and the second his personal information. This is a simple example of the DB design: I would not recommend doing this for [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/03/19/symfony-forms-framework-merge-2-forms/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Symfony Forms Framework: Change validators at runtime.</title>
		<link>http://www.devexp.eu/2009/02/15/symfony-forms-framework-change-validators-at-runtime/</link>
		<comments>http://www.devexp.eu/2009/02/15/symfony-forms-framework-change-validators-at-runtime/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 09:34:12 +0000</pubDate>
		<dc:creator>Van de Voorde Toni</dc:creator>
				<category><![CDATA[Framework]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[form]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=374</guid>
		<description><![CDATA[Let’s say you have to make a user form with password fields. When you create the user you want the password fields to be required, but on an update the password fields should be optional because you don’t want the user the fill in his password on each update. This is tricky because in the [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/02/15/symfony-forms-framework-change-validators-at-runtime/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>symfony 1.3</title>
		<link>http://www.devexp.eu/2009/01/26/symfony-13/</link>
		<comments>http://www.devexp.eu/2009/01/26/symfony-13/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 07:39:47 +0000</pubDate>
		<dc:creator>van Rumste Kenneth</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=307</guid>
		<description><![CDATA[symfony announced a new release in November 2009 and will be going from 1.2 to 1.3. It’s wonderful that these guys are thinking ahead and keeping us up to date. Why is this important, you ask? Well would you invest in software that isn’t trying to evolve to a better version, to a more reliable [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2009/01/26/symfony-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jobeet</title>
		<link>http://www.devexp.eu/2008/12/03/jobeet/</link>
		<comments>http://www.devexp.eu/2008/12/03/jobeet/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 06:53:12 +0000</pubDate>
		<dc:creator>van Rumste Kenneth</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[24]]></category>
		<category><![CDATA[askeet]]></category>
		<category><![CDATA[jobeet]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.devexp.eu/?p=251</guid>
		<description><![CDATA[Symfony, ah we just love the framework&#8230; A year ago we started using this php framework and we wrote a post on it a few months ago (read). In 2005 the creators of Symfony wrote a step by step tutorial on how to build a website with their framework. For me and my colleagues, this [...]]]></description>
		<wfw:commentRss>http://www.devexp.eu/2008/12/03/jobeet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
