curious about why it takes forever to generate the chunked-html version of the php docs (in docbook, using openjade), i did a little profiling of openjade generating the phpdoc howto (a much smaller document than the 1600+ page php documentation).
10% of the time is calls to the assign method of the opensp string template class, 8% to operator= of the ptr template class, and 5% to the string template class's grow method. ugh.
nearly 8% of the execution time is going to reference counting.
i get the feeling my time would be better spent figuring out how to move the phpdoc processing to an xslt processor instead of poking around with openjade.
