<?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/"
	>

<channel>
	<title>undes1gn</title>
	<atom:link href="http://blog.undes1gn.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.undes1gn.org</link>
	<description>Le portfolio de Raphaël BENITTE, concepteur visuel</description>
	<pubDate>Mon, 13 Apr 2009 12:48:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Materne, site web division industrie</title>
		<link>http://blog.undes1gn.org/2009/03/materne-industries/</link>
		<comments>http://blog.undes1gn.org/2009/03/materne-industries/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 11:34:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[ZEND framework]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=318</guid>
		<description><![CDATA[Design et développement du site web de Materne, division Industrie.]]></description>
			<content:encoded><![CDATA[<p>Projet réalisé au sein de l&#8217;agence DCC.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2009/03/materne-industries/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Utilisation de Zend_Form</title>
		<link>http://blog.undes1gn.org/2009/02/utilisation-de-zend_form/</link>
		<comments>http://blog.undes1gn.org/2009/02/utilisation-de-zend_form/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 20:42:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=282</guid>
		<description><![CDATA[Une tutoriel sur l'utilisation de Zend_Form.]]></description>
			<content:encoded><![CDATA[<p>Cet article s&#8217;adresse à tous ceux qui débute avec le Zend framework et qui souhaitent utiliser le composant intégré Zend_Form.</p>
<h3>Ce composant présente de multiples avantages</h3>
<ul>
<li>ré-utilisation aisée d&#8217;un même formulaire.</li>
<li>dissociation des données et de la présentation.</li>
<li>vérification automatique des données via les validators intégrés au framework.</li>
<li>possibilité d&#8217;utiliser les decorators afin de maîtriser la présentation du formulaire.</li>
<li>internationalisation simple de vos formulaires avec le composant Zend_Translate, qui peut prendre en charge
<ul>
<li>- la traduction des labels de vos champs</li>
<li>-la traduction des messages d&#8217;erreurs envoyés par les validators (si vous y avez recours)</li>
</ul>
</li>
</ul>
<h3>Pré requis</h3>
<ul>
<li>utilisation du framework en mode MVC</li>
<li>notions HTML et CSS !</li>
</ul>
<p>Je n&#8217;aborderais ici que brièvement les décorateurs, je trouve personnellement leur utilisation peu intuitive et donc très handicapante lorsque je souhaite styliser mes formulaires, ou encore que je me trouve confronté à des formulaires très complexes. Je précise tout de même ici qu&#8217;il y a tout ce qu&#8217;il faut pour résoudre ces problèmes, mais je préfère tout de même utiliser les fonctionnalités de ce composant les plus liées aux données.</p>
<ul>
<li>
<h4>Introduction</h4>
<ul>
<li>Étendre Zend_Form</li>
<li>Une méthode pour tout mettre en place</li>
<li>Définir les champs de votre formulaire</li>
</ul>
</li>
</ul>
<h3>Introduction</h3>
<h4>Étendre Zend_Form</h4>
<p>Basiquement, la solution la plus simple consiste à créer une classe de formulaire étendant la classe Zend_Form afin de profiter de toutes ses fonctionnalités et de pouvoir simplement créer un formulaire en appelant cette classe.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> My_UserForm <span style="color: #000000; font-weight: bold;">extends</span> Zend_Form <span style="color: #666666; font-style: italic;">// déclaration de notre classe de formulaire</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$userForm</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> UserForm<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// instanciation de notre classe de formulaire personnalisée</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">view</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">form</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$userForm</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// passage du formulaire à la vue</span></pre></div></div>

<h4>Une méthode pour tout mettre en place</h4>
<p>Ensuite, nous pouvons définir tout un ensemble d&#8217;options pour notre formulaire dans la méthode init() héritée de Zend_Form qui sera appelée automatiquement lorsque nous créerons notre formulaire</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> My_UserForm <span style="color: #000000; font-weight: bold;">extends</span> Zend_Form <span style="color: #666666; font-style: italic;">// déclaration de notre classe de formulaire</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">function</span> init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h4>Définir les champs de votre formulaire</h4>
<p>Pour ajouter des champs dans le formulaire, il nous suffit d&#8217;y attacher des éléments de type Zend_Form_Element, il en existe un certain nombre de base, sachant qu&#8217;il est bien sur possible de créer votre propre classe si les éléments embarqués avec le framework ne suffisait pas à satisfaire pas vos besoins. Tout se fait au sein de la méthode init();</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> My_UserForm <span style="color: #000000; font-weight: bold;">extends</span> Zend_Form <span style="color: #666666; font-style: italic;">// déclaration de notre classe de formulaire</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">function</span> init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$myField</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Zend_Form_Element_Text<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'myFieldName'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addElement</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$myField</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Pour créer un nouveau champ, vous aurez donc souvent recours à un Zend_Form_Element_[type] ou type peut être par exemple Text, Textarea, Submit, File, Select&#8230;<br />
myFieldName définit la valeur qui sera utilisée pour les attributs id et name de votre champ. Quant à la méthode addElement(), elle parle d&#8217;elle même, elle ajoute le champ au formulaire, il existe aussi addElements() à qui il faudra cette fois passer un tableau.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2009/02/utilisation-de-zend_form/feed/</wfw:commentRss>
		</item>
		<item>
		<title>vœux 2009</title>
		<link>http://blog.undes1gn.org/2008/12/2009/</link>
		<comments>http://blog.undes1gn.org/2008/12/2009/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 12:29:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[illustration]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=186</guid>
		<description><![CDATA[Bonne &#038; heureuse année 2009]]></description>
			<content:encoded><![CDATA[<p class="flir">La carte de vœux de l&#8217;agence pour laquelle je travaille actuellement</p>
<p style="text-align: center;"><img class="aligncenter" title="hpny_2009" src="http://blog.undes1gn.org/wp-content/uploads/2008/12/hpny_2009.jpg" alt="hpny_2009" width="600" height="286" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/12/2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEC3 / site web</title>
		<link>http://blog.undes1gn.org/2008/12/sec3-site-web/</link>
		<comments>http://blog.undes1gn.org/2008/12/sec3-site-web/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 12:17:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[ZEND framework]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=141</guid>
		<description><![CDATA[Design et développement du site web de SEC3, société d'expertise comptable et de commissariat aux comptes.]]></description>
			<content:encoded><![CDATA[<p>Design et développement du site web de SEC3, société d&#8217;expertise comptable et de commissariat aux comptes.<br />
Le site a été développé en PHP/MYSQL avec le framework ZEND.</p>
<p><a title="sec3" href="http://www.undes1gn.org/sec3/" target="_blank">visiter le site</a></p>
<p><img title="sec3_web_home" src="http://blog.undes1gn.org/wp-content/uploads/2008/12/sec3_web_home.jpg" alt="" width="300" height="246" /><img title="sec3_web_services" src="http://blog.undes1gn.org/wp-content/uploads/2008/12/sec3_web_services.jpg" alt="" width="300" height="246" /><img title="sec3_web_centre_infos" src="http://blog.undes1gn.org/wp-content/uploads/2008/12/sec3_web_centre_infos.jpg" alt="" width="300" height="246" /><img title="sec3_web_contact" src="http://blog.undes1gn.org/wp-content/uploads/2008/12/sec3_web_contact.jpg" alt="" width="300" height="246" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/12/sec3-site-web/feed/</wfw:commentRss>
		</item>
		<item>
		<title>site web touristique</title>
		<link>http://blog.undes1gn.org/2008/11/site-web-touristique/</link>
		<comments>http://blog.undes1gn.org/2008/11/site-web-touristique/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 12:45:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=117</guid>
		<description><![CDATA[Développement d'un site web pour un magazine régional annuel du tourisme d'affaires et familial en région Languedoc-Roussillon.]]></description>
			<content:encoded><![CDATA[<p>Développement d&#8217;un site web pour un magazine régional annuel du tourisme d&#8217;affaires et familial en région Languedoc-Roussillon. Un classement par département et par secteur d&#8217;activités permet à l&#8217;internaute d&#8217;accéder rapidement à l&#8217;information dont il a besoin. Ce projet comporte également le développement d&#8217;un CMS personnalisé.</p>
<p style="text-align: right;"><a title="escapades regionales" href="http://www.escapadesregionales.com" target="_blank">visiter le site</a></p>
<p><a href="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_home.jpg"><img class="alignnone size-full wp-image-120" title="er_home" src="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_home.jpg" alt="" width="300" height="246" /></a><a href="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_dept.jpg"><img class="alignnone size-full wp-image-121" title="er_dept" src="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_dept.jpg" alt="" width="300" height="246" /></a><a href="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_mkit.jpg"><img class="alignnone size-full wp-image-122" title="er_mkit" src="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_mkit.jpg" alt="" width="300" height="246" /></a><a href="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_sitemap.jpg"><img class="alignnone size-full wp-image-123" title="er_sitemap" src="http://blog.undes1gn.org/wp-content/uploads/2008/11/er_sitemap.jpg" alt="" width="300" height="246" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/11/site-web-touristique/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pingu-1</title>
		<link>http://blog.undes1gn.org/2008/11/pingu-1/</link>
		<comments>http://blog.undes1gn.org/2008/11/pingu-1/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 13:09:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[divers]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=109</guid>
		<description><![CDATA[Bienvenue sur la banquise]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.undes1gn.org/wp-content/uploads/2008/11/pingu_one_fpb.jpg" rel="lightbox[set]"><br />
<img title="pingu" src="http://blog.undes1gn.org/wp-content/uploads/2008/11/pingu_one_fpb.jpg" alt=""/><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/11/pingu-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mad fish</title>
		<link>http://blog.undes1gn.org/2008/09/mad-fish/</link>
		<comments>http://blog.undes1gn.org/2008/09/mad-fish/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 12:11:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[illustration]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=87</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.undes1gn.org/wp-content/uploads/2008/09/madfish_full.jpg" rel="lightbox[set]"  class="lightbox-350"><img src="http://blog.undes1gn.org/wp-content/uploads/2008/09/madfish_full.jpg" alt="" title="madfish_full"/></a><a href="http://blog.undes1gn.org/wp-content/uploads/2008/09/madfish_closeup.jpg" rel="lightbox[set]" class="lightbox-350"><img src="http://blog.undes1gn.org/wp-content/uploads/2008/09/madfish_full.jpg" alt="" title="madfish_closeup"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/09/mad-fish/feed/</wfw:commentRss>
		</item>
		<item>
		<title>annonces presse Metarom</title>
		<link>http://blog.undes1gn.org/2008/09/annonces-presse-metarom/</link>
		<comments>http://blog.undes1gn.org/2008/09/annonces-presse-metarom/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 11:31:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=84</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img title="metarom_ads" src="http://blog.undes1gn.org/wp-content/uploads/2008/09/metarom_ads.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/09/annonces-presse-metarom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>large Paul</title>
		<link>http://blog.undes1gn.org/2008/08/large-paul/</link>
		<comments>http://blog.undes1gn.org/2008/08/large-paul/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 17:21:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[divers]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=77</guid>
		<description><![CDATA[Les flâneries dans les merceries de mon quartier, les blessures sans dé à coudre et le bonheur de tenir un 'jouet' qui sort de notre imagination...]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-79" title="largepaul_001" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/largepaul_001.jpg" alt="" width="500" height="282" /><br />
<img class="alignnone size-full wp-image-80" title="largepaul_002" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/largepaul_002.jpg" alt="" width="500" height="354" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/08/large-paul/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Etiquette de bière</title>
		<link>http://blog.undes1gn.org/2008/08/etiquette-de-biere/</link>
		<comments>http://blog.undes1gn.org/2008/08/etiquette-de-biere/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 09:35:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[illustration]]></category>

		<category><![CDATA[packaging]]></category>

		<category><![CDATA[alcool]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=76</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img title="duvel_lievre_b" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/duvel_lievre_b.jpg" alt=""/><img title="duvel_lievre_a" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/duvel_lievre_a.jpg" alt=""/></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/08/etiquette-de-biere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kornet</title>
		<link>http://blog.undes1gn.org/2008/08/kornet/</link>
		<comments>http://blog.undes1gn.org/2008/08/kornet/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 20:06:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[divers]]></category>

		<category><![CDATA[bois]]></category>

		<category><![CDATA[design objet]]></category>

		<category><![CDATA[luminaire]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=68</guid>
		<description><![CDATA[Design et réalisation d'un luminaire en bois et zinc dépoli]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Un bois exotique de forte densité a été utilisé pour la mise en oeuvre du pied et du zinc dépoli pour le cone, quant au disque  qui chapeaute le luminaire, une de ces face est repolie afin de réfléchir la lumière et de pouvoir ainsi l&#8217;orienter.</p>
<p><img class="aligncenter" title="kornet" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/kornet.jpg" alt="" /><img class="aligncenter" title="kornetinsitu" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/kornetinsitu.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/08/kornet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3D &#8216;caramels&#8217;</title>
		<link>http://blog.undes1gn.org/2008/08/3d-caramels/</link>
		<comments>http://blog.undes1gn.org/2008/08/3d-caramels/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 05:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[3D]]></category>

		<category><![CDATA[3DS max]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=62</guid>
		<description><![CDATA[


]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-65" title="rendumeta003" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/rendumeta003.jpg" alt="" width="500" height="400" /></p>
<p><img class="alignnone size-full wp-image-64" title="rendumeta002" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/rendumeta002.jpg" alt="" width="500" height="375" /></p>
<p><img class="alignnone size-full wp-image-63" title="rendumeta001" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/rendumeta001.jpg" alt="" width="500" height="374" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/08/3d-caramels/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chardonnay</title>
		<link>http://blog.undes1gn.org/2008/08/chardonnay/</link>
		<comments>http://blog.undes1gn.org/2008/08/chardonnay/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 13:32:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[packaging]]></category>

		<category><![CDATA[alcool]]></category>

		<category><![CDATA[vin]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=58</guid>
		<description><![CDATA[Étiquette de vin. Cépage Chardonnay]]></description>
			<content:encoded><![CDATA[<p><img title="planche-chardonnay" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/planche-chardonnay.jpg" alt="" /><br />
<img title="planche-chardonnay-2" src="http://blog.undes1gn.org/wp-content/uploads/2008/08/planche-chardonnay-2.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/08/chardonnay/feed/</wfw:commentRss>
		</item>
		<item>
		<title>invitation</title>
		<link>http://blog.undes1gn.org/2008/07/invitation/</link>
		<comments>http://blog.undes1gn.org/2008/07/invitation/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 12:23:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=54</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.undes1gn.org/wp-content/uploads/2008/07/ce.jpg" alt="" title="ce" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/07/invitation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>nautilusrecordz.com 2008</title>
		<link>http://blog.undes1gn.org/2008/07/nautilusrecordzcom-2008/</link>
		<comments>http://blog.undes1gn.org/2008/07/nautilusrecordzcom-2008/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 11:37:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[antipodes]]></category>

		<category><![CDATA[attraction{s}]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=50</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.undes1gn.org/wp-content/uploads/2008/07/nr_2008.jpg" alt="" title="nr_2008" width="400" height="716" class="aligncenter size-full wp-image-56" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/07/nautilusrecordzcom-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>vœux 2007</title>
		<link>http://blog.undes1gn.org/2008/07/voeux-2007/</link>
		<comments>http://blog.undes1gn.org/2008/07/voeux-2007/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 11:28:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=47</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.undes1gn.org/wp-content/uploads/2008/07/voeux_dcc_2007.jpg" alt="" title="voeux_dcc_2007" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/07/voeux-2007/feed/</wfw:commentRss>
		</item>
		<item>
		<title>site web ilelleinversement</title>
		<link>http://blog.undes1gn.org/2008/07/site-internet-du-studio-ilelleinversement/</link>
		<comments>http://blog.undes1gn.org/2008/07/site-internet-du-studio-ilelleinversement/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 17:37:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=44</guid>
		<description><![CDATA[Développement du site web d'un talentueux studio de graphisme 'ilelleinversement' composé de Benjamin Vidal et Lise Genty.]]></description>
			<content:encoded><![CDATA[<p>[lang_fr]Développement du site web d&#8217;un talentueux studio de graphisme &#8216;ilelleinversement&#8217; composé de Benjamin Vidal et Lise Genty.</p>
<p>Ce site flash est entièrement développé en actionscript.</p>
<p><a title="ilelleinversement" href="http://www.ilelleinversement.com/" target="_blank">visiter le site</a></p>
<p><img title="ilelle_screenshots" src="http://blog.undes1gn.org/wp-content/uploads/2008/07/ilelle_screenshots.jpg" alt="" />[/lang_fr]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/07/site-internet-du-studio-ilelleinversement/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Etiquettes de vin californien</title>
		<link>http://blog.undes1gn.org/2008/07/etiquettes-de-vin/</link>
		<comments>http://blog.undes1gn.org/2008/07/etiquettes-de-vin/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 11:08:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[packaging]]></category>

		<category><![CDATA[alcool]]></category>

		<category><![CDATA[vin]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=33</guid>
		<description><![CDATA[Etiquettes de vin pour un vignoble californien.]]></description>
			<content:encoded><![CDATA[<p>L&#8217;objectif était de créer un étiquette de vin à l&#8217;image jeune et décalé pour un vignoble californien situé dans la célèbre Napa Valley.<br />
<img title="all_wine_bottles" src="http://blog.undes1gn.org/wp-content/uploads/2008/07/all_wine_bottles.jpg" alt="" /><br />
<img title="wine_etiks_b_e" src="http://blog.undes1gn.org/wp-content/uploads/2008/07/wine_etiks_b_e.jpg" alt="" /><br />
<img title="square_etiks" src="http://blog.undes1gn.org/wp-content/uploads/2008/07/square_etiks.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/07/etiquettes-de-vin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Attraction{s} pack</title>
		<link>http://blog.undes1gn.org/2008/06/attractions-pack/</link>
		<comments>http://blog.undes1gn.org/2008/06/attractions-pack/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 18:38:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[packaging]]></category>

		<category><![CDATA[print]]></category>

		<category><![CDATA[antipodes]]></category>

		<category><![CDATA[attraction{s}]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=26</guid>
		<description><![CDATA[La pochette de l'album Attraction{s} du groupe Antipodes]]></description>
			<content:encoded><![CDATA[<p>[lang_fr]<img class="alignnone size-full wp-image-27" title="attractions_sticker_promo" src="http://blog.undes1gn.org/wp-content/uploads/2008/06/attractions_sticker_promo.jpg" alt="" width="300" height="300" /></p>
<p>Le sticker ayant servi au CD promotionnel.</p>
<p><img title="attractions_digipack_ext" src="http://blog.undes1gn.org/wp-content/uploads/2008/06/attractions_digipack_ext.jpg" alt="" /></p>
<p style="text-align: center;">L&#8217;extérieur du digipack.</p>
<p><img title="attractions_plan_final" src="http://blog.undes1gn.org/wp-content/uploads/2008/06/attractions_plan_final.jpg" alt="" /></p>
<p style="text-align: center;">Un plan reprenant le titre de chaque track avec des infos complémentaires, au verso du livret déplié.</p>
<p><img title="attractions_lyrics_livrets" src="http://blog.undes1gn.org/wp-content/uploads/2008/06/attractions_lyrics_livrets.jpg" alt="" /></p>
<p>Vous pouvez également retrouver une animation déclinée de la pochette <!--intlink id="8" type="post" text="ici"-->[/lang_fr]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/06/attractions-pack/feed/</wfw:commentRss>
		</item>
		<item>
		<title>stands</title>
		<link>http://blog.undes1gn.org/2008/06/stands/</link>
		<comments>http://blog.undes1gn.org/2008/06/stands/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 16:34:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[3D]]></category>

		<category><![CDATA[animation]]></category>

		<category><![CDATA[3DS max]]></category>

		<guid isPermaLink="false">http://blog.undes1gn.org/?p=22</guid>
		<description><![CDATA[Une animation de stands se constituant]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://blog.undes1gn.org/2008/06/stands/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
