<?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>Silex Labs</title>
	<atom:link href="http://www.silexlabs.org/the-blog//fr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.silexlabs.org/the-blog</link>
	<description>The blog de la Team - Silex Flash CMS</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:48:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Future Silex Developments</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/07/future-silex-developments/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/07/future-silex-developments/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 17:47:58 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[En vrac]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1739</guid>
		<description><![CDATA[Here is a document that I wrote formalizing some of the discussions we&#8217;re having about Silex.
Introduction
The aim of this development is to:
-       Increase performance
-       Start evolving towards platform independence. This means that  soon Silex will be able to render sites in AS2, AS3, JS, or pure static  HTML and that this development must lay some [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a document that I wrote formalizing some of the discussions we&#8217;re having about Silex.</p>
<h2>Introduction</h2>
<p>The aim of this development is to:</p>
<p>-       Increase performance</p>
<p>-       Start evolving towards platform independence. This means that  soon Silex will be able to render sites in AS2, AS3, JS, or pure static  HTML and that this development must lay some of the groundwork for that.</p>
<p>-       Make integration of third party components as easy as possible</p>
<p>-       Remove functionality from the core to make it lighter and push  it towards plugins</p>
<p>-       Supercomponents. This is a separate development so it will not  be specified here, but its future integration must be taken into account</p>
<p>-       Library of components in one swf file should be possible</p>
<p><span id="more-1739"></span></p>
<p>Current state of things, and what the problems are :</p>
<p>-       A page is what you see at a url, for example <a href="http://yoursite.com/welcome/contact">yoursite.com/welcome/contact</a>.  This is rendered in Silex as pile of Layouts that contain Layers that  contain media and components. Containers that are in a “Layer Skin”  render Media, for example images and sound. Components are special SWFs  that are loaded independently. It would be simpler and better to speak  of Layers, SubLayers, and only components, not media.</p>
<p>-       Layouts are described in cumbersome XML files that no longer  fit our needs and that are long to parse and manipulate. Furthermore the  component properties are very linked to the virtual machine DOM. For  example they contain “_x”, that is only x in AS2. There is therefore no  way forward to work with AS3 or JS. The file format/system needs to be  changed.</p>
<p>-       All components in Silex currently need to inherit the UiBase  AS2 class. UiBase contains the arrays where the components and their  properties are described. This is bad for performance, forces all  components to be visual whereas there are now many non-visual  components, and makes integration of third party functionality very  difficult. We need to get rid of this dependence on UiBase and find  another mechanism to describe components.</p>
<h2>Proposal</h2>
<p><strong>Changes to the user experience</strong></p>
<p>As mentioned above, a page will now be rendered as a pile of Layers  that contain SubLayers. LayerSkins will be destroyed, and be replaced by  a system where there is a mapping between the file extension of the  media being used and the corresponding container component. For example,  all files ending with “jpg”, ”png”, and “swf” can be rendered in the  same way by the same container component that is responsible for static  visual media. It could be called “ImageDisplay”. The current library  will be enhanced with a separation between media and components. To add  an image, the user will therefore have 2 possibilities: either add an  “ImageDisplay” and configure it, or simply choose to insert the image  and use the associated component. If by chance there are 2 components  available to render the same file extension, the UI could offer a  choice.  The only way for components that do not match a media type to  be added is now through the component menu.</p>
<p><strong>Changes in the architecture</strong></p>
<p>The current layer skin players are moved to a plugin called  “base_components”. This plugin contains the current renderers each in  their own swf (or one single librairy ?), and one or more php files for  the plugin integration.</p>
<p>A description of these components and how they can be used, configured  etc. must be made available when editing the site, but not be necessary  just to render them. Furthermore, the layer description file(s) should  be useable to render the layer without a server and be planned for the  multiplatform evolution.</p>
<p>The following data formats are to be applied:</p>
<p>Layers are described in one file per platform, using the following  naming scheme: &lt;layername&gt;.&lt;platform&gt;.xml. For example:  start.as2.xml. The structure of all of these files is the same down to  component description, where the description of the component properties  is specific to the DOM of the platform. For example the as2 file will  contain _x if necessary, and the as3 file will contain x.</p>
<p>So for example:</p>
<p>&lt;layer&gt;</p>
<p>&lt;subLayer id=”under”&gt;</p>
<p>&lt;components&gt;</p>
<p>&lt;component url=”/plugins/base_components/imagedisplay.swf” _x=”34” …  more properties, &gt;&lt;htmlText&gt;&#8230;&lt;/htmlText&gt;&#8230;more  properties&#8230;&lt;/component&gt;</p>
<p>… more components</p>
<p>&lt;/components&gt;</p>
<p>&lt;/subLayer&gt;</p>
<p>… more subLayers</p>
<p>&lt;/layer&gt;</p>
<p>Here is the content of the class ComponentDescriptor:</p>
<p>-       As2Url, as3Url, jsUrl: urls to the file to load when using it,  depending on the platform. url relative to the root of the server. This  information is used to see what platforms are supported.</p>
<p>-       Class: Name of the class contained in the file, where relevant</p>
<p>-       Name: A localized name to show in the components menu</p>
<p>-       Description: A localized description to show in the components</p>
<p>-       MediaTypes: an array of strings each containing an extension  that is supported by the component. For example [“swf”, “png”, “jpg”]</p>
<p>-       Properties: An array of properties. See below.</p>
<p>-       getHtmlEquivalent which returns an html equivalent for the  component (seo). Takes as input: the component id, the context (values  for accessors, i.e. all layers data for the current page + publication  config)</p>
<p>Events and methods and whatever other meta data we need can be added  later.</p>
<p>Here is the content of the class PropertyDescriptor:</p>
<p>-       Name: Localized name</p>
<p>-       Description: Localized description</p>
<p>-       As2Name, as3Name, jsName : The matching property in each  platform (e.g. _x / x / left )</p>
<p>-       Default: default value</p>
<p>-       Category: a category to use to sort the properties. TODO Could  be replaced by tags, maybe.</p>
<p>-       isRegistered:  true/false should this be saved?</p>
<p>-       Miscellaneous meta data such as type, min/max values, min/max  length etc.</p>
<p>Events and methods are not currently used, so they can be described  later.</p>
<p>Furthermore, it must be easy to inherit descriptors. For example, the  image renderer and the video renderer will have shared properties  because they are both visual components. So a possible class inheritance  structure would be :</p>
<p>ComponentDescriptorBase -&gt; VisualComponentDescriptor-&gt;  ImageDescriptor and VideoDescriptor.</p>
<p>It makes sense to make ComponentDescriptorBase and  VisualComponentDescriptor part of the basic framework so that components  in other plugins such as OOF can use them to build their descriptors.  ComponentDescriptorBase should handle localization using a standard yet  to be defined. Each of these descriptor classes is defined in its own  PHP file.</p>
<p>These components descriptors are only used by the wysiwyg, so they can  be queried using a new service called component_descriptor_service. The  method is called getDescriptors. It returns all available component  descriptors.
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/07/future-silex-developments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annonce de Silex v1.6</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/07/annonce-de-silex-v1-6/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/07/annonce-de-silex-v1-6/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:10:17 +0000</pubDate>
		<dc:creator>lexa</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[It's Hot, it's Graphic Design !]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Organisation]]></category>
		<category><![CDATA[The Bright Side of Open Source]]></category>
		<category><![CDATA[To Blog Blug Bug]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1730</guid>
		<description><![CDATA[-English version here-
Quelques mots pour vous informer que l&#8217;histoire de Silex continue d&#8217;être pleine de surprises et de satisfactions. Nous travaillons sur Silex v1.6! La phase de débogage pour l&#8217;alpha 3 est en cours.
Continuez à lire cet article, vous allez être surpris!

Lexa a fait un gabarit d&#8217;animation &#171;&#160;flip book&#160;&#187; et a coordonné l&#8217;ensemble du dev [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;">-<a href="http://www.silexlabs.org/the-blog/en/2010/07/annonce-de-silex-v1-6/" target="_self">English version here</a>-</p>
<p>Quelques mots pour vous informer que l&#8217;histoire de Silex continue d&#8217;être pleine de surprises et de satisfactions. Nous travaillons sur Silex v1.6! La phase de débogage pour l&#8217;alpha 3 est en cours.</p>
<p>Continuez à lire cet article, vous allez être surpris!</p>
<div class="wp-caption alignnone" style="width: 829px"><img class=" " title="new Flex GUI of Silex" src="http://farm5.static.flickr.com/4122/4757402812_a7a164edcf_b.jpg" alt="Nice ergonomics by Pol ( superwup.com ) Development by Yannick and Ariel ( arielsommeria.com )  The design of the site in the background is made by Léo" width="819" height="514" /><p class="wp-caption-text">Nice ergonomics by Pol ( superwup.com ) Development by Yannick and Ariel ( arielsommeria.com )  The design of the site in the background is made by Léo</p></div>
<p><span id="more-1730"></span></p>
<p>Lexa a fait un <strong>gabarit d&#8217;animation &laquo;&nbsp;flip book&nbsp;&raquo;</strong> et a coordonné l&#8217;ensemble du dev avec Pol.</p>
<p>Pol a également fait une <strong>ergonomie 100% revue et corrigée</strong>. Yannick et Zabojad l&#8217;ont codée en Flex (boîtes à outils WYSIWYG) et Oof (manager). Vous pouvez voir une capture d&#8217;écran ci-dessus.</p>
<p>Grace à Ariel, <strong>l&#8217;API est maintenant complète: 25% php, javascript 25%, ActionScript2 25% et 25% ActionScript 3</strong>. Et tout cela communiquer de façon transparente, dispatch des événements d&#8217;un langage à l&#8217;autre. Un système de plugin est en place et plusieurs plugins utilisent déjà l&#8217;API (merci Qian): <strong>Google Analytics, Piwik Analytics, Yahoo Analytics, recherche interne, snapshot</strong>, &#8230;</p>
<p>En ce qui concerne Nicolas V, il est à fond sur <a href="http://haxe.org" target="_blank">haXe</a>! Il programme un <strong>convertisseur HTML5</strong>, afin d&#8217;avoir un équivalent des pages Flash/Silex en HTML5. Ca fonctionne déjà sur <strong>iPad / iPhone</strong> <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Et le meilleur pour les nouveaux utilisateurs Silex vient des gars de Silex Labs, qui ont fait un excellent travail de <strong>documentation</strong>. Et ils travaillent actuellement sur le design de l&#8217;interface graphique, et de la <strong>nouvelle identité de <a href="http://silex-ria.org/" target="_blank">Silex</a>, <a href="http://oof.sourceforge.net" target="_blank">Oof</a>, <a href="http://amfphp.sourceforge.net" target="_blank">AMFPHP</a> et Flog</strong>. Franck, Sol, Kat, Léo, Riwal et Nico &laquo;&nbsp;Frankie Fraser&nbsp;&raquo;, go on, please!</p>
<p>Donc, maintenant vous le savez, nous ne nous sommes reposer sur nos lauriers ces derniers mois &#8230;</p>
<p>ENCOURAGEMENTS BIENVENUS EN COMMENTAIRE <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/07/annonce-de-silex-v1-6/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/07/annonce-de-silex-v1-6/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Avoir un bon Environnement pour faire du Silex</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/06/avoir-un-bon-environnement-pour-faire-du-silex/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/06/avoir-un-bon-environnement-pour-faire-du-silex/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:05:51 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[En vrac]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1722</guid>
		<description><![CDATA[Silex tourne dans un navigateur Web, et tous les navigateurs ne sont pas égaux pour créer vos sites préférés. Le problème le plus souvent rencontré est le cache: Votre navigateur stocke des copies de tous les sites que vous visitez, ce qui a pour effet que des fois vous voyez des versions anciennes de vos [...]]]></description>
			<content:encoded><![CDATA[<p>Silex tourne dans un navigateur Web, et tous les navigateurs ne sont pas égaux pour créer vos sites préférés. Le problème le plus souvent rencontré est le cache: Votre navigateur stocke des copies de tous les sites que vous visitez, ce qui a pour effet que des fois vous voyez des versions anciennes de vos pages quand vous éditez un site. Pour contrer ce problème, nous vous conseillons d&#8217;utiliser le <a href="http://www.mozilla-europe.org/fr/firefox/">navigateur Firefox</a> ainsi que l&#8217;extension <a href="http://chrispederick.com/work/web-developer/">Web Developer</a>, qui permet de désactiver le cache.</p>
<p>Ensuite, pour les plus avancés, vous voulez disposer d&#8217;outils d&#8217;analyse. La version normale de Flash ne dit rien quand il y a un problème. Par contre la <a href="http://www.adobe.com/support/flashplayer/downloads.html">version Debug</a> vous mettra un message d&#8217;erreur quand il détecte une erreur. Une règle de pouce: S&#8217;il y a eu une erreur, rafraîchissez tout de suite, Flash est en vrac et on ne peut plus rien en tirer de bon. Nous vous conseillons aussi <a href="http://getfirebug.com/">FireBug</a>, une extension Firefox, qui fait trop de choses pour qu&#8217;on puisse les lister là, mais vous permettra entre autres de suivre les requêtes envoyées au serveur. Il y a enfin une extension pour FireBug qui s&#8217;appelle <a href="http://blog.coursevector.com/flashbug">FlashBug</a>, qui permet de lire facilement les traces que vous aurez mis dans dans votre code Flash.</p>
<p>Il ne me reste plus qu&#8217;à vous souhaiter bon courage, et de vous inviter à partager vos questions et vos tuyaux dans les commentaires!
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/06/avoir-un-bon-environnement-pour-faire-du-silex/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/06/avoir-un-bon-environnement-pour-faire-du-silex/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Build the widget of your dreams. Silex ♥ Yahoo!</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/06/build-the-widget-of-your-dreams/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/06/build-the-widget-of-your-dreams/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 15:21:13 +0000</pubDate>
		<dc:creator>lexa</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[Silex Workshops]]></category>
		<category><![CDATA[The Dark Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1705</guid>
		<description><![CDATA[How to make a Yahoo! widget out of a Silex publication ? It is quite simple since Silex has a widget mechanism. It was made to allow you to put a publication on a myspace page, to create an application out of a publication with Zinc&#8230;
Let&#8217;s use this functionality of Silex and the Yahoo! widgets system, [...]]]></description>
			<content:encoded><![CDATA[<p>How to make a <a href="http://widgets.yahoo.com/" target="_blank">Yahoo! widget</a> out of a Silex publication ? It is quite simple since Silex has a widget mechanism. It was made to allow you to put a publication on a <a href="http://www.myspace.com/lexayo" target="_blank">myspace</a> page, to create an application out of a publication with Zinc&#8230;</p>
<p>Let&#8217;s use this functionality of Silex and the <span style="font-size: 13.3333px;">Yahoo! widgets system, </span><span style="font-size: 13.3333px;">in order to <strong>make a desktop application</strong> with installation, update and configuration.</span></p>
<p><span style="font-size: 13.3333px;">Here is <a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/06/silex-yahoo-widget.widget">my sample widget</a>. And <a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/06/silex-yahoo-widget.zip">here are the sources</a>.</span></p>
<p><span style="font-size: 13.3333px;"> </span></p>
<div id="attachment_1727" class="wp-caption alignnone" style="width: 353px"><a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/06/silex-yahoo-widget.png"><img class="size-full wp-image-1727  " title="silex-yahoo-widget" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/06/silex-yahoo-widget.png" alt="widget test for Silex" width="343" height="439" /></a><p class="wp-caption-text">widget test for Silex: it gives you some news about Silex on your desktop</p></div>
<p><span id="more-1705"></span></p>
<p><span style="font-size: 13.3333px;">Yahoo! Widgets is a free application platform for Mac OS X and Microsoft Windows. </span></p>
<ul>
<li><span style="font-size: 13.3333px;">http://en.wikipedia.org/wiki/Yahoo!_Widgets</span></li>
<li><span style="font-size: 13.3333px;">http://widgets.yahoo.com/</span></li>
</ul>
<p>Here is how to make a Yahoo! widget with Silex:</p>
<ul>
<li><span style="font-size: 13.3333px;"> <span style="font-size: 11.1111px;">in a silex server, create one site with the parameter &laquo;&nbsp;layer skin&nbsp;&raquo; set to &laquo;&nbsp;layer_skin_light.swf&nbsp;&raquo; and no embed fonts (all text field should have the parameter &laquo;&nbsp;include font&nbsp;&raquo; unchecked). You can remove the folders fonts, logs, cgi, conf, install, js, loaders, plugins, tools, trash and all files in the root folder except silex.swf</span></span></li>
<li><span style="font-size: 13.3333px;">in a new folder where you will put all the yahoo plugin, put a &laquo;&nbsp;Resources&nbsp;&raquo; folder with the &laquo;&nbsp;silex_server&nbsp;&raquo; folder inside it.</span></li>
<li><span style="font-size: 13.3333px;">use the file &laquo;&nbsp;fla/loader_projector.fla&nbsp;&raquo; of the dev kit to generate the loader, which I called &laquo;&nbsp;loader_yahoo_widget.swf&nbsp;&raquo;. This file contains the website configuration, your site name for example. Tip : leave this line uncommented (i do not know why exactly):</span></li>
</ul>
<pre style="padding-left: 60px;">rootUrl = "../silex_server/";</pre>
<ul>
<li><span style="font-size: 13.3333px;">create a .kon file which is the yahoo widget conf file, see the example I did. You just need to embed the loader_yahoo_widget.swf file. You also can define properties which the user will be able to modify and which will be available in Silex as accessors (in &lt;&lt;silex.config.YOUR PROPERTY FROM YAHOO CONFIG PANNEL&gt;&gt;)</span></li>
</ul>
<div id="attachment_1707" class="wp-caption alignnone" style="width: 675px"><img class="size-full wp-image-1707" title="silex yahoo widget admin pannel" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/06/silex-yahoo-widget.jpg" alt="silex yahoo widget admin pannel" width="665" height="177" /><p class="wp-caption-text">silex yahoo widget admin pannel</p></div>
<ul>
<li><span style="font-size: 13.3333px;">install yahoo widget and use the &laquo;&nbsp;open widget&nbsp;&raquo; menu in order to load your widget.</span></li>
</ul>
<p>After you have done a cool widget, do not forget to <a href="http://widgets.yahoo.com/submit/" target="_blank">submit it to yahoo! here</a>.</p>
<p>Note: the widget background is transparent, which is pretty cool <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">How to make a Yahoo! widget out of a Silex publication ? It is quite simple since Silex has a widget mechanism. It was made to allow you to put a publication on a myspace page, to create an application out of a publication with Zinc&#8230;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://en.wikipedia.org/wiki/File:Konfabulator_screenshot.jpg</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Yahoo! Widgets is a free application platform for Mac OS X and Microsoft Windows.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&gt; http://en.wikipedia.org/wiki/Yahoo!_Widgets</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&gt; http://widgets.yahoo.com/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- in a silex server, create one site with the parameter &laquo;&nbsp;layer skin&nbsp;&raquo; set to &laquo;&nbsp;layer_skin_light.swf&nbsp;&raquo; and no embed fonts (all text field should have the parameter &laquo;&nbsp;include font&nbsp;&raquo; unchecked). You can remove the folders fonts, logs, cgi, conf, install, js, loaders, plugins, tools, trash and all files in the root folder except silex.swf</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- in a new folder where you will put all the yahoo plugin, put a &laquo;&nbsp;Resources&nbsp;&raquo; folder with the &laquo;&nbsp;silex_server&nbsp;&raquo; folder inside it.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- use the file &laquo;&nbsp;fla/loader_projector.fla&nbsp;&raquo; of the dev kit to generate the loader, which I called &laquo;&nbsp;loader_yahoo_widget.swf&nbsp;&raquo;. This file contains the website configuration, your site name for example. Tip : leave this line uncommented (i do not know why exactly):</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>rootUrl = &laquo;&nbsp;../silex_server/&nbsp;&raquo;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- create a .kon file which is the yahoo widget conf file, see the example I did. You just need to embed the loader_yahoo_widget.swf file. You also can define properties which the user will be able to modify and which will be available in Silex as accessors (in &lt;&lt;silex.config.YOUR PROPERTY FROM YAHOO CONFIG PANNEL&gt;&gt;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">illustration admin pannel</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">- install yahoo widget and use the &laquo;&nbsp;open widget&nbsp;&raquo; menu in order to load your widget.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">After you have done a cool widget, let&#8217;s submit it to yahoo! here http://widgets.yahoo.com/submit/</div>
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/06/build-the-widget-of-your-dreams/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/06/build-the-widget-of-your-dreams/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Piwik et Silex</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/05/piwik-et-silex/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/05/piwik-et-silex/#comments</comments>
		<pubDate>Fri, 21 May 2010 14:36:29 +0000</pubDate>
		<dc:creator>solvejg</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[The Bright Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1673</guid>
		<description><![CDATA[Piwik, kesako ?
A l&#8217;instar de GoogleAnalytics, Piwik, qui est la nouvelle version de phpMyVisites, est une application web d&#8217;analyse web en temps réel développée en PHP/MySql – son développeur principal, un français, est Matthieu Aubry. Mais Piwik présente un avantage que nous ne pouvons qu&#8217;apprécier et souligner chez Silex : c&#8217;est un logiciel libre et [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: justify;">Piwik, kesako ?</h2>
<p style="text-align: justify;">A l&#8217;instar de GoogleAnalytics, Piwik, qui est la nouvelle version de phpMyVisites, est une application web <strong>d&#8217;analyse web</strong> en temps réel développée en PHP/MySql – son développeur principal, un français, est <a href="http://www.enib.fr/~aubry/" target="_blank">Matthieu Aubry</a>. Mais Piwik présente un avantage que nous ne pouvons qu&#8217;apprécier et souligner chez Silex : c&#8217;est un <strong>logiciel libre et Open-Source</strong>.</p>
<p style="text-align: justify;">Contrairement à GoogleAnalytics, vos données sont stockées dans votre propre serveur (en effet, Piwik est installé sur votre serveur) et vous pouvez choisir, dans son interface, vos modules, enlever ceux dont vous n&#8217;avez pas besoin, et même en créer. Vous pouvez aussi customiser votre interface utilisateur grâce aux widgets et à leurs propriétés de drag and drop. Chaque Widget peut aussi être incorporé dans vos sites, blogs, etc.</p>
<p style="text-align: justify;">De plus, comme Silex, Piwik est disponible en plusieurs langues (environ 30).</p>
<h2 style="text-align: justify;">Piwik aujourd&#8217;hui</h2>
<p style="text-align: justify;">
<div id="attachment_1700" class="wp-caption alignnone" style="width: 1034px"><img class="size-large wp-image-1700" title="new piwik dashboard" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/piwik_dashboard1-1024x167.jpg" alt="new piwik design" width="1024" height="167" /><p class="wp-caption-text">new piwik design</p></div>
<p>Pour sa nouvelle version, Piwik 0.6, le logiciel a refait peau neuve. Il est désormais plus<strong> moderne tout en restant professionnel</strong>. Il y a aussi de nouvelles caractéristiques comme l&#8217;assistant pour exclure les visites en fonction des adresses IP et/ou grâce à un cookie ; l&#8217;assistant pour exclure des paramètres d&#8217;une URL ; de nouveaux réglages dans la section utilisateur. <a href="http://piwik.org/blog/2010/05/piwik-user-interface-new-design-give-your-feedback/">Donnez votre avis sur les nouveautés ici</a>.</p>
<p style="text-align: justify;">Piwik est déjà compatible avec un certain nombre de CMS : Spip, Drupal, Joomla, Wordpress, Dotclear2, Typo, Dokuwii, Mediawiki, et<strong> bientôt Silex </strong>!</p>
<p style="text-align: justify;">
<p style="text-align: left;">Tutoriel en français pour installer Piwik :<a href=" http://www.infothema.fr/forum/index.php?topic=896.0"><span style="color: #ff9900;"> http://www.infothema.fr/forum/index.php?topic=896.0</span></a></p>
<p style="text-align: left;">Site officiel :<a href=" http://piwik.org"><span style="color: #ff9900;"> http://piwik.org</span></a></p>
<p style="text-align: left;">Disponible sous Sourceforge : <a href="http://sourceforge.net/projects/piwik/"><span style="color: #ff9900;">http://sourceforge.net/projects/piwik/</span></a></p>
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/05/piwik-et-silex/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/05/piwik-et-silex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Du temps de cerveaux disponibles</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/05/du-temps-de-cerveaux-disponibles/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/05/du-temps-de-cerveaux-disponibles/#comments</comments>
		<pubDate>Fri, 14 May 2010 10:18:00 +0000</pubDate>
		<dc:creator>Franck</dc:creator>
				<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1657</guid>
		<description><![CDATA[L&#8217;équipe Silex Labs s&#8217;agrandit encore, la parole aux nouvelles recrues !




 
Hello, moi, c&#8217;est Solvejg, heureuse nouvelle recrue chez Silex. Je suis en fin de formation multimédia (DUT Services et Réseaux de Communication) et donc en stage de fin de formation ici.J&#8217;étais conquise avant même de pouvoir participer à l&#8217;aventure Silex (CMS , Flash open [...]]]></description>
			<content:encoded><![CDATA[<p>L&#8217;équipe Silex Labs s&#8217;agrandit encore, la parole aux nouvelles recrues !</p>
<p><!-- 		@page { margin: 2cm } 		TD P { margin-bottom: 0cm } 		P { margin-bottom: 0.21cm } --></p>
<table style="height: 238px;" border="0" cellspacing="0" cellpadding="4" width="595">
<tbody>
<tr valign="TOP">
<td width="17%"><img class="aligncenter size-full wp-image-1659" title="PICT1430" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/PICT1430.JPG" alt="PICT1430" width="281" height="211" /><span id="__caret"> </span></td>
<td width="83%"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } -->Hello, moi, c&#8217;est Solvejg, heureuse nouvelle recrue chez Silex. Je suis en fin de formation multimédia (DUT Services et Réseaux de Communication) et donc en stage de fin de formation ici.J&#8217;étais conquise avant même de pouvoir participer à l&#8217;aventure Silex (CMS , Flash open source, ciblant aussi bien des amateurs que des &laquo;&nbsp;oofs&nbsp;&raquo; de l&#8217;informatique&#8230;), mais maintenant que j&#8217;ai à peine mis les mains dedans, c&#8217;est déjà le pied !</p>
<p>Merci Silex (qui ne serait rien sans son équipe !)</p>
<p>En plus, quoi de plus palpitant que de pouvoir poser une pierre à l&#8217;édifice d&#8217;un tel projet ?!</p>
<p>Bref, je suis là pour quatre mois, et je compte bien à la fois en profiter, et en faire profiter tout le monde, ça va de soi <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </td>
</tr>
</tbody>
</table>
<table style="height: 238px;" border="0" cellspacing="0" cellpadding="4" width="595">
<tbody>
<tr valign="TOP">
<td width="17%"><img class="aligncenter size-full wp-image-1660" title="DSCN1792" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/DSCN1792.JPG" alt="DSCN1792" width="282" height="212" /><span id="__caret">_</span></td>
<td width="83%"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm; font-weight: normal;">Ça y est, enfin chez Silex Labs !</p>
<p style="margin-bottom: 0cm; font-weight: normal;">Je m&#8217;appelle Léo et je suis également étudiant en licence professionnelle Infographiste-Web designer. Je concrétise mes études par un stage de trois mois chez Silex.</p>
<p style="margin-bottom: 0cm; font-weight: normal;">Ça fait maintenant trois semaines que je suis ici, mais trois semaines captivantes dans une ambiance très sympa au sein de l&#8217;équipe.</p>
<p style="margin-bottom: 0cm; font-weight: normal;">J&#8217;apprends Silex de jours en jours et cela m&#8217;intéresse tout autant.</p>
<p style="margin-bottom: 0cm; font-weight: normal;">Allez, je vais continuer mon deuxième thème <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</td>
</tr>
</tbody>
</table>
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/05/du-temps-de-cerveaux-disponibles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>French and open, haXe in Silex / Silex in haXe</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/05/french-and-open-haxe-in-silex-silex-in-haxe/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/05/french-and-open-haxe-in-silex-silex-in-haxe/#comments</comments>
		<pubDate>Sat, 01 May 2010 13:50:05 +0000</pubDate>
		<dc:creator>lexa</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[The Dark Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1605</guid>
		<description><![CDATA[ silex_ptr = Lib._global.getSilex();
 layout = silex_ptr.application.getLayout(timeline);
Hello  This is a technical article on the use of haXe to develop animation layouts for Silex publications. I will explain why I find it very interesting to use haXe in Silex development team and then explain how I reproduced the minimal layout in haXe (little explanation and [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 1114px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>silex_ptr = Lib._global.getSilex();</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 1114px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>layout = silex_ptr.application.getLayout(timeline);</div>
<p>Hello  This is a technical article on the use of <a href="http://haxe.org/" target="_blank">haXe</a> to develop animation layouts for Silex publications. I will explain why I find it very interesting to use haXe in Silex development team and then explain how I reproduced the minimal layout in haXe (little explanation and source download).</p>
<p><img class="size-full wp-image-1606 alignnone" title="haxe" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/haxe.jpg" alt="haxe" width="263" height="69" /> <a href="http://silex-ria.org/open.source.flash.cms/silex"><img class="alignleft size-full wp-image-1621" title="silex" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/Untitled.jpg" alt="silex" width="244" height="60" /></a></p>
<p>haXe is an open source &amp; multiplatform programming language. A code written with haXe can be compiled to JavaScript, Flash (AS2 &amp; AS3), PHP and NekoVM.</p>
<p>It is developped by <a href="http://ncannasse.fr/" target="_blank">Nicolas Cannasse</a> at <a href="http://www.motion-twin.com/" target="_blank">Motion-Twin</a>, a French game development companny. Nicolas is the one who initiated the open source Flash community with his <a href="http://mtasc.org/" target="_blank">open source Flash AS2 compiler</a> which turned out to be way better than the Adobe one :-0</p>
<h2>Why haXe ?</h2>
<p>Open and French first of all <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<h3>Multiple language, one code base</h3>
<p>It allows Silex to evolve smoothly toward a full AS3 implementation, keeping the backward compatibility in mind. And not only AS3 but also <a href="http://ncannasse.fr/blog/haxe_for_iphone" target="_blank">iphone</a> and javascript <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Performance</h3>
<p><a href="http://www.splashdust.net/2009/10/as3-vs-haxe-performance/"><img class="size-full wp-image-1633 alignnone" title="performance, haxe vs as3" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/Untitled3.jpg" alt="performance, haxe vs as3" width="657" height="282" /></a></p>
<p>It seems to be much efficient to use haXe than Flash to publish swf, according to <a href="http://www.splashdust.net/2009/10/as3-vs-haxe-performance/" target="_blank">Joacim</a>&#8230;</p>
<h3>Libraries and file formats</h3>
<p>haXe opens new perspectives for Silex, like the use of the numerous libraries for 3D redering, 2D physics, support of pdf (decryption only), zip, &#8230;</p>
<p>Click in the movie below &#8230;<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="780" height="420" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://ncannasse.fr/file/phxdemo.swf" /><embed type="application/x-shockwave-flash" width="780" height="420" src="http://ncannasse.fr/file/phxdemo.swf"></embed></object></p>
<h2>How to develop page transitions in Silex with haXe ?</h2>
<p><span id="more-1605"></span><br />
Here I will not make a tutorial because I am not good at this <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  Instead I will explain the overall philosophy and use of Silex API. You can look at these sources in order to see how I implemented this: <a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/haxe-layout-minimal_v1.0.zip">minimal layout of Silex, re-made with haXe</a>. For this need to install haXe and edit the files with FlashDevelop or eclipse+<a href="http://haxe.org/com/ide/eclipse" target="_blank">hxeclipse</a>.</p>
<p>Here are the classes you need to implement in a Silex animation layout..</p>
<address>Note that you do not need to have programming skills to develop a Silex animation layout if you use Flash IDE and the Silex authoring components</address>
<h3>The class interacting with Silex API</h3>
<p>The class accesses Silex API thanks to this haXe code:</p>
<pre>var timeline:MovieClip = Lib.current;</pre>
<pre>var silex_ptr:Dynamic = Lib._global.getSilex();</pre>
<pre>var layout:Dynamic = silex_ptr.application.getLayout(timeline);</pre>
<div>It will use the Silex API in order to register the layout and its layer, i.e. say to Silex: &laquo;&nbsp;hello, I am a layout and here are the layers which I contain&nbsp;&raquo;. For this, use</div>
<pre>layout.registerLayoutContainer(timeline);</pre>
<pre>layout.registerLayerContainer(layerContainer, LAYER_NAME);</pre>
<div id="attachment_1643" class="wp-caption alignnone" style="width: 211px"><img class="size-full wp-image-1643   " title="pages tool box" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/05/Untitled2.jpg" alt="Untitled2" width="201" height="230" /><p class="wp-caption-text">After these calls, the layout will then be initialized and recognised by Silex for load, save operations etc. The layer will be visible in the &quot;pages&quot; tool box.</p></div>
<p>The animations for the layer are to be registered too. These animations will be played when silex want it to. The following animations can be  registered for a given layer (descriptions come from <a href="http://silex-ria.org/api-v1/" target="_blank">Silex API technical documentation</a>, especially the <a href="http://silex-ria.org/api-v1/files/core/Constants-as.html#org.silex.core.Constants.ANIM_NAME_PRELOAD" target="_blank">constant for animation names</a>):</p>
<ul>
<li>preload &#8211; Preload animation. This animation is played before any content is loaded (either text or medias) and after the transition of the parent page.</li>
<li>show &#8211; Show content. This animation is played once the content is loaded (at least the text) and after the preload anim is over.</li>
<li>close &#8211; Hide content. This animation is played when the current page is closing before the parent “transition close” anim is started and after the current page “transition close” anim is over (only if a child page was open).</li>
<li>transition - Show child page. This animation is played when a page is opened in the current layout and only after the show anim is over.</li>
<li>transitionClose - Hide child page. This animation is played when the current layout has a child page opened in and this child page is closed.</li>
</ul>
<p>The animations registered like this</p>
<pre>layout.registerAnim(showAnim,silex_ptr.config.ANIM_NAME_SHOW, false);</pre>
<p>Can be MovieClips or any object with the method &laquo;&nbsp;play()&nbsp;&raquo;.</p>
<p><strong>The animation(s)</strong></p>
<p>One or more classes in which you can implement the animation(s). For example a fade can let the content of the page appear. This class has to have at least the method &laquo;&nbsp;play()&nbsp;&raquo; which is called by Silex.</p>
<p>The animations can change the layers appearance &#8211; the layers you registered and which contain the dynamic content, i.e. the user  media.
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/05/french-and-open-haxe-in-silex-silex-in-haxe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Silex Labs a besoin de VOUS !</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/04/silex-labs-a-besoin-de-vous/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/04/silex-labs-a-besoin-de-vous/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 10:39:10 +0000</pubDate>
		<dc:creator>Franck</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[Organisation]]></category>
		<category><![CDATA[Silex Workshops]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1587</guid>
		<description><![CDATA[
Silex Labs ( http://www.silexlabs.org/the-blog/ )   est une association ayant pour objectif de promouvoir et de contribuer à l&#8217;open source Flash. Notre équipe est constituée d&#8217;indépendants, professionnels des métiers du numérique, pour qui le fait de participer activement à la communauté open source Flash est une carte de visite précieuse.
Le CMS Flash Silex ( http://fr.wikipedia.org/wiki/SILEX-RIA ) attire [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1588 aligncenter" title="silex_logo_opensource" src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/04/silex_logo_opensource.jpg" alt="Silex logo opensource" width="482" height="300" /></p>
<p><strong>Silex Labs</strong> ( <a href="../">http://www.silexlabs.org/the-blog/</a> )   est une association ayant pour objectif de <strong>promouvoir et de contribuer à l&#8217;open source Flash</strong>. Notre équipe est constituée d&#8217;indépendants, professionnels des métiers du numérique, pour qui le fait de participer activement à la communauté open source Flash est une <strong>carte de visite précieuse</strong>.</p>
<p>Le <strong>CMS Flash Silex</strong> ( <a href="http://fr.wikipedia.org/wiki/SILEX-RIA">http://fr.wikipedia.org/wiki/SILEX-RIA</a> ) attire   de plus en plus d&#8217;acteurs du monde du multimédia. Présent dans plus de <strong>soixante pays</strong> et fort de plusieurs <strong>milliers d&#8217;installations</strong> à travers le monde, l&#8217;avenir du projet est aujourd&#8217;hui assuré. Sa licence open source est un des facteurs permettant de le faire connaître auprès des clients, et reste un <strong>levier décisionnel</strong> indéniable quant au choix de Silex par rapport à ses concurrents.</p>
<p>La montée en puissance de Silex, open source Flash CMS nous amène à vouloir <strong>agrandir notre équipe</strong> pour pouvoir satisfaire les demandes de nos clients de plus en plus nombreux et prestigieux.</p>
<p><small><strong><big><big><big>Devenez Formateur Silex&#8230;</big></big></big></strong></small></p>
<p>Notre objectif à court terme est de <strong>former des professionnels</strong> motivés afin de leur permettre de produire des applications et d&#8217;être eux-même <strong>formateurs Silex.</strong> Nous vous proposons donc une <strong>série de formations</strong> Silex dans les locaux de l&#8217;association pendant les mois de <strong>mai et de juin 2010</strong>. Ces formations peuvent être financées par un <strong>CIF / DIF</strong>, car l&#8217;association est un centre de formation reconnu.</p>
<p>Si vous souhaitez obtenir de plus amples informations à ce sujet, merci de prendre contact avec Franck à l&#8217;adresse <a href="mailto:formation@silexlabs.com">formation@silexlabs.com</a></p>
<p><strong><big><big>… ou Webdesigner/Flasheur Silex</big></big></strong></p>
<p>Nous recherchons activement des <strong>professionnels</strong> ayant des compétences en <strong>programmation Flash AS2</strong> et une connaissance de <strong>Silex</strong>.</p>
<p>L&#8217;objectif est de développer des <strong>modules spécifiques</strong> (<em>plugins Silex</em>) afin d&#8217;adapter notre CMS aux besoins de clients ou de membres de la communauté. Nous sommes ouverts à <strong>plusieurs types de collaboration</strong> en fonction des projets, des besoins, de vos envies et de votre statut.</p>
<p>Si cela est susceptible de vous intéresser, merci de prendre contact avec Franck par mail à l&#8217;adresse <a href="mailto:franck@silex-ria.org">franck@silex-ria.org</a></p>
<p><strong><big><big>Je contribue, tu contribues, il contribue&#8230;</big></big></strong></p>
<p><strong>Participez à l&#8217;expansion de Silex</strong> en contribuant à votre mesure (traductions, animation FAQ, réalisations, thèmes, composants, plugins&#8230;) et <strong>bénéficiez en priorité des propositions de projets</strong> que nous recevons quotidiennement.</p>
<p>Nous sommes à votre disposition pour vous accompagner, alors n&#8217;hésitez pas à nous contacter par mail à l&#8217;adresse <a href="mailto:contact@silexlabs.com">contact@silexlabs.com</a></p>
<p><strong><big><big>Avis aux développeurs PHP</big></big></strong></p>
<p>Nous cherchons en particulier des <strong>développeurs PHP expérimentés</strong> qui comprennent bien les enjeux de nos projets et l&#8217;architecture logicielle.</p>
<p>Il est question de <strong>contribuer à amfPhp et à Silex</strong>, et d&#8217;être leader sur des développements à fort potentiel, en collaboration avec les autres développeurs de l&#8217;équipe, qui ont fait le succès de Silex et qui vont faire revenir amfPhp sur le devant de la scène open source Flash. Des connaissances <strong>Flash/Flex</strong> sont bien sûr appréciées mais pas obligatoires, car nous avons déjà de bonnes ressources de ce côté là.<strong> </strong></p>
<p><strong>Votre contribution à la communauté open source Flash ne passera pas inaperçue</strong>, mais elle sera bien entendue non-rémunéré. Idéalement nous aimerions 2 ou 3 personnes motivées.</p>
<p>Si vous êtes intéressé(e)s faites nous signe dans les commentaires !
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/04/silex-labs-a-besoin-de-vous/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/04/silex-labs-a-besoin-de-vous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le kif a 31 ans &#8211; 31 31 31 13 13 13</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/04/le-kif-a-31-ans/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/04/le-kif-a-31-ans/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 17:38:35 +0000</pubDate>
		<dc:creator>lexa</dc:creator>
				<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[Les matins à la cuillère]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[The Bright Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1578</guid>
		<description><![CDATA[Quand Francky kif, le Kif est là et il a 31 ans :

Toute la communauté se joint à la team de Montreuil en ce jour ensoleillé, pour souhaiter à Franck un
BON ANNIVERSAIRE !!!
Il a passé la journée à scanner, rappeler, encadrer, déformer et faire des blagues (c&#8217;est bien des blagues?).. Car Franck vient assidument à [...]]]></description>
			<content:encoded><![CDATA[<p>Quand Francky kif, le Kif est là et il a 31 ans :</p>
<p><img class="aligncenter" title="le Kif" src="http://farm5.static.flickr.com/4065/4525702233_dd3bc72949.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: center;">Toute la communauté se joint à la team de Montreuil en ce jour ensoleillé, pour souhaiter à Franck un</p>
<p style="text-align: center;"><span style="color: #ff0000;"><strong>BON ANNIVERSAIRE</strong></span> !!!</p>
<p>Il a passé la journée à scanner, rappeler, encadrer, déformer et faire des blagues (c&#8217;est bien des blagues?).. Car Franck vient assidument à Montreuil depuis que l&#8217;assos est créée et qu&#8217;elle a des locaux. Il a commencé par recruter les stagiaires de compétition qui nous entourent en ce moment, il les a formé à Silex avec l&#8217;aide de Pol et les encadre au quotidien.</p>
<p>En tant qu&#8217;ancien formateur senior (salut papi!), Franck a aussi mis au carré les programmes de formation, il a organisé le local et réunis le matériel nécessaire pour que la 1ere session de formations ait lieu, il y a un mois. Depuis il n&#8217;arrête pas, il s&#8217;occupe des supports de cours et de tout ce qui fait que la formation Silex est dynamique et professionnelle. La 2e session approche, allez Francky tu tiens le bon bout !</p>
<p>Merci en tous cas, pour tes bonnes blagues, pour la place que tu prends si bien, pour ton naturel naturellement nature&#8230; et pour TA PATATE PERMANANTE ! <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/04/le-kif-a-31-ans/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ca bouge chez Silex Labs</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/03/ca-bouge-chez-silex-labs/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/03/ca-bouge-chez-silex-labs/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 09:53:38 +0000</pubDate>
		<dc:creator>Franck</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1557</guid>
		<description><![CDATA[Silex 1.5.3 n&#8217;est plus, vive Silex 1.5.4 Comet !
Voici la  liste des correctifs et améliorations majeures qu&#8217;intègre  cette nouvelle version:
- Le coeur de Silex a été optimisé, 30% plus petit et 30% plus efficace,  grâce à une intégration complète Silex/amfphp
- Nouvel éditeur de texte, le premier d&#8217;une série de boîtes à  [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff3300"><span style="font-size: medium"><span style="font-family: Arial"><span style="font-weight: bold">Silex 1.5.3 n&#8217;est plus, vive Silex 1.5.4 Comet !</span></span></span></span></p>
<p style="margin-bottom: 0cm">Voici la  liste des <strong>correctifs</strong> et <strong>améliorations </strong>majeures qu&#8217;intègre  cette nouvelle version:</p>
<p style="margin-bottom: 0cm">- Le <strong>coeur </strong>de Silex a été optimisé, <strong>30% plus petit et 30% plus efficace</strong>,  grâce à une intégration complète Silex/<a href="http://amfphp.org/">amfphp</a><br />
- <strong>Nouvel éditeur de texte</strong>, le premier d&#8217;une série de boîtes à  outils avec support du multi écran (travail sur plusieurs écrans)<br />
- <strong>Système de plug-ins</strong>: il est maintenant possible de faire des  plugins qui peuvent modifier le comportement du Silex, en PHP,  ActionScript et JavaScript<br />
- <strong>Correction de bugs</strong>: compatibilité avec Google Chrome, des bugs  dans le manager, erreurs PHP en mode strict, &#8230;<br />
- <strong>Optimisation</strong> de la page <strong>HTML</strong> pour les moteurs de  recherche<br />
La bonne nouvelle est que le projet Silex est repassé dans le TOP100 sur  Sourceforge !<br />
Téléchargez la depuis sourceforge =&gt; <a href="http://sourceforge.net/projects/silex/">http://sourceforge.net/projects/silex/</a></p>
<p style="margin-bottom: 0cm">
<hr /><span style="color: #ff3300"><span style="font-size: medium"><span style="font-family: Arial"><span style="font-weight: bold">Un petit bonus  en plus pour dynamiser vos sites XLSSynchro !</span></span></span></span><span style="color: #ff3300"><span style="font-size: medium"><span style="font-family: Arial"><span style="font-weight: bold"><br />
</span></span></span></span></p>
<p style="margin-bottom: 0cm">Ce petit <strong>composant  pour OpenOffice Calc</strong> (Tableur) vous permet à vous et/ou à vos  clients d&#8217;envoyer un tableau de données (fichier excel) sur le serveur.  Il est donc très <strong>facile de mettre à jour ses données</strong> sans  connaissance supplémentaire que la maitrise d&#8217;un simple tableur.<br />
Cet outil est le pendant du <strong>composant ExcelConnect</strong> qui permet à  Silex de charger des données depuis un fichier excel pour dynamiser tout  ou partie de vos applications multimédias.<br />
<strong>Télécharger</strong> cet outil à l&#8217;adresse suivante: <a href="http://wp-manager.silex-ria.org/?p=495">http://wp-manager.silex-ria.org/?p=495</a></p>
<p style="margin-bottom: 0cm">
<hr /><span style="color: #ff3300"><span style="font-size: medium"><span style="font-family: Arial"><span style="font-weight: bold">Un nouveau  thème, le début d&#8217;une grande série ! </span></span></span></span></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm"><strong>Pol </strong>vient  de donner naissance à un nouveau thème pour Silex: <em>Association 2010</em>.</p>
<p style="margin-bottom: 0cm">Ce thème  ainsi que les précédents sont disponibles gratuitement <strong>depuis le  manager</strong> ou <strong>sur la plateforme d&#8217;échange</strong>.</p>
<p style="margin-bottom: 0cm"><img src="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/03/association-2010-capture1.jpg" alt="association-2010-capture" width="300" height="188" /></p>
<p style="margin-bottom: 0cm"><strong>Télécharger</strong> ce thème à l’adresse suivante: <a href="http://wp-manager.silex-ria.org/?p=486">http://wp-manager.silex-ria.org/?p=486</a></p>
<p style="margin-bottom: 0cm">Avec  l&#8217;aide de nos stagiaires motivés, de <strong>nouveaux thèmes</strong> devraient  voir le jour dans les semaines/mois <strong>à venir</strong>.</p>
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/03/ca-bouge-chez-silex-labs/"><img src="http://www.silexlabs.org/the-blog/wp-content/plugins/zdmultilang/flags/en_US.png" alt="English" title="English" border="0"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/03/ca-bouge-chez-silex-labs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
