On 10/25/2003 6:27 AM, Gabor Szabo wrote: > > The HTML files generated by Devel::Cover are huge.
I'm working on it. :) > I ran coverage on HTML::Template and while the source code > is ~100K the HTML report is 2.5Mb I did a null coverage run (I did a "use HTML::Template" but didn't actually do anything) and the HTML file coverage report weighed in at a hefty 2192 kB. > So I think some work should be done to reduce this size. Agreed -- that's ridiculously large. > It is still huge ~870K but I could not find any easy way to remove > further large chunks without changing the resulting page. > > What do you think about removing > 1) the lines from the source code which are empty > 2) removing the lines that display parts of the documentation ? I've added functionality to strip POD entirely and to stub blank lines. I've also gutted the implementation trying to save characters (literally, individual characters) wherever possible. I've got it down to 342 kB. There isn't much more room to squeeze stuff out. Once I get the code cleaned up I'll submit it to Paul. -mjc