<?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>Symfony planet</title>
	<atom:link href="http://symfony.lab216.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://symfony.lab216.com</link>
	<description>A planet for the symfony world</description>
	<lastBuildDate>Wed, 08 Sep 2010 15:41:17 +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>Unit  Test to check the configuration of sending emails in symfony 1.4 (c / SwiftMailer)</title>
		<link>http://snippets.symfony-project.org/snippet/441</link>
		<comments>http://snippets.symfony-project.org/snippet/441#comments</comments>
		<pubDate>Wed, 08 Sep 2010 15:41:17 +0000</pubDate>
		<dc:creator>Latest snippets</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">441</guid>
		<description><![CDATA[[code] 
&#60;?php
/**
 * test/unit/maillerTest.php
 *
 * @author     Gilmar Pupo 
 * 
 *  Unit Test to check the configuration of sending emails in symfony 1.4 (c / SwiftMailer)
 */

require_once dirname(__FILE__).'/../bootstrap/unit.php';
$t = new lime_test(1);
require_once sfConfig::get('sf_symfony_lib_dir').'/vendor/swiftmailer/classes/Swift.php';
Swift::registerAutoload();
sfMailer::initialize();
$dispatcher = new sfEventDispatcher();
$factories = sfYaml::load(sfConfig::get('sf_root_dir') . '/apps/backend/config/factories.yml');
$mailer = new sfMailer($dispatcher, $factories['all']['mailer']['param']);
$message = Swift_Message::newInstance('Subject test')
  -&#62;setFrom(sfConfig::get('app_contact_emailfrom', 'from@noreply.com'))
  -&#62;setTo(array('g@g1mr.com' =&#62; 'Gilmar Pupo'))
  -&#62;setBody('Email content');
$numSent = $mailer-&#62;send($message);
$t-&#62;ok( $numSent &#62; 0 );

[/code]]]></description>
			<content:encoded><![CDATA[<pre class="php"><span class="kw2">&lt;?php</span>
<span class="coMULTI">/**
 * test/unit/maillerTest.php
 *
 * @author     Gilmar Pupo &lt;g@g1mr.com&gt;
 * 
 *  Unit Test to check the configuration of sending emails in symfony 1.4 (c / SwiftMailer)
 */</span>
&nbsp;
<span class="kw1">require_once</span> <a href="http://www.php.net/dirname"><span class="kw3">dirname</span></a><span class="br0">&#40;</span><span class="kw2">__FILE__</span><span class="br0">&#41;</span>.<span class="st0">'/../bootstrap/unit.php'</span>;
<span class="re0">$t</span> = <span class="kw2">new</span> lime_test<span class="br0">&#40;</span><span class="nu0">1</span><span class="br0">&#41;</span>;
<span class="kw1">require_once</span> sfConfig::<span class="me2">get</span><span class="br0">&#40;</span><span class="st0">'sf_symfony_lib_dir'</span><span class="br0">&#41;</span>.<span class="st0">'/vendor/swiftmailer/classes/Swift.php'</span>;
Swift::<span class="me2">registerAutoload</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
sfMailer::<span class="me2">initialize</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
<span class="re0">$dispatcher</span> = <span class="kw2">new</span> sfEventDispatcher<span class="br0">&#40;</span><span class="br0">&#41;</span>;
<span class="re0">$factories</span> = sfYaml::<span class="me2">load</span><span class="br0">&#40;</span>sfConfig::<span class="me2">get</span><span class="br0">&#40;</span><span class="st0">'sf_root_dir'</span><span class="br0">&#41;</span> . <span class="st0">'/apps/backend/config/factories.yml'</span><span class="br0">&#41;</span>;
<span class="re0">$mailer</span> = <span class="kw2">new</span> sfMailer<span class="br0">&#40;</span><span class="re0">$dispatcher</span>, <span class="re0">$factories</span><span class="br0">&#91;</span><span class="st0">'all'</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">'mailer'</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">'param'</span><span class="br0">&#93;</span><span class="br0">&#41;</span>;
<span class="re0">$message</span> = Swift_Message::<span class="me2">newInstance</span><span class="br0">&#40;</span><span class="st0">'Subject test'</span><span class="br0">&#41;</span>
  -&gt;<span class="me1">setFrom</span><span class="br0">&#40;</span>sfConfig::<span class="me2">get</span><span class="br0">&#40;</span><span class="st0">'app_contact_emailfrom'</span>, <span class="st0">'from@noreply.com'</span><span class="br0">&#41;</span><span class="br0">&#41;</span>
  -&gt;<span class="me1">setTo</span><span class="br0">&#40;</span><a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="st0">'g@g1mr.com'</span> =&gt; <span class="st0">'Gilmar Pupo'</span><span class="br0">&#41;</span><span class="br0">&#41;</span>
  -&gt;<span class="me1">setBody</span><span class="br0">&#40;</span><span class="st0">'Email content'</span><span class="br0">&#41;</span>;
<span class="re0">$numSent</span> = <span class="re0">$mailer</span>-&gt;<span class="me1">send</span><span class="br0">&#40;</span><span class="re0">$message</span><span class="br0">&#41;</span>;
<span class="re0">$t</span>-&gt;<span class="me1">ok</span><span class="br0">&#40;</span> <span class="re0">$numSent</span> &gt; <span class="nu0">0</span> <span class="br0">&#41;</span>;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=840</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New application: WIKING Website</title>
		<link>http://symfonians.net/application/wiking-website</link>
		<comments>http://symfonians.net/application/wiking-website#comments</comments>
		<pubDate>Tue, 07 Sep 2010 10:16:21 +0000</pubDate>
		<dc:creator>Symfonians Fresh Applications</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">8a68508ec5c989d72b17aca38bd63aa8</guid>
		<description><![CDATA[

  Tags:
    
    b2b solution  
    
    collectors  
    
    e-commerce  
    
    miniatures  
[...]]]></description>
			<content:encoded><![CDATA[
<ul class="tags">
  <li><small>Tags:</small></li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/b2b+solution">b2b solution</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/collectors">collectors</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/e-commerce">e-commerce</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/miniatures">miniatures</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/model+cars">model cars</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/retailer+online+shop">retailer online shop</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/toy+models">toy models</a>  </li>
  </ul>

<div class="summary">
  <p>WIKING Modellbau manufactures true to original high quality car miniatures for collectors only (all scales from 1:32 to 1:160). It is a well established German trademark, enjoying a long tradition. The website is designed to provide collectors with alle kinds of information concerning new releases and model upgrades (mostly adult collectors). Since October 2010 a restricted area provides various information for retailers including a b2b onlineshop application. The site is multilingual (german and english).</p></div>

<h3>Project metrics</h3>
<ul class="properties">
    <li class="clock_play">
    Development started on November 2009</li>
      <li class="clock_stop">
    Application released on February 2010</li>
      <li class="clock">
    Application has been released in 3 months</li>
  </ul>

  <p class="homepage">
    Homepage: <a href="http://www.wiking.de">http://www.wiking.de</a>      </p>

<div class="licence">
  <h3>Licence informations</h3>
      This application is closed source  </div>

<div class="seealso">
  <h3>See also</h3>
  <ul>
        <li><a href="http://symfonians.net/applications/country/DE">Other applications from Germany</a></li>
      </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/qXHiBjxA8WOXTC75DSEvFj4UxQI/0/da"><img src="http://feedads.g.doubleclick.net/~a/qXHiBjxA8WOXTC75DSEvFj4UxQI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qXHiBjxA8WOXTC75DSEvFj4UxQI/1/da"><img src="http://feedads.g.doubleclick.net/~a/qXHiBjxA8WOXTC75DSEvFj4UxQI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=839</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job offer: développeur web Front &#8211; PHP / HTML / CSS</title>
		<link>http://symfonians.net/job/developpeur-web-front-php-html-css</link>
		<comments>http://symfonians.net/job/developpeur-web-front-php-html-css#comments</comments>
		<pubDate>Mon, 06 Sep 2010 19:45:58 +0000</pubDate>
		<dc:creator>Symfonians recent job offers</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">0e5078fc0165181208b1d296c222c670</guid>
		<description><![CDATA[

      Proposed by Game.Recrutement on 2010-09-06.    


  
    Teleworking: no  
    
    Budget: [...]]]></description>
			<content:encoded><![CDATA[
<p><strong>
      Proposed by <a title="Access Game.Recrutement's profile" href="http://symfonians.net/person/Game.Recrutement">Game.Recrutement</a> on 2010-09-06.    </strong></p>

<div class="more_infos">
  <p class="teleworking-no">
    Teleworking: no  </p>
    <p class="budget">
    Budget: A d&eacute;finir  </p>
      <p class="place">
    Place: Paris (France)  </p>
  </div>

  <p>Pour mon client des d&eacute;veloppeurs web front avec comp&eacute;tences en PHP, HTML, CSS et JS.</p>

<p>Connaissance de Symfony, GIT et de Facebook est un plus.</p>

<p>Postes &agrave; pourvoir imm&eacute;diatement sur Paris (centre). Soci&eacute;t&eacute; d&#039;une 50aine de personnes dans l&#039;univers du jeu sur r&eacute;seaux sociaux (Facebook).</p>

<p>Soci&eacute;t&eacute; en forte progression, caract&egrave;re motivant du travail et ambiance sympathique ind&eacute;niables.</p>

<p>Envoyer CV &agrave; : game.recrutement &ndash; at - gmail.com
</p>
  <h3>
        Game.Recrutement  </h3>
  

<div class="seealso">
  <h3>See also</h3>
  <ul>
                    <li><a href="http://symfonians.net/jobs/country/FR/city/Paris">Other job offers in Paris (France)</a></li>
            </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/NNI0Q69aGW-DCEWuWqZwv_u7QLQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/NNI0Q69aGW-DCEWuWqZwv_u7QLQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NNI0Q69aGW-DCEWuWqZwv_u7QLQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/NNI0Q69aGW-DCEWuWqZwv_u7QLQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=837</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job offer: Lead Développeur PHP / MYSQL – (Jeux web et Facebook)</title>
		<link>http://symfonians.net/job/lead-developpeur-php-mysql-jeux-web-et-facebook</link>
		<comments>http://symfonians.net/job/lead-developpeur-php-mysql-jeux-web-et-facebook#comments</comments>
		<pubDate>Mon, 06 Sep 2010 19:41:35 +0000</pubDate>
		<dc:creator>Symfonians recent job offers</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">14386ec97c87af2d618d2e8dfec259af</guid>
		<description><![CDATA[

      Proposed by Game.Recrutement on 2010-09-06.    


  
    Teleworking: no  
    
    Budget: [...]]]></description>
			<content:encoded><![CDATA[
<p><strong>
      Proposed by <a title="Access Game.Recrutement's profile" href="http://symfonians.net/person/Game.Recrutement">Game.Recrutement</a> on 2010-09-06.    </strong></p>

<div class="more_infos">
  <p class="teleworking-no">
    Teleworking: no  </p>
    <p class="budget">
    Budget: Selon candidat  </p>
      <p class="place">
    Place: Paris (France)  </p>
  </div>

  <p>Lead D&eacute;veloppeur PHP / MYSQL &ndash; (Jeux web et Facebook)</p>

<p>Mon client recrute des : Lead D&eacute;veloppeur PHP / MYSQL</p>

<p>Secteur d&rsquo;activit&eacute; : D&eacute;veloppement et &eacute;dition de jeux web et Facebook
<br />Intitul&eacute; du poste : Lead D&eacute;veloppeur PHP / MySQL
<br />Localisation : Paris
<br />Taille de la structure : 20+ avec fort potentiel de croissance
<br />Type de poste : CDI
<br />Date d&rsquo;embauche : ASAP
<br />Salaire : A d&eacute;finir selon exp&eacute;rience
<br />Mots clefs : Web games, facebook, cloud computing, architecture scalable, management</p>

<p>Comp&eacute;tences techniques : </p>

<p>LAMP :
<br />Linux : Bonne Ma&icirc;trise - obligatoire
<br />PHP : Excellente ma&icirc;trise (expert) - obligatoire
<br />MySQL : Bonne ma&icirc;trise - obligatoire
<br />Apache : Bonne Ma&icirc;trise &ndash; obligatoire</p>

<p>Autres comp&eacute;tences :</p>

<p>Management d&rsquo;&eacute;quipe</p>

<p>Comp&eacute;tences et connaissances constituant un plus :</p>

<p>Framework PHP Symfony
<br />Experience de developpement internet a forte charge
<br />D&eacute;veloppement Facebook
<br />D&eacute;veloppement jeux web
<br />Utilisation d&#039;un framework MVC
<br />Ma&icirc;trise de solutions de d&eacute;veloppement B2C
<br />Connaissance de Python
<br />Connaissances Cloud Computing</p>

<p>Autres comp&eacute;tences :</p>

<p>Anglais : Lu, &eacute;crit, parl&eacute;</p>

<p>Votre personnalit&eacute; :</p>

<p>Technique, dynamique, enthousiaste, curieux, rigoureux, autonome, charismatique</p>

<p>Vous &ecirc;tes la / le candidat(e) id&eacute;al(e) ? Envoyez votre CV &agrave; : game.recrutement &ndash; at - gmail.com
</p>
  <h3>
        Game.Recrutement  </h3>
  

<div class="seealso">
  <h3>See also</h3>
  <ul>
                    <li><a href="http://symfonians.net/jobs/country/FR/city/Paris">Other job offers in Paris (France)</a></li>
            </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/SDV4A7WNhQt-q1P38djVhrId5iA/0/da"><img src="http://feedads.g.doubleclick.net/~a/SDV4A7WNhQt-q1P38djVhrId5iA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SDV4A7WNhQt-q1P38djVhrId5iA/1/da"><img src="http://feedads.g.doubleclick.net/~a/SDV4A7WNhQt-q1P38djVhrId5iA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=838</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job offer: Analista-programador</title>
		<link>http://symfonians.net/job/analista-programador</link>
		<comments>http://symfonians.net/job/analista-programador#comments</comments>
		<pubDate>Mon, 06 Sep 2010 17:14:07 +0000</pubDate>
		<dc:creator>Symfonians recent job offers</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">723eff50a9bb1d83e3d3d6b8fb330997</guid>
		<description><![CDATA[

      Proposed by the Worthidea company 3 days ago.        Offer will expire on September, 30 2010[...]]]></description>
			<content:encoded><![CDATA[
<p><strong>
      Proposed by the <a href="http://symfonians.net/company/worthidea">Worthidea</a> company 3 days ago.        Offer will expire on September, 30 2010.  </strong></p>

<div class="more_infos">
  <p class="teleworking-no">
    Teleworking: no  </p>
      <p class="place">
    Place: Madrid (Spain)  </p>
  </div>

  <p>Buscamos un analista-programador con un m&iacute;nimo de 2 a&ntilde;os de experiencia con PHP y un m&iacute;nimo de 6 meses de uso del framework Symfony.</p>

<p>El perfil que buscamos:
<br />- Con ganas de trabajar en un equipo joven
<br />- Conocimiento avanzado del framework y con ganas de profundizar m&aacute;s
<br />- Con ganas de entrar en una empresa con gran capacidad de crecimiento</p>

<p>Incorporaci&oacute;n inmediata.</p>
  <h3>
          <img style="height:16px;vertical-align:baseline" src="http://symfonians.net/uploads/companies/919b4eb4e23c5daeb06774048a9bed40.jpg" alt="919b4eb4e23c5daeb06774048a9bed40" />        Worthidea  </h3>
  
<div class="localization adr">
    
        <span class="city locality">
      Madrid    </span>
      <div class="country country-name">
    Spain  </div>
  <a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;time=&amp;date=&amp;ttype=&amp;q=Madrid+%2C+Spain+%28Worthidea%29&amp;ie=UTF8&amp;z=16&amp;iwloc=addr&amp;om=1">Locate this company on a map</a></div>

<div class="contact">
  <h3>Contact</h3>
    <div class="phone tel">
    Phone:    +34 91 164 36 89  </div>
      <div class="homepage">
    <a class="url" href="http://www.worthidea.com">Website</a>  </div>
      <div class="email">
    <a href="http://symfonians.net/company/worthidea/contact">Contact Worthidea by mail</a>  </div>
  </div>
<div class="seealso">
  <h3>See also</h3>
  <ul>
        <li><a href="http://symfonians.net/jobs/company/worthidea">Other job offers from Worthidea</a></li>
                    <li><a href="http://symfonians.net/jobs/country/ES/city/Madrid">Other job offers in Madrid (Spain)</a></li>
            </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/FVYZco8NbONgNgqcsD7Y6Zi8omY/0/da"><img src="http://feedads.g.doubleclick.net/~a/FVYZco8NbONgNgqcsD7Y6Zi8omY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FVYZco8NbONgNgqcsD7Y6Zi8omY/1/da"><img src="http://feedads.g.doubleclick.net/~a/FVYZco8NbONgNgqcsD7Y6Zi8omY/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=836</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job offer: Devellopeur PHP / objet symfony</title>
		<link>http://symfonians.net/job/devellopeur-php-objet-symfony</link>
		<comments>http://symfonians.net/job/devellopeur-php-objet-symfony#comments</comments>
		<pubDate>Mon, 06 Sep 2010 15:54:31 +0000</pubDate>
		<dc:creator>Symfonians recent job offers</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">142b3a01a90eff51952d51490c89272c</guid>
		<description><![CDATA[

      Proposed by the LeakID company 3 days ago.    


  
    Teleworking: no  
    
    Budget: a[...]]]></description>
			<content:encoded><![CDATA[
<p><strong>
      Proposed by the <a href="http://symfonians.net/company/leakid">LeakID</a> company 3 days ago.    </strong></p>

<div class="more_infos">
  <p class="teleworking-no">
    Teleworking: no  </p>
    <p class="budget">
    Budget: a definir selon experience  </p>
      <p class="place">
    Place: paris  (France)  </p>
  </div>

  <p>LeakID , soci&eacute;t&eacute; sp&eacute;cialis&eacute;e dans la protection de contenus numeriques Recherche :</p>

<p>Un d&eacute;veloppeur PHP/MySQL  SYMFONY , rigoureux et autonome.</p>

<p>Vous travaillerez en liaison avec le Lead D&eacute;veloppeur dans nos locaux &agrave; Paris .</p>

<p>Comp&eacute;tences:</p>

<p>&bull; Vous ma&icirc;trisez parfaitement le langage PHP 5 (programmation objet).
<br />&bull; Vous avez de r&eacute;elles comp&eacute;tences autour du langage SQL et de la base de donn&eacute;es MySQL.
<br />&bull; Vous avez une exp&eacute;rience approfondie de HTML, CSS2, Javascript et Ajax.
<br />&bull; Vous &ecirc;tes &agrave; l&#039;aise pour ce qui a trait &agrave; Symfony</p>

<p>Vous serez en charge, sous la responsabilit&eacute; du Lead developpeur , du d&eacute;veloppement de nos outils , de leurs &eacute;volutions, de ses nouvelles fonctionnalit&eacute;s, de ses backoffices.
<br />Si vous connaissez l&#039;underground , les moteurs de recherches , les forums phpbb et autres , etc.. ce poste est pour vous.</p>
  <h3>
          <img style="height:16px;vertical-align:baseline" src="http://symfonians.net/uploads/companies/be153fed1dda722e9073d2c257e69264.jpg" alt="Be153fed1dda722e9073d2c257e69264" />        LeakID  </h3>
  

<div class="contact">
  <h3>Contact</h3>
    <div class="phone tel">
    Phone:    0033698211000  </div>
      <div class="homepage">
    <a class="url" href="http://www.leakid.com">Website</a>  </div>
      <div class="email">
    <a href="http://symfonians.net/company/leakid/contact">Contact LeakID by mail</a>  </div>
  </div>
<div class="seealso">
  <h3>See also</h3>
  <ul>
        <li><a href="http://symfonians.net/jobs/company/leakid">Other job offers from LeakID</a></li>
                    <li><a href="http://symfonians.net/jobs/country/FR/city/paris+">Other job offers in paris  (France)</a></li>
            </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/LCARrtmmpbew4F39xjz78UoeGTk/0/da"><img src="http://feedads.g.doubleclick.net/~a/LCARrtmmpbew4F39xjz78UoeGTk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LCARrtmmpbew4F39xjz78UoeGTk/1/da"><img src="http://feedads.g.doubleclick.net/~a/LCARrtmmpbew4F39xjz78UoeGTk/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=835</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New application: Mondongo</title>
		<link>http://symfonians.net/application/mondongo</link>
		<comments>http://symfonians.net/application/mondongo#comments</comments>
		<pubDate>Mon, 06 Sep 2010 13:07:36 +0000</pubDate>
		<dc:creator>Symfonians Fresh Applications</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">e5bd95d082f1b88e587ad34d0b19ae4e</guid>
		<description><![CDATA[

  Tags:
    
    mongodb  
    
    php  
    
    symfony  
  


   Mondongo is the simple, power[...]]]></description>
			<content:encoded><![CDATA[
<ul class="tags">
  <li><small>Tags:</small></li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/mongodb">mongodb</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/php">php</a>  </li>
    <li class="tag">
    <a rel="tag" href="http://symfonians.net/applications/tag/symfony">symfony</a>  </li>
  </ul>

<div class="summary">
  <p> Mondongo is the simple, powerful and ultrafast Object Document Mapper (ODM) for PHP (5.3.0+) and MongoDB.
</p></div>


  <p class="homepage">
    Homepage: <a href="http://mondongo.es">http://mondongo.es</a>      </p>

<div class="licence">
  <h3>Licence informations</h3>
            <img style="float:right;margin-top:-1em" alt="Open Source application" src="http://symfonians.net/images/osi48x41.png" />        This application is open source          (LGPL)
      </div>


<p><a href="http://feedads.g.doubleclick.net/~a/910ZMcVnFv1XU55tVvive46S0hA/0/da"><img src="http://feedads.g.doubleclick.net/~a/910ZMcVnFv1XU55tVvive46S0hA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/910ZMcVnFv1XU55tVvive46S0hA/1/da"><img src="http://feedads.g.doubleclick.net/~a/910ZMcVnFv1XU55tVvive46S0hA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=833</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job offer: Projet Développement b2c 3.0 Symfony, Amazon S3 / DevPay</title>
		<link>http://symfonians.net/job/projet-developpement-b2c-3-0-symfony-amazon-s3-devpay</link>
		<comments>http://symfonians.net/job/projet-developpement-b2c-3-0-symfony-amazon-s3-devpay#comments</comments>
		<pubDate>Mon, 06 Sep 2010 12:32:10 +0000</pubDate>
		<dc:creator>Symfonians recent job offers</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">b5ccfbd176bd10a4f4d0a1a1bf29bfe8</guid>
		<description><![CDATA[

      Proposed by mike_b on 2010-09-06.        Offer will expire on October, 1 2010.  


  
    Te[...]]]></description>
			<content:encoded><![CDATA[
<p><strong>
      Proposed by <a title="Access mike_b's profile" href="http://symfonians.net/person/mike_b">mike_b</a> on 2010-09-06.        Offer will expire on October, 1 2010.  </strong></p>

<div class="more_infos">
  <p class="teleworking">
    Teleworking: yes  </p>
    <p class="budget">
    Budget: 6000-10000 &euro;  </p>
      <p class="place">
    Place: Paris (France)  </p>
  </div>

  <p>| Description du recruteur</p>

<p>- E-commercant : B2C innovant dans un secteur porteur.
<br />- Si&egrave;ge : Paris 7&egrave;me
<br />- Statut : Entreprise (S.A.S)</p>

<p>| Besoins en d&eacute;veloppement/ mission</p>

<p>1) D&eacute;veloppement d&rsquo;une plateforme communautaire 3.0 &ndash; Ajax/ CSS/ PHP/ MySQL
<br />2) D&eacute;veloppement d&rsquo;une communication avec un applicatif Flash (Amfphp)
<br />3) Hebergement Amazon S3. Choix et configuration applicatif serveur (Apache/PHP/MySQL)
<br />3) Paiement Amazon DevPay, envoi et traitement de commandes &agrave; un prestataire tiers</p>

<p>(Un cahier des charges pr&eacute;cis sera d&eacute;livr&eacute; apr&egrave;s entretien avec le candidat)</p>

<p>| Profil du poste:</p>

<p>D&eacute;veloppeur exp&eacute;riment&eacute; (junior ou senior) PHP/MySQL et amateur de gros challenge. Le d&eacute;veloppement PHP devra &ecirc;tre imp&eacute;rativement r&eacute;alis&eacute; sous Symfony (et ou ZendFramework). Le d&eacute;veloppeur devra par ailleurs attest&eacute; de quelques exp&eacute;riences r&eacute;ussies avec les frameworks mentionn&eacute;s. Le d&eacute;veloppeur devra &eacute;galement attest&eacute; d&rsquo;une exp&eacute;rience r&eacute;elle avec les services Amazon S3 et Amazon DevPay
<br />Nous recherchons un d&eacute;veloppeur responsable qui sera amen&eacute; &agrave; travailler au sein d&rsquo;une &eacute;quipe restreinte, en r&eacute;gie ou t&eacute;l&eacute;-distance, travaillant de concert et supervis&eacute; par un responsable/ d&eacute;veloppeur senior enthousiaste et passionn&eacute;!
<br />En travaillant avec nous vous vous donnez l&rsquo;opportunit&eacute; de vous cr&eacute;er un nom et une r&eacute;f&eacute;rence unique en d&eacute;veloppant une plateforme innovante de visibilit&eacute; internationale</p>

<p>| Fonctions et comp&eacute;tences requises</p>

<p>Vous serez en charge de la r&eacute;daction de votre fonctionnel, du d&eacute;veloppement PHP 5 bas&eacute; Symfony (et ou ZendFramework), de la s&eacute;lection de l&rsquo;h&eacute;bergement serveur ainsi de sa configuration logiciel (Apache/ PHP 5.x/ MySQL). Cette derni&egrave;re &eacute;tape sera supervis&eacute; et conjointement valid&eacute; par le responsable projet
<br />- Vous devrez prendre soin de documenter les sources (classes php) ainsi que l&rsquo;architecture d&eacute;velopp&eacute;e.</p>

<p>| Prestation</p>

<p>Type de projet : concret et r&eacute;alisation rapide
<br />Type de contrat : freelance
<br />Dur&eacute;e de la prestation : 2/3 mois
<br />Date de d&eacute;marrage du projet : Septembre
<br />Lieu : Paris 7&egrave;me (Ile de France)
<br />T&eacute;l&eacute;travail possible : oui</p>

<div class="seealso">
  <h3>See also</h3>
  <ul>
                    <li><a href="http://symfonians.net/jobs/country/FR/city/Paris">Other job offers in Paris (France)</a></li>
            </ul>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/q5x_CJ6whVa9_sQrJ8ccEmsDcLw/0/da"><img src="http://feedads.g.doubleclick.net/~a/q5x_CJ6whVa9_sQrJ8ccEmsDcLw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/q5x_CJ6whVa9_sQrJ8ccEmsDcLw/1/da"><img src="http://feedads.g.doubleclick.net/~a/q5x_CJ6whVa9_sQrJ8ccEmsDcLw/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=834</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A week of symfony #192 (30 August -&gt; 5 September 2010)</title>
		<link>http://feedproxy.google.com/~r/symfony/blog/~3/WbzUnX4_lfQ/a-week-of-symfony-192-30-august-5-september-2010</link>
		<comments>http://feedproxy.google.com/~r/symfony/blog/~3/WbzUnX4_lfQ/a-week-of-symfony-192-30-august-5-september-2010#comments</comments>
		<pubDate>Sun, 05 Sep 2010 20:40:00 +0000</pubDate>
		<dc:creator>Javier Eguiluz</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://www.symfony-project.org/blog/2010/09/05/a-week-of-symfony-192-30-august-5-september-2010</guid>
		<description><![CDATA[<p>Symfony2 introduced this week its new Web Profiler Bundle. The Symfony Profiler augments the web debug toolbar and provides the most detailed debug information available in any framework.</p>

<h3>Development mailing list</h3>

<ul>
    <li><a href="http://groups.google.com/group/symfony-devs/browse_thread/thread/636c059a6000b3a3">GitHub Pull Requests 2.0 and Symfony</a></li>
    <li><a href="http://groups.google.com/group/symfony-devs/browse_thread/thread/7861beb34be45af1">UUID of Propel mirror server</a></li>
</ul>

<h3>symfony 1 development highlights</h3>

<p><a href="http://trac.symfony-project.com/trac/timeline?from=05%2F09%2F2010&#38;daysback=6&#38;milestone=on&#38;ticket=on&#38;changeset=on&#38;update=Update">Changelog</a>:</p>

<ul>
  <li><a href="http://trac.symfony-project.org/changeset/30790" title="30790 revision on trac">r30790</a>: [1.3, 1.4] fixed logging of PHP errors to the WDT when error messages include a "%" character</li>
</ul>

<p>Activity summary: 49 changesets, 10 bugs reported, 16 bugs fixed, 3 enhancements suggested, 3 enhancements closed, 5 documentation defects reported, 1 documentation defect fixed, and 8 documentation edits</p>

<h3>Symfony2 development highlights</h3>

<p><a href="http://github.com/symfony/symfony/commits/master">Changelog</a>:</p>

<ul>
          <li>

            <a href="http://github.com/symfony/symfony/commit/478fcca88d9357779f353d07bb3ca301966e88d6" title="478fcca88d9357779f353d07bb3ca301966e88d6 commit on github">478fcca</a>:
      [Templating]      added Engine::exists()          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/6b5c3d05bd25b250918fbaec14774e408dee71f9" title="6b5c3d05bd25b250918fbaec14774e408dee71f9 commit on github">6b5c3d0</a>:
      [FrameworkBundle]      removed usage of Controller class for internal controllers          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/994a6c36ac1e24f8f940a20a3debc91ee9e22c4c" title="994a6c36ac1e24f8f940a20a3debc91ee9e22c4c commit on github">994a6c3</a>:
            changed actions::render() helper method signature          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/8c6478dab976700a247e819179a21d196e252cb1" title="8c6478dab976700a247e819179a21d196e252cb1 commit on github">8c6478d</a>:
      [HttpKernel]      added import/export to Profiler          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/d94271ba9c5e27d8767693a5e073fc4849535694" title="d94271ba9c5e27d8767693a5e073fc4849535694 commit on github">d94271b</a>:
      [FrameworkBundle]      removed dependency with the DIC          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/d40d1746e0f5f5c3c081b2fc8f53541e80a44e2c" title="d40d1746e0f5f5c3c081b2fc8f53541e80a44e2c commit on github">d40d174</a>:
      [ZendBundle]      added an option to register zend logger as an error handler          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/7503463a1e0f78737bf34c31e6cb3e4e28b236af" title="7503463a1e0f78737bf34c31e6cb3e4e28b236af commit on github">7503463</a>:
      [DoctrineMongoDBBundle]      updated log format to look more like the javascript shell          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/935ac5633c5a04421e78a62ef917176d9173d9b3" title="935ac5633c5a04421e78a62ef917176d9173d9b3 commit on github">935ac56</a>:
      [DoctrineBundle]      fixed bug in data:load when purging many-to-many relationships          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/60ea1eef698c6eae0d19465e00e9ff9be29bfc4b" title="60ea1eef698c6eae0d19465e00e9ff9be29bfc4b commit on github">60ea1ee</a>:
            added a configuration to allow the profiler to be enabled only when an exception occurs          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/ad835f8a1693111a46aaffeee19bcbeecbdaaf2d" title="ad835f8a1693111a46aaffeee19bcbeecbdaaf2d commit on github">ad835f8</a>:
      [HttpKernel]      added purge() in the profiler storage interface          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/ab9be87354a29bba11ca8644fcd26bcbaced9956" title="ab9be87354a29bba11ca8644fcd26bcbaced9956 commit on github">ab9be87</a>:
      [HttpKernel]      fixed FlattenException status code          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/a29211a9ee79a687aa1ecc691e9d91b76271c11c" title="a29211a9ee79a687aa1ecc691e9d91b76271c11c commit on github">a29211a</a>:
      [FrameworkBundle]      removed usage of array access for helpers in templates          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/4e57899374edd84bab3c98f852035a5626f7fa7b" title="4e57899374edd84bab3c98f852035a5626f7fa7b commit on github">4e57899</a>, <a href="http://github.com/symfony/symfony/commit/5913c40a12becf5775dabf7fd10be524ef4d055e" title="5913c40a12becf5775dabf7fd10be524ef4d055e commit on github">5913c40</a>, <a href="http://github.com/symfony/symfony/commit/7e2f135245c0d789a8d3f2f7bd3b8e178992afec" title="7e2f135245c0d789a8d3f2f7bd3b8e178992afec commit on github">7e2f135</a>, <a href="http://github.com/symfony/symfony/commit/c8935cc25a08fa009681c8e1c4afd82b4d08e51f" title="c8935cc25a08fa009681c8e1c4afd82b4d08e51f commit on github">c8935cc</a>:
      [WebProfilerBundle]      added the bundle          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/ebae1d7bf20d7e68f19f83c6ef71a43967a29d10" title="ebae1d7bf20d7e68f19f83c6ef71a43967a29d10 commit on github">ebae1d7</a>, <a href="http://github.com/symfony/symfony/commit/a4d496309ba68ed5d0aea897e10fe8bb2b3440ab" title="a4d496309ba68ed5d0aea897e10fe8bb2b3440ab commit on github">a4d4963</a>:
      [FrameworkBundle]      updated skeleton with the web profiler configuration          </li>

            <li>
            <a href="http://github.com/symfony/symfony/commit/2d04ca34434f00751e903d8b6ab41f7fef87d5bd" title="2d04ca34434f00751e903d8b6ab41f7fef87d5bd commit on github">2d04ca3</a>:
      [EventDispatcher]      added a way to disconnect all listeners for an event name          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/15cd2643c04a1441db3476aa5d09ff05e9c0d83f" title="15cd2643c04a1441db3476aa5d09ff05e9c0d83f commit on github">15cd264</a>:
      [HttpFoundation]      added Request::getClientIp()          </li>
  </ul>

<h3>New <a href="http://trac.symfony-project.com/trac/wiki/DevelopersForHire">developers for hire</h3>

<ul>
      <li><a href="http://www.laveaucoupet.fr">Laveaucoupet.fr</a>: french small web agency based in le Mans. We develop onligne app and website for any kind of business model. See our site for details.
</li>
    </ul>

<h3><a href="http://www.symfony-project.org/plugins/newest/">New plugins</h3>

<ul>
    <li><a href="http://www.symfony-project.org/plugins/twLoremIpsumPlugin">twLoremIpsum</a>: false data generator with more-or-less normal distribution of letters.

</li>
    <li><a href="http://www.symfony-project.org/plugins/gjShortUrlPlugin">gjShortUrl</a>: easy and flexible management of redirect rules and keyword landing pages.
</li>
    <li><a href="http://www.symfony-project.org/plugins/twAdminPlugin">twAdmin</a>: plugin based on sfAdminDashPlugin with style projected for Thunderwolf system backend.
</li>
    <li><a href="http://www.symfony-project.org/plugins/sfJqueryValidationPlugin">sfJqueryValidation</a>: creates a powerful system to handle validation by both jQuery Validation and Symfony 1.3/1.4 in a unified manner (displays the same error messages in same markup whether validated server side or client side and can handle directly most symfony validation formats)
</li>
    <li><a href="http://www.symfony-project.org/plugins/bsJobQueuePlugin">bsJobQueue</a>: allows to postpone the execution of function from any Table class.
</li>

    <li><a href="http://www.symfony-project.org/plugins/sfHarmonyRestPlugin">sfHarmonyRest</a>: (no description)
</li>
    <li><a href="http://www.symfony-project.org/plugins/sdInteractiveChartPlugin">sdInteractiveChart</a>: allows you to use Google's Visualization API without writing any javascript, it simplifies the creation of charts and makes the code a lot neater which is especially useful if your planning to include more than one chart in a page.
</li>
    <li><a href="http://www.symfony-project.org/plugins/ajDoctrineLuceneablePlugin">ajDoctrineLuceneable</a>: provides three things: 1) a behaviour to add your doctrine records automaticly to a lucene index, 2) a way to add lucene search to FilterForms, 3) a wrapper class to search Lucene indexes.
</li>
  </ul>

<h3>Updated plugins</h3>

<ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfPostgresDoctrinePlugin">sfPostgresDoctrine</a>:
    <ul>
        <li>fixed bugs with inheritance and with tables patterns</li>
        <li>updated README</li>
        <li>fixed bug with yml files</li>

        <li>added One To One relation in schema and model generation</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/idlDropboxPlugin">idlDropbox</a>:
    <ul>
        <li>added option to select OAuth library (Pear or Standard PHP lib)</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/sfAssetsLibraryPlugin">sfAssetsLibrary</a>:
    <ul>
        <li>changed from doSave to updateObject in sfAssetForm to allow saving of external objects</li>
        <li>changed schema to get more friendly relation names</li>
        <li>fixed a bug for moved files</li>
        <li>added a check for file correctly saved</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/pmPropelWorkflowableBehaviorPlugin">pmPropelWorkflowableBehavior</a>:
    <ul>
        <li>behavior improved to work on sf 1.4</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfReCaptchaPlugin">sfReCaptcha</a>:
    <ul>

        <li>added option to validator to use classic invalid error</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfDoctrineJCroppablePlugin">sfDoctrineJCroppable</a>:
    <ul>
        <li>fixed bug with cropper image height not getting set correctly</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/swBaseApplicationPlugin">swBaseApplication</a>:
    <ul>
        <li>added jquery 1.4.2 and jquery-ui 1.8.4</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/ExtjsGeneratorPlugin">ExtjsGenerator</a>:
    <ul>
        <li>added support for listview in generator as the default list</li>

        <li>fridpanel and Listview are now set via list.layout generator.yml config</li>
        <li>created new rowactions plugin to support object_actions for listview</li>
        <li>created new checkcolumn plugin to support boolean checkbox columns for listview</li>
        <li>created new ListPanel extension to hold listview and handle paging and toolbars</li>
        <li>added ProgressColumn plugins for listview and grid</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/sfSparklinePlugin">sfSparkline</a>:
    <ul>
        <li>added support for symfony 1.4.x</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfTaskLoggerPlugin">sfTaskLogger</a>:
    <ul>

        <li>updated sample and purge tasks</li>
        <li>moved "env" and "application" options at the base task level</li>
        <li>prepared package and README for 1.0.2 version</li>
        <li>fixed typos</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfDoctrineActAsTaggablePlugin">sfDoctrineActAsTaggable</a>:
    <ul>

        <li>new inline taggable widget</li>
        <li>added jQueryAutocompleteSuccess.php</li>
        <li>InlineTaggableWidget: performance enhancements, code readability enhancements, and moved functionality for unsetting existing popular tags to this script</li>
        <li>refactored the makeLink function into two separate functions (makePopularLinks and makeRemoveLinks)</li>
        <li>added the ability to pass in a label for the 'Existing Tags'</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/sfAdminDashPlugin">sfAdminDash</a>:
    <ul>
        <li>updated French translation</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/dcReloadedFormExtraPlugin">dcReloadedFormExtra</a>:
    <ul>

        <li>added mtWidgetFormPlain widget</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdCorePlugin">tdCore</a>:
    <ul>
        <li>enable the graphics module from tdCorePlugin to enable AJAX actions in other plugins to run correctly</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/tdGuestbookPlugin">tdGuestbook</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdVideoPlugin">tdVideo</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>

      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdAudioPlugin">tdAudio</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdVisualFactoryPlugin">tdVisualFactory</a>:
    <ul>

        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdBlogPlugin">tdBlog</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/apostrophePlugin">apostrophe</a>:
    <ul>
        <li>fixed pushTargetEnginePage to work when passed with a slug and no engine specified</li>
        <li>don't try to calculate dimensions if PDF preview is turned off</li>
        <li>backported improvements to aImageConverter and aValidatorFilePersistent</li>
        <li>reworked a few engine link_to() calls to remove the need to query the database</li>
        <li>never return attributes for a logged-out users in the media repository</li>

        <li>removed the reference to the non-existent inline tagging widget</li>
        <li>cleaned up some of the unused tagging code</li>
        <li>saving page settings now updates the search index</li>
        <li>fixed a bug with the Link option in button slots</li>
        <li>improved stability when clicking save multiple times on an image selection</li>
        <li>modified Page Settings Form to use the new Inline Taggable Widget</li>

        <li>stopped unsetting some of the popular tags for the new tagging widget</li>
        <li>you now can upload any mix of allowed file extensions</li>
        <li>the set of file extensions, mime types and overall media types ("images," "video," "office") are now configurable (in principle) via app.yml</li>
        <li>every item is now previewed either with an icon for its format or (for images) with an actual preview</li>
        <li>you can now remove items during the annotation pass</li>
        <li>when you are browsing for images for a slot, you can only upload images. When you are filtering by images, you can only upload images</li>

        <li>the file upload widget is much smarter about detecting mime types and preferred file extensions correctly for a wide variety of file types including Office files</li>
        <li>previews can be templated anywhere in the template containing the form</li>
        <li>removed the "active" field in favor of paying attention to the names of the item fields</li>
        <li>re-worked the page settings form significantly</li>
        <li>fixed uploads in which one or more files are not acceptable</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/apostropheBlogPlugin">apostropheBlog</a>:
    <ul>
        <li>made sure new calendar widget defaults to false</li>
        <li>fixed alphabetizing of categories in show actions for aEvent and aBlog</li>
        <li>fixed save trigger for date widgets in blog and event admins</li>
        <li>updated the blog plugin sidebar in the admin view to output a slightly different set of text for events and blog posts that are already published</li>

        <li>switched the php date to use the aDate help for internationalization</li>
        <li>updated the published at or published on interface so that it works with Ajax refreshes</li>
        <li>refactored code in aBlogActions and aEventActions</li>
        <li>fixed issue where past events were not showing up in calendar view</li>
      </ul>
  </ul>

<h3>New <a href="http://trac.symfony-project.org/wiki/ApplicationsDevelopedWithSymfony">symfony powered websites</h3>

<ul>
    <li><a href="http://www.corsi-lezioni-ripetizioni.it/">Corsi, lezioni e ripetizioni private</a>: (Italian) classified ads site for tutoring</li>
  <li><a href="http://alojamientodominicano.com">Alojamientos Dominicanos</a>: (Spanish) Hotel Guide Dominican Republic</li>
</ul>

<h3>New <a href="http://trac.symfony-project.com/trac/wiki/SymfonyBloggers">symfony bloggers</h3>

<ul>
    <li>
    <a href="http://www.symfonic.fr">symfonic.fr</a> 
          (<a href="http://www.symfonic.fr/feed/">feed</a>)
        (English, French)
  </li>
  </ul>

<h3>They talked about us</h3>

<ul>
    <li><a href="http://test.ical.ly/2010/08/30/options-for-setting-up-a-doctrine-database-connection-when-phpunit-testing-symfony-plugins/">Options for setting up a Doctrine database connection when PHPUnit testing symfony plugins</a></li>

    <li><a href="http://refineweb.co.uk/2010/08/30/deploying-a-symfony-project-into-production-using-capistrano/">Deploying a symfony project into production using capistrano</a></li>
    <li><a href="http://broderix.blogspot.com/2010/08/mysql-error-1005-hy000-cant-create.html">Mysql ERROR 1005 (HY000): Can't create table (errno: 150)</a></li>
    <li><a href="http://test.ical.ly/2010/08/31/gjshorturlplugin-creating-seo-landing-pages-and-manage-redirection-of-legacy-urls-with-the-symfony-and-doctrine-plugin/">gjShortUrlPlugin – Creating SEO landing pages and manage redirection of legacy URLs with the symfony and Doctrine plugin</a></li>
    <li><a href="http://refineweb.co.uk/2010/08/31/update-sending-emails-stored-in-xml-with-sfmailer/">Storing emails in XML and sending them with sfMailer</a></li>
    <li><a href="http://blog.servergrove.com/2010/08/31/php-conferences-update/">PHP conferences update</a></li>
    <li><a href="http://www.jnieto.org/article/highlight_code_with_symfony_and_geshi">Highlight code with symfony and Geshi</a></li>

    <li><a href="http://rabaix.net/en/articles/2010/09/01/a-small-symfony-doctrine-migration-improvement-task">A small symfony doctrine migration improvement task</a></li>
    <li><a href="http://www.jazzou.com/index.php?option=com_content&#38;task=view&#38;id=8338">Frameworks for PHP Development in India Why and Which One to Use</a></li>
    <li><a href="http://www.symfony.es/2010/09/01/symfony2-presenta-su-webprofiler/">Symfony2 presenta su WebProfiler</a></li>
    <li><a href="http://www.presseanzeiger.de/meldungen/it-computer-internet/383223.php">symfony Day 2010: Entwickler aus aller Welt treffen sich in Köln</a></li>
    <li><a href="http://www.nacho-martin.com/hint-to-avoid-memory-exhausted-error-symfony-doctrine1-2">Hint to avoid memory exhausted error (symfony + doctrine1.2)</a></li>
    <li><a href="http://www.symfonic.fr/2010/09/symfony-et-doctrine-connexions-multiples/">Symfony et Doctrine : connexions multiples</a></li>

    <li><a href="http://shout.setfive.com/2010/09/03/ahdoctrineeasyembeddedrelationsplugin-and-composite-primarykeys/">ahDoctrineEasyEmbeddedRelationsPlugin and Composite Primary Keys</a></li>
    <li><a href="http://www.channelinsider.fr/fr/entretien/2010/09/03/zend_technologies_____notre_but_est_d_industrialiser_et_de_professionnaliser_l_utilisation_de_php__">Zend Technologies : « Notre but est d'industrialiser et de professionnaliser l'utilisation de PHP »</a></li>
    <li><a href="http://d.hatena.ne.jp/chronos_devel/20100905/1283695223">[symfony]EclipseのAntタスクからsymfonyコマンドを実行に関して</a></li>
    <li><a href="http://www.symfonylab.com/high-performance-mobile-symfony/">High Performance Mobile Symfony</a></li>
    <li><a href="http://www.securesilverlight.net/935024-Symfony-Web-Development-Offering-Fast-Paced-Web-Application-Development.html">Symfony Web Development: Offering Fast Paced Web Application Development</a></li>
    <li><a href="http://www.loalf.com/2010/09/instanciando-la-vista-sfview-y-accediendo-al-contender-de-variables/">Instanciando la vista (sfView) y accediendo al contender de variables</a></li>

    <li><a href="http://www.foxmask.info/post/2010/09/04/foxmask-au-pays-des-merveilles-du-web-developpement/">FoxMaSk au pays des merveilles du Web Developpement</a></li>
    <li><a href="http://jasonswett.net/how-to-validate-and-sanitize-a-url-in-symfony/">How to validate and sanitize a URL in symfony</a></li>
    <li><a href="http://www.tejimaya.com/archives/6221">symfony×OpenPNE3勉強会のまとめ（9/2@Nifty会議室）</a></li>
    <li><a href="http://symfony.cl/blog/2010/09/crear-modulo-inicio-para-tu-proyecto/">Crear Módulo Inicio para tu Proyecto</a></li>
    <li><a href="http://www.tonarticles.com/5-php-frameworks-to-help-php-developer-code-better-in-less-time.html">5 PHP Frameworks to Help PHP Developer Code Better in Less Time</a></li>
    <li><a href="http://www.typeed.de/blog/2010/08/31/ajax-und-flash-variablen-in-symfony">AJAX und Flash-Variablen in symfony</a></li>

    <li><a href="http://dev.halhal.info/archives/145">CentOS に symfony 1.2.9 を入れ直す</a></li>
  </ul>
          <hr />
          <div style="font-size: 90%">
          Be trained by symfony experts
                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-09-22/centre-regus-opera-paris-france/38">Sep 22</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/upgrade-to-1-3-1-4/2010-10-05/online/95">Oct 05</a> Online                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-10-20/centre-regus-opera-paris-france/39">Oct 20</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-11-24/centre-regus-faubourg-saint-honore-paris-france/40">Nov 24</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-12-15/centre-regus-faubourg-saint-honore-paris-france/80">Dec 15</a> Paris                    </div><img src="http://feeds.feedburner.com/~r/symfony/blog/~4/WbzUnX4_lfQ" height="1">]]></description>
			<content:encoded><![CDATA[<p>Symfony2 introduced this week its new Web Profiler Bundle. The Symfony Profiler augments the web debug toolbar and provides the most detailed debug information available in any framework.</p>

<h3>Development mailing list</h3>

<ul>
    <li><a href="http://groups.google.com/group/symfony-devs/browse_thread/thread/636c059a6000b3a3">GitHub Pull Requests 2.0 and Symfony</a></li>
    <li><a href="http://groups.google.com/group/symfony-devs/browse_thread/thread/7861beb34be45af1">UUID of Propel mirror server</a></li>
</ul>

<h3>symfony 1 development highlights</h3>

<p><a href="http://trac.symfony-project.com/trac/timeline?from=05%2F09%2F2010&daysback=6&milestone=on&ticket=on&changeset=on&update=Update">Changelog</a>:</p>

<ul>
  <li><a href="http://trac.symfony-project.org/changeset/30790" title="30790 revision on trac">r30790</a>: [1.3, 1.4] fixed logging of PHP errors to the WDT when error messages include a "%" character</li>
</ul>

<p>Activity summary: 49 changesets, 10 bugs reported, 16 bugs fixed, 3 enhancements suggested, 3 enhancements closed, 5 documentation defects reported, 1 documentation defect fixed, and 8 documentation edits</p>

<h3>Symfony2 development highlights</h3>

<p><a href="http://github.com/symfony/symfony/commits/master">Changelog</a>:</p>

<ul>
          <li>

            <a href="http://github.com/symfony/symfony/commit/478fcca88d9357779f353d07bb3ca301966e88d6" title="478fcca88d9357779f353d07bb3ca301966e88d6 commit on github">478fcca</a>:
      [Templating]      added Engine::exists()          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/6b5c3d05bd25b250918fbaec14774e408dee71f9" title="6b5c3d05bd25b250918fbaec14774e408dee71f9 commit on github">6b5c3d0</a>:
      [FrameworkBundle]      removed usage of Controller class for internal controllers          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/994a6c36ac1e24f8f940a20a3debc91ee9e22c4c" title="994a6c36ac1e24f8f940a20a3debc91ee9e22c4c commit on github">994a6c3</a>:
            changed actions::render() helper method signature          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/8c6478dab976700a247e819179a21d196e252cb1" title="8c6478dab976700a247e819179a21d196e252cb1 commit on github">8c6478d</a>:
      [HttpKernel]      added import/export to Profiler          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/d94271ba9c5e27d8767693a5e073fc4849535694" title="d94271ba9c5e27d8767693a5e073fc4849535694 commit on github">d94271b</a>:
      [FrameworkBundle]      removed dependency with the DIC          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/d40d1746e0f5f5c3c081b2fc8f53541e80a44e2c" title="d40d1746e0f5f5c3c081b2fc8f53541e80a44e2c commit on github">d40d174</a>:
      [ZendBundle]      added an option to register zend logger as an error handler          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/7503463a1e0f78737bf34c31e6cb3e4e28b236af" title="7503463a1e0f78737bf34c31e6cb3e4e28b236af commit on github">7503463</a>:
      [DoctrineMongoDBBundle]      updated log format to look more like the javascript shell          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/935ac5633c5a04421e78a62ef917176d9173d9b3" title="935ac5633c5a04421e78a62ef917176d9173d9b3 commit on github">935ac56</a>:
      [DoctrineBundle]      fixed bug in data:load when purging many-to-many relationships          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/60ea1eef698c6eae0d19465e00e9ff9be29bfc4b" title="60ea1eef698c6eae0d19465e00e9ff9be29bfc4b commit on github">60ea1ee</a>:
            added a configuration to allow the profiler to be enabled only when an exception occurs          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/ad835f8a1693111a46aaffeee19bcbeecbdaaf2d" title="ad835f8a1693111a46aaffeee19bcbeecbdaaf2d commit on github">ad835f8</a>:
      [HttpKernel]      added purge() in the profiler storage interface          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/ab9be87354a29bba11ca8644fcd26bcbaced9956" title="ab9be87354a29bba11ca8644fcd26bcbaced9956 commit on github">ab9be87</a>:
      [HttpKernel]      fixed FlattenException status code          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/a29211a9ee79a687aa1ecc691e9d91b76271c11c" title="a29211a9ee79a687aa1ecc691e9d91b76271c11c commit on github">a29211a</a>:
      [FrameworkBundle]      removed usage of array access for helpers in templates          </li>
            <li>

            <a href="http://github.com/symfony/symfony/commit/4e57899374edd84bab3c98f852035a5626f7fa7b" title="4e57899374edd84bab3c98f852035a5626f7fa7b commit on github">4e57899</a>, <a href="http://github.com/symfony/symfony/commit/5913c40a12becf5775dabf7fd10be524ef4d055e" title="5913c40a12becf5775dabf7fd10be524ef4d055e commit on github">5913c40</a>, <a href="http://github.com/symfony/symfony/commit/7e2f135245c0d789a8d3f2f7bd3b8e178992afec" title="7e2f135245c0d789a8d3f2f7bd3b8e178992afec commit on github">7e2f135</a>, <a href="http://github.com/symfony/symfony/commit/c8935cc25a08fa009681c8e1c4afd82b4d08e51f" title="c8935cc25a08fa009681c8e1c4afd82b4d08e51f commit on github">c8935cc</a>:
      [WebProfilerBundle]      added the bundle          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/ebae1d7bf20d7e68f19f83c6ef71a43967a29d10" title="ebae1d7bf20d7e68f19f83c6ef71a43967a29d10 commit on github">ebae1d7</a>, <a href="http://github.com/symfony/symfony/commit/a4d496309ba68ed5d0aea897e10fe8bb2b3440ab" title="a4d496309ba68ed5d0aea897e10fe8bb2b3440ab commit on github">a4d4963</a>:
      [FrameworkBundle]      updated skeleton with the web profiler configuration          </li>

            <li>
            <a href="http://github.com/symfony/symfony/commit/2d04ca34434f00751e903d8b6ab41f7fef87d5bd" title="2d04ca34434f00751e903d8b6ab41f7fef87d5bd commit on github">2d04ca3</a>:
      [EventDispatcher]      added a way to disconnect all listeners for an event name          </li>
            <li>
            <a href="http://github.com/symfony/symfony/commit/15cd2643c04a1441db3476aa5d09ff05e9c0d83f" title="15cd2643c04a1441db3476aa5d09ff05e9c0d83f commit on github">15cd264</a>:
      [HttpFoundation]      added Request::getClientIp()          </li>
  </ul>

<h3>New <a href="http://trac.symfony-project.com/trac/wiki/DevelopersForHire">developers for hire</h3>

<ul>
      <li><a href="http://www.laveaucoupet.fr">Laveaucoupet.fr</a>: french small web agency based in le Mans. We develop onligne app and website for any kind of business model. See our site for details.
</li>
    </ul>

<h3><a href="http://www.symfony-project.org/plugins/newest/">New plugins</h3>

<ul>
    <li><a href="http://www.symfony-project.org/plugins/twLoremIpsumPlugin">twLoremIpsum</a>: false data generator with more-or-less normal distribution of letters.

</li>
    <li><a href="http://www.symfony-project.org/plugins/gjShortUrlPlugin">gjShortUrl</a>: easy and flexible management of redirect rules and keyword landing pages.
</li>
    <li><a href="http://www.symfony-project.org/plugins/twAdminPlugin">twAdmin</a>: plugin based on sfAdminDashPlugin with style projected for Thunderwolf system backend.
</li>
    <li><a href="http://www.symfony-project.org/plugins/sfJqueryValidationPlugin">sfJqueryValidation</a>: creates a powerful system to handle validation by both jQuery Validation and Symfony 1.3/1.4 in a unified manner (displays the same error messages in same markup whether validated server side or client side and can handle directly most symfony validation formats)
</li>
    <li><a href="http://www.symfony-project.org/plugins/bsJobQueuePlugin">bsJobQueue</a>: allows to postpone the execution of function from any Table class.
</li>

    <li><a href="http://www.symfony-project.org/plugins/sfHarmonyRestPlugin">sfHarmonyRest</a>: (no description)
</li>
    <li><a href="http://www.symfony-project.org/plugins/sdInteractiveChartPlugin">sdInteractiveChart</a>: allows you to use Google's Visualization API without writing any javascript, it simplifies the creation of charts and makes the code a lot neater which is especially useful if your planning to include more than one chart in a page.
</li>
    <li><a href="http://www.symfony-project.org/plugins/ajDoctrineLuceneablePlugin">ajDoctrineLuceneable</a>: provides three things: 1) a behaviour to add your doctrine records automaticly to a lucene index, 2) a way to add lucene search to FilterForms, 3) a wrapper class to search Lucene indexes.
</li>
  </ul>

<h3>Updated plugins</h3>

<ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfPostgresDoctrinePlugin">sfPostgresDoctrine</a>:
    <ul>
        <li>fixed bugs with inheritance and with tables patterns</li>
        <li>updated README</li>
        <li>fixed bug with yml files</li>

        <li>added One To One relation in schema and model generation</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/idlDropboxPlugin">idlDropbox</a>:
    <ul>
        <li>added option to select OAuth library (Pear or Standard PHP lib)</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/sfAssetsLibraryPlugin">sfAssetsLibrary</a>:
    <ul>
        <li>changed from doSave to updateObject in sfAssetForm to allow saving of external objects</li>
        <li>changed schema to get more friendly relation names</li>
        <li>fixed a bug for moved files</li>
        <li>added a check for file correctly saved</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/pmPropelWorkflowableBehaviorPlugin">pmPropelWorkflowableBehavior</a>:
    <ul>
        <li>behavior improved to work on sf 1.4</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfReCaptchaPlugin">sfReCaptcha</a>:
    <ul>

        <li>added option to validator to use classic invalid error</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfDoctrineJCroppablePlugin">sfDoctrineJCroppable</a>:
    <ul>
        <li>fixed bug with cropper image height not getting set correctly</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/swBaseApplicationPlugin">swBaseApplication</a>:
    <ul>
        <li>added jquery 1.4.2 and jquery-ui 1.8.4</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/ExtjsGeneratorPlugin">ExtjsGenerator</a>:
    <ul>
        <li>added support for listview in generator as the default list</li>

        <li>fridpanel and Listview are now set via list.layout generator.yml config</li>
        <li>created new rowactions plugin to support object_actions for listview</li>
        <li>created new checkcolumn plugin to support boolean checkbox columns for listview</li>
        <li>created new ListPanel extension to hold listview and handle paging and toolbars</li>
        <li>added ProgressColumn plugins for listview and grid</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/sfSparklinePlugin">sfSparkline</a>:
    <ul>
        <li>added support for symfony 1.4.x</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfTaskLoggerPlugin">sfTaskLogger</a>:
    <ul>

        <li>updated sample and purge tasks</li>
        <li>moved "env" and "application" options at the base task level</li>
        <li>prepared package and README for 1.0.2 version</li>
        <li>fixed typos</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/sfDoctrineActAsTaggablePlugin">sfDoctrineActAsTaggable</a>:
    <ul>

        <li>new inline taggable widget</li>
        <li>added jQueryAutocompleteSuccess.php</li>
        <li>InlineTaggableWidget: performance enhancements, code readability enhancements, and moved functionality for unsetting existing popular tags to this script</li>
        <li>refactored the makeLink function into two separate functions (makePopularLinks and makeRemoveLinks)</li>
        <li>added the ability to pass in a label for the 'Existing Tags'</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/sfAdminDashPlugin">sfAdminDash</a>:
    <ul>
        <li>updated French translation</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/dcReloadedFormExtraPlugin">dcReloadedFormExtra</a>:
    <ul>

        <li>added mtWidgetFormPlain widget</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdCorePlugin">tdCore</a>:
    <ul>
        <li>enable the graphics module from tdCorePlugin to enable AJAX actions in other plugins to run correctly</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/tdGuestbookPlugin">tdGuestbook</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdVideoPlugin">tdVideo</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>

      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdAudioPlugin">tdAudio</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdVisualFactoryPlugin">tdVisualFactory</a>:
    <ul>

        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>
      <a href="http://www.symfony-project.org/plugins/tdBlogPlugin">tdBlog</a>:
    <ul>
        <li>added the activate/deactivate AJAX interface in the backend</li>
      </ul>
    <li>

      <a href="http://www.symfony-project.org/plugins/apostrophePlugin">apostrophe</a>:
    <ul>
        <li>fixed pushTargetEnginePage to work when passed with a slug and no engine specified</li>
        <li>don't try to calculate dimensions if PDF preview is turned off</li>
        <li>backported improvements to aImageConverter and aValidatorFilePersistent</li>
        <li>reworked a few engine link_to() calls to remove the need to query the database</li>
        <li>never return attributes for a logged-out users in the media repository</li>

        <li>removed the reference to the non-existent inline tagging widget</li>
        <li>cleaned up some of the unused tagging code</li>
        <li>saving page settings now updates the search index</li>
        <li>fixed a bug with the Link option in button slots</li>
        <li>improved stability when clicking save multiple times on an image selection</li>
        <li>modified Page Settings Form to use the new Inline Taggable Widget</li>

        <li>stopped unsetting some of the popular tags for the new tagging widget</li>
        <li>you now can upload any mix of allowed file extensions</li>
        <li>the set of file extensions, mime types and overall media types ("images," "video," "office") are now configurable (in principle) via app.yml</li>
        <li>every item is now previewed either with an icon for its format or (for images) with an actual preview</li>
        <li>you can now remove items during the annotation pass</li>
        <li>when you are browsing for images for a slot, you can only upload images. When you are filtering by images, you can only upload images</li>

        <li>the file upload widget is much smarter about detecting mime types and preferred file extensions correctly for a wide variety of file types including Office files</li>
        <li>previews can be templated anywhere in the template containing the form</li>
        <li>removed the "active" field in favor of paying attention to the names of the item fields</li>
        <li>re-worked the page settings form significantly</li>
        <li>fixed uploads in which one or more files are not acceptable</li>
      </ul>

    <li>
      <a href="http://www.symfony-project.org/plugins/apostropheBlogPlugin">apostropheBlog</a>:
    <ul>
        <li>made sure new calendar widget defaults to false</li>
        <li>fixed alphabetizing of categories in show actions for aEvent and aBlog</li>
        <li>fixed save trigger for date widgets in blog and event admins</li>
        <li>updated the blog plugin sidebar in the admin view to output a slightly different set of text for events and blog posts that are already published</li>

        <li>switched the php date to use the aDate help for internationalization</li>
        <li>updated the published at or published on interface so that it works with Ajax refreshes</li>
        <li>refactored code in aBlogActions and aEventActions</li>
        <li>fixed issue where past events were not showing up in calendar view</li>
      </ul>
  </ul>

<h3>New <a href="http://trac.symfony-project.org/wiki/ApplicationsDevelopedWithSymfony">symfony powered websites</h3>

<ul>
    <li><a href="http://www.corsi-lezioni-ripetizioni.it/">Corsi, lezioni e ripetizioni private</a>: (Italian) classified ads site for tutoring</li>
  <li><a href="http://alojamientodominicano.com">Alojamientos Dominicanos</a>: (Spanish) Hotel Guide Dominican Republic</li>
</ul>

<h3>New <a href="http://trac.symfony-project.com/trac/wiki/SymfonyBloggers">symfony bloggers</h3>

<ul>
    <li>
    <a href="http://www.symfonic.fr">symfonic.fr</a> 
          (<a href="http://www.symfonic.fr/feed/">feed</a>)
        (English, French)
  </li>
  </ul>

<h3>They talked about us</h3>

<ul>
    <li><a href="http://test.ical.ly/2010/08/30/options-for-setting-up-a-doctrine-database-connection-when-phpunit-testing-symfony-plugins/">Options for setting up a Doctrine database connection when PHPUnit testing symfony plugins</a></li>

    <li><a href="http://refineweb.co.uk/2010/08/30/deploying-a-symfony-project-into-production-using-capistrano/">Deploying a symfony project into production using capistrano</a></li>
    <li><a href="http://broderix.blogspot.com/2010/08/mysql-error-1005-hy000-cant-create.html">Mysql ERROR 1005 (HY000): Can't create table (errno: 150)</a></li>
    <li><a href="http://test.ical.ly/2010/08/31/gjshorturlplugin-creating-seo-landing-pages-and-manage-redirection-of-legacy-urls-with-the-symfony-and-doctrine-plugin/">gjShortUrlPlugin – Creating SEO landing pages and manage redirection of legacy URLs with the symfony and Doctrine plugin</a></li>
    <li><a href="http://refineweb.co.uk/2010/08/31/update-sending-emails-stored-in-xml-with-sfmailer/">Storing emails in XML and sending them with sfMailer</a></li>
    <li><a href="http://blog.servergrove.com/2010/08/31/php-conferences-update/">PHP conferences update</a></li>
    <li><a href="http://www.jnieto.org/article/highlight_code_with_symfony_and_geshi">Highlight code with symfony and Geshi</a></li>

    <li><a href="http://rabaix.net/en/articles/2010/09/01/a-small-symfony-doctrine-migration-improvement-task">A small symfony doctrine migration improvement task</a></li>
    <li><a href="http://www.jazzou.com/index.php?option=com_content&task=view&id=8338">Frameworks for PHP Development in India Why and Which One to Use</a></li>
    <li><a href="http://www.symfony.es/2010/09/01/symfony2-presenta-su-webprofiler/">Symfony2 presenta su WebProfiler</a></li>
    <li><a href="http://www.presseanzeiger.de/meldungen/it-computer-internet/383223.php">symfony Day 2010: Entwickler aus aller Welt treffen sich in Köln</a></li>
    <li><a href="http://www.nacho-martin.com/hint-to-avoid-memory-exhausted-error-symfony-doctrine1-2">Hint to avoid memory exhausted error (symfony + doctrine1.2)</a></li>
    <li><a href="http://www.symfonic.fr/2010/09/symfony-et-doctrine-connexions-multiples/">Symfony et Doctrine : connexions multiples</a></li>

    <li><a href="http://shout.setfive.com/2010/09/03/ahdoctrineeasyembeddedrelationsplugin-and-composite-primarykeys/">ahDoctrineEasyEmbeddedRelationsPlugin and Composite Primary Keys</a></li>
    <li><a href="http://www.channelinsider.fr/fr/entretien/2010/09/03/zend_technologies_____notre_but_est_d_industrialiser_et_de_professionnaliser_l_utilisation_de_php__">Zend Technologies : « Notre but est d'industrialiser et de professionnaliser l'utilisation de PHP »</a></li>
    <li><a href="http://d.hatena.ne.jp/chronos_devel/20100905/1283695223">[symfony]EclipseのAntタスクからsymfonyコマンドを実行に関して</a></li>
    <li><a href="http://www.symfonylab.com/high-performance-mobile-symfony/">High Performance Mobile Symfony</a></li>
    <li><a href="http://www.securesilverlight.net/935024-Symfony-Web-Development-Offering-Fast-Paced-Web-Application-Development.html">Symfony Web Development: Offering Fast Paced Web Application Development</a></li>
    <li><a href="http://www.loalf.com/2010/09/instanciando-la-vista-sfview-y-accediendo-al-contender-de-variables/">Instanciando la vista (sfView) y accediendo al contender de variables</a></li>

    <li><a href="http://www.foxmask.info/post/2010/09/04/foxmask-au-pays-des-merveilles-du-web-developpement/">FoxMaSk au pays des merveilles du Web Developpement</a></li>
    <li><a href="http://jasonswett.net/how-to-validate-and-sanitize-a-url-in-symfony/">How to validate and sanitize a URL in symfony</a></li>
    <li><a href="http://www.tejimaya.com/archives/6221">symfony×OpenPNE3勉強会のまとめ（9/2@Nifty会議室）</a></li>
    <li><a href="http://symfony.cl/blog/2010/09/crear-modulo-inicio-para-tu-proyecto/">Crear Módulo Inicio para tu Proyecto</a></li>
    <li><a href="http://www.tonarticles.com/5-php-frameworks-to-help-php-developer-code-better-in-less-time.html">5 PHP Frameworks to Help PHP Developer Code Better in Less Time</a></li>
    <li><a href="http://www.typeed.de/blog/2010/08/31/ajax-und-flash-variablen-in-symfony">AJAX und Flash-Variablen in symfony</a></li>

    <li><a href="http://dev.halhal.info/archives/145">CentOS に symfony 1.2.9 を入れ直す</a></li>
  </ul>
          <hr / style="margin-bottom: 5px">
          <div style="font-size: 90%">
          Be trained by symfony experts
                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-09-22/centre-regus-opera-paris-france/38">Sep 22</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/upgrade-to-1-3-1-4/2010-10-05/online/95">Oct 05</a> Online                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-10-20/centre-regus-opera-paris-france/39">Oct 20</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-11-24/centre-regus-faubourg-saint-honore-paris-france/40">Nov 24</a> Paris                       - <a href="http://trainings.sensiolabs.com/fr/training/symfony-1-4-doctrine/2010-12-15/centre-regus-faubourg-saint-honore-paris-france/80">Dec 15</a> Paris                    </div><img src="http://feeds.feedburner.com/~r/symfony/blog/~4/WbzUnX4_lfQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=832</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Performance Mobile Symfony</title>
		<link>http://feedproxy.google.com/~r/Symfonylab/~3/0LJkDZFpPJk/</link>
		<comments>http://feedproxy.google.com/~r/Symfonylab/~3/0LJkDZFpPJk/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 14:00:10 +0000</pubDate>
		<dc:creator>SymfonyLab</dc:creator>
				<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">tag:www.symfonylab.com://2e00a4b6a62f376245195a79467a2abf</guid>
		<description><![CDATA[Am reading this slideshow about high performance mobile sites which provides great basic introduction into mobile development (eg I&#8217;ve never heard of &#8220;inline images&#8221; before watching this):

and trying to figure out the right strategy for building mobile site using symfony.
So far I was able to find only these articles/plugins which can be helpful for me:
http://www.symfony-project.org/blog/2008/06/09/how-to-create-an-optimized-version-of-your-website-for-the-iphone-in-symfony-1-1
 [...]
<p><a href="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/0/da"><img src="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/1/da"><img src="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/1/di" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Symfonylab/~4/0LJkDZFpPJk" height="1">]]></description>
			<content:encoded><![CDATA[Am reading this slideshow about high performance mobile sites which provides great basic introduction into mobile development (eg I&#8217;ve never heard of &#8220;inline images&#8221; before watching this):

and trying to figure out the right strategy for building mobile site using symfony.
So far I was able to find only these articles/plugins which can be helpful for me:
http://www.symfony-project.org/blog/2008/06/09/how-to-create-an-optimized-version-of-your-website-for-the-iphone-in-symfony-1-1
 [...]
<p><a href="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/0/da"><img src="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/1/da"><img src="http://feedads.g.doubleclick.net/~a/dFIPSrImgcI28tJ9btri-poqBOk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Symfonylab/~4/0LJkDZFpPJk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://symfony.lab216.com/?feed=rss2&amp;p=831</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
