<?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 &#187; Ariel</title>
	<atom:link href="http://www.silexlabs.org/the-blog//fr/author/ariel/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>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>ordinateurs pour stagiaires</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/03/ordinateurs-pour-stagiaires/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/03/ordinateurs-pour-stagiaires/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 09:49:59 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[Les matins à la cuillère]]></category>
		<category><![CDATA[Organisation]]></category>
		<category><![CDATA[The Bright Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1534</guid>
		<description><![CDATA[Vous avez peut-être du matériel informatique chez vous dont vous ne vous servez pas. Sans être forcément de dernière fraîcheur, il peut tout à fait servir pour faire du silex, par exemple. Nos stagiaires travaillent parfois sur des ordinateurs un peu limites, donc pensez à eux, faites nous en don!
Nous pouvons en retour vous former, [...]]]></description>
			<content:encoded><![CDATA[<p>Vous avez peut-être du matériel informatique chez vous dont vous ne vous servez pas. Sans être forcément de dernière fraîcheur, il peut tout à fait servir pour faire du silex, par exemple. Nos stagiaires travaillent parfois sur des ordinateurs un peu limites, donc pensez à eux, faites nous en don!</p>
<p>Nous pouvons en retour vous former, vous envoyer un pins au couleurs de silex, mettre un lien vers votre super site. Dites nous ce qui vous ferait plaisir
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/03/ordinateurs-pour-stagiaires/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>discussion plugins AMFPHP</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/03/discussion-plugins-amfphp/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/03/discussion-plugins-amfphp/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:49:39 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[The Bright Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1509</guid>
		<description><![CDATA[English version here
Nous prévoyons de lancer un système de plugins pour AMFPHP. C&#8217;est un sujet très geek et très dev, mais je me suis dit que ça pourrait en intéresser certains. Le post est ici sur mon blog, et la discussion est aussi lancée sur la mailing list amfp-cvs .



]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><a href="http://www.silexlabs.org/the-blog/en/2010/03/discussion-plugins-amfphp/" target="_self">English version here</a></p>
<p>Nous prévoyons de lancer un système de plugins pour AMFPHP. C&#8217;est un sujet très geek et très dev, mais je me suis dit que ça pourrait en intéresser certains. Le post est <a href="http://arielsommeria.com/blog/2010/03/08/plugins-for-amfphp/">ici</a> sur mon blog, et la discussion est aussi lancée sur la mailing list <a href="https://lists.sourceforge.net/lists/listinfo/amfphp-cvs">amfp-cvs</a> .
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/03/discussion-plugins-amfphp/"><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/discussion-plugins-amfphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AMFPHP is back</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/02/amfphp-is-back/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/02/amfphp-is-back/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 12:41:28 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[Dev-Prog]]></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=1452</guid>
		<description><![CDATA[AMFPHP is back! A new team has come together to get the project moving again.
What?
AMFPHP is the best way for Flash to communicate with your PHP code. It understands the AMF data sent and received by Flash, and translates it into something your PHP code can work with. AMF allows for binary serialization of Action [...]]]></description>
			<content:encoded><![CDATA[<p><strong>AMFPHP</strong> is back! A new team has come together to get the project moving again.</p>
<p><strong>What?</strong><br />
AMFPHP is the best way for Flash to communicate with your PHP code. It understands the AMF data sent and received by Flash, and translates it into something your PHP code can work with. AMF allows for binary serialization of <a href="http://en.wikipedia.org/wiki/Actionscript" target="_blank">Action Script</a> (AS2, AS3) native types and objects to be sent to server side services.</p>
<p><strong>Why?</strong><br />
It is a critical component in a number of projects, so we decided to revive it. Many CMS can integrate with AMFPHP. Check <a href="http://www.amfphp.org/frameworks.html">http://www.amfphp.org/frameworks.html</a></p>
<p><strong>Where?</strong><br />
www: <a href="http://amfphp.sourceforge.net/">http://amfphp.sourceforge.net/</a></p>
<p><span>Learn more: <a href="http://amfphp.sourceforge.net/about.html" target="_blank">http://amfphp.sourceforge.net/about.htm</a> </span></p>
<p><span>Please discuss in the comments.<br />
</span>
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/02/amfphp-is-back/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>new beta release for Silex. plugins and a new text editor</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/02/new-beta-release-for-silex-plugins-and-anew-text-editor/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/02/new-beta-release-for-silex-plugins-and-anew-text-editor/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 08:21:53 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[Dev-Prog]]></category>
		<category><![CDATA[En vrac]]></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=1446</guid>
		<description><![CDATA[Dear developers and testers,
Silex has evolved to a more structured framework made of javascript, ActionScript and php classes.
Ariel and Lex have implemented a system of hooks which make it possible to develop components, layonew reluts and tools which override the behaviour of Silex. Here are some interesting links to explain this &#171;&#160;hook&#160;&#187; technique we have [...]]]></description>
			<content:encoded><![CDATA[<p>Dear developers and testers,</p>
<p>Silex has evolved to a more structured framework made of javascript, ActionScript and php classes.</p>
<p>Ariel and Lex have implemented a system of hooks which make it possible to develop components, layonew reluts and tools which override the behaviour of Silex. Here are some interesting links to explain this &laquo;&nbsp;hook&nbsp;&raquo; technique we have set up in Silex :<br />
- <a href="http://en.wikipedia.org/wiki/Hooking" target="_blank">http://en.wikipedia.org/wiki/Hooking</a><br />
- <a href="http://www.raymondselda.com/understanding-action-hooks-in-wordpress/" target="_blank">http://www.raymondselda.com/understanding-action-hooks-in-wordpress/</a><br />
And in French :<br />
- <a href="http://fr.wikipedia.org/wiki/Hook_%28informatique%29" target="_blank">http://fr.wikipedia.org/wiki/Hook_(informatique)</a><br />
- <a href="http://www.lautre-monde.fr/les-hooks-wordpress/" target="_blank">http://www.lautre-monde.fr/les-hooks-wordpress/</a></p>
<p>The first applications we did with it are very important : a new rich text editor which is the first step to porting Silex to AS3 and using tools made with Flex. It is possible to use this tool in a separate window, changing the way you use the tool boxes, and making it possible to use two screens with Silex. All the tools are being ported to AS3 and we will try to include several powerful ideas.</p>
<p>An other application is the &laquo;&nbsp;measure tool&nbsp;&raquo; which let you measure the execution time of several functions in Silex. We will use it to determine where we can optimize the code. And we have already found several things we can change to make Silex much more efficient so that it requires less memory to use it.</p>
<p>So please help us with your comments on the 1.5.4 beta release :<br />
<a href="https://sourceforge.net/projects/silex/files/" target="_blank">https://sourceforge.net/projects/silex/files/</a></p>
<p>Looking forward to &laquo;&nbsp;seeing&nbsp;&raquo; you on the forums,<br />
The dev team.
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/02/new-beta-release-for-silex-plugins-and-anew-text-editor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Offres de stage</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/01/offres-de-stage/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/01/offres-de-stage/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 08:55:41 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[L'aventure c'est l'aventure !]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Organisation]]></category>
		<category><![CDATA[Silex Workshops]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1425</guid>
		<description><![CDATA[English version here
Bonjour,
Silex recrute des stagiaires!
Voici les offres:
Stage Webmaster
Stage Webdesigner Maquettiste
Stage Integrateur Flash



]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><a href="http://www.silexlabs.org/the-blog/en/2010/01/offres-de-stage/" target="_self">English version here</a></p>
<p>Bonjour,</p>
<p>Silex recrute des stagiaires!</p>
<p>Voici les offres:</p>
<p><a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/01/Stage-Webmaster.pdf">Stage Webmaster</a></p>
<p><a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/01/Stage-Webesigner-Maquettiste.pdf">Stage Webdesigner Maquettiste</a></p>
<p><a href="http://www.silexlabs.org/the-blog/wp-content/uploads/2010/01/Stage-Integrateur-Flash.pdf">Stage Integrateur Flash</a>
<ul class="lang_switch">
<li class="lang_switch"><a href="http://www.silexlabs.org/the-blog/en/2010/01/offres-de-stage/"><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/01/offres-de-stage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panique/Panic Silex/OOF</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/01/paniquepanic-silexoof/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/01/paniquepanic-silexoof/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 08:33:29 +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=1419</guid>
		<description><![CDATA[Vous êtes en panique avec Silex ou OOF? rien ne marche et vous ne voyez pas pourquoi?
Voici quelques outils qui vous permettront d&#8217;analyser la situation. C&#8217;est un peu technique, mais ça vous donnera des indices sur ce qui ne va pas. On vous conseille évidemment un petit tour dans le forum d&#8217;abord, ça fait moins [...]]]></description>
			<content:encoded><![CDATA[<p>Vous êtes en panique avec Silex ou OOF? rien ne marche et vous ne voyez pas pourquoi?<br />
Voici quelques outils qui vous permettront d&#8217;analyser la situation. C&#8217;est un peu technique, mais ça vous donnera des indices sur ce qui ne va pas. On vous conseille évidemment un petit tour dans le forum d&#8217;abord, ça fait moins mal <img src='http://www.silexlabs.org/the-blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
1- le débuggeur de services. Ca vous permet de tester si les choses vont bien côté serveur. Voir ici : <a href="http://wp-manager.silex-ria.org/?p=375">http://wp-manager.silex-ria.org/?p=375</a></p>
<p>2- les logs. dans le répertoire conf, il y a un fichier log.ini, qui contient la ligne</p>
<p>logLevel = DISABLED</p>
<p>Les logs sont donc désactivés. Si vous la remplacez par</p>
<p>logLevel = DEBUG</p>
<p>vous aurez des logs dans le répertoire logs/</p>
<p>Attention, c&#8217;est mauvais pour les performances et la sécurité, donc une fois que vous avez fini, remettez le comme avant!</p>
<p>Enfin, vous pouvez regarder les messages qu&#8217;échangent votre page Silex et votre serveur avec <a href="http://www.charlesproxy.com/">CharlesProxy</a>.</p>
<p>======================================================================</p>
<p>So you&#8217;re upset with Silex or OOF? It deosn&#8217;t work and you don&#8217;t see why?</p>
<p>Here are some tools that will help you analyse the siutation. It&#8217;s a bit technical, but it will give you some clues on what is going on. We obviously advise you to check out the forums first to see if someone hasn&#8217;t already got the solution to your problem there.</p>
<p>1- The service debugger. It allows you to test if things are working ok on your server : <a href="http://wp-manager.silex-ria.org/?p=375">http://wp-manager.silex-ria.org/?p=375</a></p>
<p>2- The logs. In the conf folder, you can find log.ini, and it contains the following line:</p>
<p>logLevel = DISABLED</p>
<p>logs are deactivated. But if you replace it with:</p>
<p>logLevel = DEBUG<br />
You will find logs in the logs/ folder</p>
<p>Be careful, this is bad for performance and security, so once you&#8217;re done, put it back to how it was before!</p>
<p>Finally, you can check the messages that go between your silex page and your server with <a href="http://www.charlesproxy.com/">CharlesProxy</a>.
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/01/paniquepanic-silexoof/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Un nouveau billet sur Silex chez topflashcms /New post on Silex at topflashcms</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/01/un-nouveau-billet-sur-silex-chez-topflashcms-new-post-on-silex-at-topflashcms/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/01/un-nouveau-billet-sur-silex-chez-topflashcms-new-post-on-silex-at-topflashcms/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 07:14:10 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[En vrac]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1416</guid>
		<description><![CDATA[http://www.topflashcms.com/flash-cms-news/the-silex-revolution-the-art-of-sculpting-anything-anywhere-and-by-anyone/
Merci / Thanks Andy!

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.topflashcms.com/flash-cms-news/the-silex-revolution-the-art-of-sculpting-anything-anywhere-and-by-anyone/">http://www.topflashcms.com/flash-cms-news/the-silex-revolution-the-art-of-sculpting-anything-anywhere-and-by-anyone/</a></p>
<p>Merci / Thanks Andy!
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/01/un-nouveau-billet-sur-silex-chez-topflashcms-new-post-on-silex-at-topflashcms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>un pc libre et communautaire</title>
		<link>http://www.silexlabs.org/the-blog/fr/2010/01/un-pc-libre-et-communautaire/</link>
		<comments>http://www.silexlabs.org/the-blog/fr/2010/01/un-pc-libre-et-communautaire/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 07:55:17 +0000</pubDate>
		<dc:creator>Ariel</dc:creator>
				<category><![CDATA[The Bright Side of Open Source]]></category>

		<guid isPermaLink="false">http://www.silexlabs.org/the-blog/fr/?p=1414</guid>
		<description><![CDATA[http://open-pc.com/ propose un pc communautaire, fait pour faire tourner linux, avec des logiciels libres et du hardware libre. Quand on a un problème on peut les appeler directement, et j&#8217;imagine que c&#8217;est le fondateur qui répond au téléphone. Bon, que ceux qui utilisent Linux lèvent le doigt&#8230;

]]></description>
			<content:encoded><![CDATA[<p><a href="http://open-pc.com/">http://open-pc.com/</a> propose un pc communautaire, fait pour faire tourner linux, avec des logiciels libres et du hardware libre. Quand on a un problème on peut les appeler directement, et j&#8217;imagine que c&#8217;est le fondateur qui répond au téléphone. Bon, que ceux qui utilisent Linux lèvent le doigt&#8230;
<ul class="lang_switch"></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.silexlabs.org/the-blog/fr/2010/01/un-pc-libre-et-communautaire/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
