<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments for Bashar's Blog</title>
	<atom:link href="http://bashar.alfallouji.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bashar.alfallouji.com</link>
	<description>Talks around PHP, Computer Science and Stuffs</description>
	<pubDate>Sun, 05 Feb 2012 05:18:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on PHP Autoload Manager by Bashar</title>
		<link>http://bashar.alfallouji.com/php-autoload-manager/comment-page-1/#comment-9635</link>
		<dc:creator>Bashar</dc:creator>
		<pubDate>Mon, 12 Dec 2011 23:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=160#comment-9635</guid>
		<description>Thats right, the setSaveFile create a files containing an associative array of classname =&gt; filename.

This is usefull and recommended in a production environment, you don't want to parse all folders each time. 

On a development environment, you may want not to generate that cache file and therefore not use the setSaveFile, so whenever you add a new class or modify where files are located, your app will automatically rediscover those updates and still work.</description>
		<content:encoded><![CDATA[<p>Thats right, the setSaveFile create a files containing an associative array of classname =&gt; filename.</p>
<p>This is usefull and recommended in a production environment, you don&#8217;t want to parse all folders each time. </p>
<p>On a development environment, you may want not to generate that cache file and therefore not use the setSaveFile, so whenever you add a new class or modify where files are located, your app will automatically rediscover those updates and still work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Autoload Manager by Loggy</title>
		<link>http://bashar.alfallouji.com/php-autoload-manager/comment-page-1/#comment-9605</link>
		<dc:creator>Loggy</dc:creator>
		<pubDate>Fri, 09 Dec 2011 13:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=160#comment-9605</guid>
		<description>Jim's clarification in particular was pretty useful although I did have to dig down into the tree to get the classes and dependencies then add them directory by directory.  Essentially the SaveFile just generates an indexed array and registers it all.

I am processing a Wordpress tree from a different Wordpress program - so the classes may not be the same either because the core is a different version or different plugins etc are included.  Active and inactive plugins/themes need to be included because I am using the information to modify the database and I kept coming across serialised objects that weren't in a class.

It's a pity the basic __autoload function assumes the class filename is the same as the class - this certainly isn't case for most of Wordpress!</description>
		<content:encoded><![CDATA[<p>Jim&#8217;s clarification in particular was pretty useful although I did have to dig down into the tree to get the classes and dependencies then add them directory by directory.  Essentially the SaveFile just generates an indexed array and registers it all.</p>
<p>I am processing a Wordpress tree from a different Wordpress program - so the classes may not be the same either because the core is a different version or different plugins etc are included.  Active and inactive plugins/themes need to be included because I am using the information to modify the database and I kept coming across serialised objects that weren&#8217;t in a class.</p>
<p>It&#8217;s a pity the basic __autoload function assumes the class filename is the same as the class - this certainly isn&#8217;t case for most of Wordpress!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Autoload Manager by Jim Osborne</title>
		<link>http://bashar.alfallouji.com/php-autoload-manager/comment-page-1/#comment-9473</link>
		<dc:creator>Jim Osborne</dc:creator>
		<pubDate>Thu, 24 Nov 2011 16:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=160#comment-9473</guid>
		<description>Got it!

It did work 'out of the box' when I extended the test code to instantiate a class within the defined folder, i.e.

$autoloadManager = new AutoloadManager();
$autoloadManager-&gt;setSaveFile('autoload.php');
$autoloadManager-&gt;addFolder('BridgeDesignPattern');
$autoloadManager-&gt;excludeFolder('BridgeDesignPattern/report_plugins');
$autoloadManager-&gt;register();

$diag = new ManageDiagnostics(); // class within folder 'BridgeDesignPattern'
$diag-&gt;setLocalArgs(10, array(10,20,30), __FILE__);
print_r($diag-&gt;getLocalArgs());

The last three lines of test code triggered the creation of the 'SaveFile'.</description>
		<content:encoded><![CDATA[<p>Got it!</p>
<p>It did work &#8216;out of the box&#8217; when I extended the test code to instantiate a class within the defined folder, i.e.</p>
<p>$autoloadManager = new AutoloadManager();<br />
$autoloadManager-&gt;setSaveFile(&#8217;autoload.php&#8217;);<br />
$autoloadManager-&gt;addFolder(&#8217;BridgeDesignPattern&#8217;);<br />
$autoloadManager-&gt;excludeFolder(&#8217;BridgeDesignPattern/report_plugins&#8217;);<br />
$autoloadManager-&gt;register();</p>
<p>$diag = new ManageDiagnostics(); // class within folder &#8216;BridgeDesignPattern&#8217;<br />
$diag-&gt;setLocalArgs(10, array(10,20,30), __FILE__);<br />
print_r($diag-&gt;getLocalArgs());</p>
<p>The last three lines of test code triggered the creation of the &#8216;SaveFile&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updates for PHP Autoload Manager by Jim Osborne</title>
		<link>http://bashar.alfallouji.com/2010/03/23/updates-for-php-autoload-manager/comment-page-1/#comment-9471</link>
		<dc:creator>Jim Osborne</dc:creator>
		<pubDate>Thu, 24 Nov 2011 15:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?p=596#comment-9471</guid>
		<description>Downloaded PHP-Autoload-Manager from github yesterday and tested in line with README file. It did not work out of the box.

Eventually got it to generate array in 'SaveFile' by adding '$this-&gt;generate();' at end of function 'register' 

Used the following test code:

$autoloadManager = new AutoloadManager();
$autoloadManager-&gt;setSaveFile('autoload.php');
$autoloadManager-&gt;addFolder('BridgeDesignPattern');
$autoloadManager-&gt;register();

Is that all that is required?</description>
		<content:encoded><![CDATA[<p>Downloaded PHP-Autoload-Manager from github yesterday and tested in line with README file. It did not work out of the box.</p>
<p>Eventually got it to generate array in &#8216;SaveFile&#8217; by adding &#8216;$this-&gt;generate();&#8217; at end of function &#8216;register&#8217; </p>
<p>Used the following test code:</p>
<p>$autoloadManager = new AutoloadManager();<br />
$autoloadManager-&gt;setSaveFile(&#8217;autoload.php&#8217;);<br />
$autoloadManager-&gt;addFolder(&#8217;BridgeDesignPattern&#8217;);<br />
$autoloadManager-&gt;register();</p>
<p>Is that all that is required?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new email currency alert system: www.fxalert.net by Hamidou</title>
		<link>http://bashar.alfallouji.com/2011/09/15/a-new-email-currency-alert-system-wwwfxalertnet/comment-page-1/#comment-9077</link>
		<dc:creator>Hamidou</dc:creator>
		<pubDate>Tue, 27 Sep 2011 02:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?p=648#comment-9077</guid>
		<description>Felicitations!</description>
		<content:encoded><![CDATA[<p>Felicitations!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Annoying translate bar in Chrome by Luís Yasuoka</title>
		<link>http://bashar.alfallouji.com/2010/04/03/annoying-translate-bar-in-chrome/comment-page-1/#comment-5794</link>
		<dc:creator>Luís Yasuoka</dc:creator>
		<pubDate>Tue, 05 Oct 2010 03:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?p=600#comment-5794</guid>
		<description>that's really annoying! i think people at google just uses english pages, so they can't see how annoying this is...
i'm from brazil and most of the pages that i go to is in english, so it asks to translate to portuguese everytime!! (im not using my computer so i wont change the settings(my computer has that option disabled already))</description>
		<content:encoded><![CDATA[<p>that&#8217;s really annoying! i think people at google just uses english pages, so they can&#8217;t see how annoying this is&#8230;<br />
i&#8217;m from brazil and most of the pages that i go to is in english, so it asks to translate to portuguese everytime!! (im not using my computer so i wont change the settings(my computer has that option disabled already))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Autoload Manager by r0b</title>
		<link>http://bashar.alfallouji.com/php-autoload-manager/comment-page-1/#comment-5439</link>
		<dc:creator>r0b</dc:creator>
		<pubDate>Thu, 22 Jul 2010 07:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=160#comment-5439</guid>
		<description>Thanks for sharing that great script!
Saved me hundreds lines of includes in my project!</description>
		<content:encoded><![CDATA[<p>Thanks for sharing that great script!<br />
Saved me hundreds lines of includes in my project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Slides available for Talk around Text-Mining by anis</title>
		<link>http://bashar.alfallouji.com/2010/05/14/slides-available-for-talk-around-text-mining/comment-page-1/#comment-5216</link>
		<dc:creator>anis</dc:creator>
		<pubDate>Wed, 26 May 2010 15:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?p=625#comment-5216</guid>
		<description>Excellent Slide bashar! j'ai rate la presentation</description>
		<content:encoded><![CDATA[<p>Excellent Slide bashar! j&#8217;ai rate la presentation</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Autoload Manager by Apprendre a utiliser Git&#160;&#124;&#160;Anis Berejeb</title>
		<link>http://bashar.alfallouji.com/php-autoload-manager/comment-page-1/#comment-3056</link>
		<dc:creator>Apprendre a utiliser Git&#160;&#124;&#160;Anis Berejeb</dc:creator>
		<pubDate>Sun, 01 Nov 2009 00:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=160#comment-3056</guid>
		<description>[...] chez github. essayons de &#171;&#160;checkouter&#187;&#160; un projet. Je choisis le projet PHP AUTOLOAD MANAGER de Bashar : ?View Code SHELL1 2 3 4 5 6 7 8 9 ~$ git clone [...]</description>
		<content:encoded><![CDATA[<p>[...] chez github. essayons de &laquo;&nbsp;checkouter&raquo;&nbsp; un projet. Je choisis le projet PHP AUTOLOAD MANAGER de Bashar : ?View Code SHELL1 2 3 4 5 6 7 8 9 ~$ git clone [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About me by Sheila</title>
		<link>http://bashar.alfallouji.com/about-me/comment-page-1/#comment-2057</link>
		<dc:creator>Sheila</dc:creator>
		<pubDate>Thu, 23 Jul 2009 20:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://bashar.alfallouji.com/?page_id=327#comment-2057</guid>
		<description>BAF rocks!</description>
		<content:encoded><![CDATA[<p>BAF rocks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

