<?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"
	>
<channel>
	<title>Comments on: Size of phpDocumentor</title>
	<atom:link href="http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/</link>
	<description>The weblog of Joshua Eichorn, AJAX, PHP and Open Source</description>
	<pubDate>Sun, 12 Oct 2008 01:16:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Observations from a Tech Architect: Enterprise Implementation Issues &#38; Solutions</title>
		<link>http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-3010</link>
		<dc:creator>Observations from a Tech Architect: Enterprise Implementation Issues &#38; Solutions</dc:creator>
		<pubDate>Wed, 20 Apr 2005 18:20:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-3010</guid>
		<description>&lt;strong&gt;Basic COCOMO Assumptions and Definitions&lt;/strong&gt;

The COCOMO estimating model is based on the assumptions and definitions discussed below.</description>
		<content:encoded><![CDATA[<p><strong>Basic COCOMO Assumptions and Definitions</strong></p>
<p>The COCOMO estimating model is based on the assumptions and definitions discussed below.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason E. Sweat's weblog</title>
		<link>http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-138</link>
		<dc:creator>Jason E. Sweat's weblog</dc:creator>
		<pubDate>Sat, 09 Oct 2004 02:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-138</guid>
		<description>&lt;strong&gt;How many lines?&lt;/strong&gt;
I stumbled across a post that talked about line counts in PHP programs, which promted me to hack out a few shell script one liners, and some googling turned up the program SLOCCount, which produced some interesting line count based statistics for a few...</description>
		<content:encoded><![CDATA[<p><strong>How many lines?</strong><br />
I stumbled across a post that talked about line counts in PHP programs, which promted me to hack out a few shell script one liners, and some googling turned up the program SLOCCount, which produced some interesting line count based statistics for a few&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Sweat</title>
		<link>http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-137</link>
		<dc:creator>Jason Sweat</dc:creator>
		<pubDate>Fri, 08 Oct 2004 23:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2004/10/08/size-of-phpdocumentor/#comment-137</guid>
		<description>My inital though is that wc -l just counts lines, so you are including comments along with actual code.  I googled a bit for a quick tool to just parse out lines of code in php files and ran accross a tool called SLOCCount (http://www.dwheeler.com/sloccount/).  There was a portage build script for it, so I ran it on my phpdocumentor-1.3.0rc3/ direcorty with these results:

SLOC    Directory       SLOC-by-Language (Sorted)
70488   phpDocumentor   php=70442,pascal=46
663     docbuilder      php=663
661     Documentation   php=661
457     scripts         php=446,sh=11
296     top_dir         php=248,sh=48
198     HTML_TreeMenu-1.1.2 php=198
102     tutorials       php=102
0       media           (none)
0       user            (none)


Totals grouped by language (dominant language first):
php:          72760 (99.86%)
sh:              59 (0.08%)
pascal:          46 (0.06%)




Total Physical Source Lines of Code (SLOC)                = 72,865
Development Effort Estimate, Person-Years (Person-Months) = 18.06 (216.70)
 (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))
Schedule Estimate, Years (Months)                         = 1.61 (19.30)
 (Basic COCOMO model, Months = 2.5 * (person-months**0.38))
Estimated Average Number of Developers (Effort/Schedule)  = 11.23
Total Estimated Cost to Develop                           = $ 2,439,420
 (average salary = $56,286/year, overhead = 2.40).
SLOCCount is Open Source Software/Free Software, licensed under the FSF GPL.
Please credit this data as "generated using David A. Wheeler's 'SLOCCount'."

Looks to me like this might be including comments also however :(</description>
		<content:encoded><![CDATA[<p>My inital though is that wc -l just counts lines, so you are including comments along with actual code.  I googled a bit for a quick tool to just parse out lines of code in php files and ran accross a tool called SLOCCount (http://www.dwheeler.com/sloccount/).  There was a portage build script for it, so I ran it on my phpdocumentor-1.3.0rc3/ direcorty with these results:</p>
<p>SLOC    Directory       SLOC-by-Language (Sorted)<br />
70488   phpDocumentor   php=70442,pascal=46<br />
663     docbuilder      php=663<br />
661     Documentation   php=661<br />
457     scripts         php=446,sh=11<br />
296     top_dir         php=248,sh=48<br />
198     HTML_TreeMenu-1.1.2 php=198<br />
102     tutorials       php=102<br />
0       media           (none)<br />
0       user            (none)</p>
<p>Totals grouped by language (dominant language first):<br />
php:          72760 (99.86%)<br />
sh:              59 (0.08%)<br />
pascal:          46 (0.06%)</p>
<p>Total Physical Source Lines of Code (SLOC)                = 72,865<br />
Development Effort Estimate, Person-Years (Person-Months) = 18.06 (216.70)<br />
 (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))<br />
Schedule Estimate, Years (Months)                         = 1.61 (19.30)<br />
 (Basic COCOMO model, Months = 2.5 * (person-months**0.38))<br />
Estimated Average Number of Developers (Effort/Schedule)  = 11.23<br />
Total Estimated Cost to Develop                           = $ 2,439,420<br />
 (average salary = $56,286/year, overhead = 2.40).<br />
SLOCCount is Open Source Software/Free Software, licensed under the FSF GPL.<br />
Please credit this data as &#8220;generated using David A. Wheeler&#8217;s &#8216;SLOCCount&#8217;.&#8221;</p>
<p>Looks to me like this might be including comments also however <img src='http://blog.joshuaeichorn.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
