<?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 Slepi - Wiras Adi &#187; Blog</title>
	<atom:link href="http://www.slepi.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.slepi.net</link>
	<description>A Web Designer and Application Developer</description>
	<lastBuildDate>Tue, 26 Jan 2010 11:28:16 +0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on System Development Life Cycle (SDLC) Methodologies by Aysha _Bahrain</title>
		<link>http://www.slepi.net/blog/system-development/system-development-life-cycle-sdlc-methodologies.html#comment-21</link>
		<dc:creator>Aysha _Bahrain</dc:creator>
		<pubDate>Tue, 26 Jan 2010 11:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://localhost:8080/php/SlepiEvolved/?p=37#comment-21</guid>
		<description>I just would like to say thanks a lot =)

you present the subject with great simplicity
we used to study them in deep which creates lots of confusion .. seeing the big picture from outside helped me getting a clear vision</description>
		<content:encoded><![CDATA[<p>I just would like to say thanks a lot =)</p>
<p>you present the subject with great simplicity<br />
we used to study them in deep which creates lots of confusion .. seeing the big picture from outside helped me getting a clear vision</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on System Development Life Cycle (SDLC) Methodologies by Yogendra Singh Shekhawat</title>
		<link>http://www.slepi.net/blog/system-development/system-development-life-cycle-sdlc-methodologies.html#comment-20</link>
		<dc:creator>Yogendra Singh Shekhawat</dc:creator>
		<pubDate>Thu, 10 Dec 2009 16:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://localhost:8080/php/SlepiEvolved/?p=37#comment-20</guid>
		<description>Wiras Sir,
Would you guide me what&#039;s the actual thing ?

What is the relation between SDLC (System Development Life Cycle) and SSADM (Structured System Analysis and Design). Is these two terms are different or separate of each other  or same or one of these two is a component of another.
Prototyping and RAD should be listed with SDLC or SSADM or with both of these ?

I am totally confused. Plz help me.</description>
		<content:encoded><![CDATA[<p>Wiras Sir,<br />
Would you guide me what&#8217;s the actual thing ?</p>
<p>What is the relation between SDLC (System Development Life Cycle) and SSADM (Structured System Analysis and Design). Is these two terms are different or separate of each other  or same or one of these two is a component of another.<br />
Prototyping and RAD should be listed with SDLC or SSADM or with both of these ?</p>
<p>I am totally confused. Plz help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on System Development Life Cycle (SDLC) Methodologies by Sheryl Ng</title>
		<link>http://www.slepi.net/blog/system-development/system-development-life-cycle-sdlc-methodologies.html#comment-19</link>
		<dc:creator>Sheryl Ng</dc:creator>
		<pubDate>Tue, 24 Nov 2009 09:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://localhost:8080/php/SlepiEvolved/?p=37#comment-19</guid>
		<description>Thanks for the information.  Very helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for the information.  Very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fundamental Strategies for System Analysis by kwame owusu</title>
		<link>http://www.slepi.net/blog/system-development/fundamental-strategies-for-system-analysis.html#comment-18</link>
		<dc:creator>kwame owusu</dc:creator>
		<pubDate>Sun, 15 Nov 2009 16:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://localhost:8080/php/SlepiEvolved/?p=55#comment-18</guid>
		<description>of what help has system analysis be to the system analyst</description>
		<content:encoded><![CDATA[<p>of what help has system analysis be to the system analyst</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Invalidate Smarty Cache Using Cache Dependency Files by Wiras Adi</title>
		<link>http://www.slepi.net/blog/programming/invalidate-smarty-cache-using-cache-dependency-files.html#comment-17</link>
		<dc:creator>Wiras Adi</dc:creator>
		<pubDate>Sun, 15 Nov 2009 13:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://localhost:8080/php/SlepiEvolved/?p=41#comment-17</guid>
		<description>Hello Andrew,

Yes, that&#039;s how it works, you need to update the modification time of the dependency files every time you make changes to the underlying data (in PHP you can use the built-in touch() function).

About your question &quot;how to make Smarty knows which cached files in the pool needs to be refreshed when particular underlying data changed?&quot;, the first thing crosses my mind is to implement a kind of naming conventions technique in how you make the dependency files. Say, you have a certain template that dependent to rows of data who have, say, &quot;Japan&quot; as the value of its country column. Then you might want to name the dependency files for that template something like &quot;dep_file_japan.dep&quot;, another_dep_file_japan.dep&quot;, etc. Using a simple Regex checking, you could easily touch() all the dependency files related to that specific data and template.

As an alternative you can also use a kind of configuration settings (using database or just configuration files) in order to &quot;map&quot; template files to its underlying data. But this could unnecessarily complicate things as your data grows.

I hope I&#039;ve made myself clear with that explanation there. If you have a better solution I&#039;d be glad if you like to share it here.</description>
		<content:encoded><![CDATA[<p>Hello Andrew,</p>
<p>Yes, that&#8217;s how it works, you need to update the modification time of the dependency files every time you make changes to the underlying data (in PHP you can use the built-in touch() function).</p>
<p>About your question &#8220;how to make Smarty knows which cached files in the pool needs to be refreshed when particular underlying data changed?&#8221;, the first thing crosses my mind is to implement a kind of naming conventions technique in how you make the dependency files. Say, you have a certain template that dependent to rows of data who have, say, &#8220;Japan&#8221; as the value of its country column. Then you might want to name the dependency files for that template something like &#8220;dep_file_japan.dep&#8221;, another_dep_file_japan.dep&#8221;, etc. Using a simple Regex checking, you could easily touch() all the dependency files related to that specific data and template.</p>
<p>As an alternative you can also use a kind of configuration settings (using database or just configuration files) in order to &#8220;map&#8221; template files to its underlying data. But this could unnecessarily complicate things as your data grows.</p>
<p>I hope I&#8217;ve made myself clear with that explanation there. If you have a better solution I&#8217;d be glad if you like to share it here.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
