On Mon, 2007-01-08 at 10:43 -0500, Angela Byron wrote:
Excellent! Thanks for the summary, Derek!!
<snip />
Now, just one (technical) question.
Does this:
// @todo These queries are very expensive, see http://drupal.org/
node/105639.
...actually work and get parsed by doxygen?? I thought doxygen only
worked on function headers. This would make @todo less useful, imo,
since:
// TODO: this can be an expensive query. Perhaps only execute it
every x minutes. Requires investigation into cache expiration.
if ($user->uid) {
db_query("UPDATE {users} SET access = %d WHERE uid = %d", time
(), $user->uid);
}
Tells me that the queries immediately following that line are
expensive, vs.
/**
* Reads a session variable.
*
* @todo the update query used here can be expensive....
*/
function sess_read($key) {
Anyone know?
for phpdoc // @todo wouldn't work... /** @todo would word */
Also, as Robert brought up, // TODO, etc. have support in IDEs (Zend,
etc.). Can someone check if @todo does as well?
-Angie