r40025 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r40024‎ | r40025 | r40026 >
Date:15:23, 26 August 2008
Author:demon
Status:old
Tags:
Comment:
Move @ingroup around so each of the classes are picked up by Doxygen.
Modified paths:
  • /trunk/phase3/includes/diff/Nodes.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/diff/Nodes.php
@@ -17,11 +17,11 @@
1818 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1919 * or see http://www.gnu.org/
2020 *
21 - * @ingroup DifferenceEngine
2221 */
2322
2423 /**
2524 * Any element in the DOM tree of an HTML document.
 25+ * @ingroup DifferenceEngine
2626 */
2727 class Node {
2828
@@ -100,6 +100,7 @@
101101
102102 /**
103103 * Node that can contain other nodes. Represents an HTML tag.
 104+ * @ingroup DifferenceEngine
104105 */
105106 class TagNode extends Node {
106107
@@ -299,6 +300,7 @@
300301
301302 /**
302303 * Represents a piece of text in the HTML file.
 304+ * @ingroup DifferenceEngine
303305 */
304306 class TextNode extends Node {
305307
@@ -348,6 +350,10 @@
349351 }
350352 }
351353
 354+/**
 355+ * @todo Document
 356+ * @ingroup DifferenceEngine
 357+ */
352358 class WhiteSpaceNode extends TextNode {
353359
354360 function __construct($parent, $s, Node $like = null) {
@@ -362,6 +368,7 @@
363369
364370 /**
365371 * Represents the root of a HTML document.
 372+ * @ingroup DifferenceEngine
366373 */
367374 class BodyNode extends TagNode {
368375
@@ -394,6 +401,7 @@
395402 /**
396403 * Represents an image in HTML. Even though images do not contain any text they
397404 * are independent visible objects on the page. They are logically a TextNode.
 405+ * @ingroup DifferenceEngine
398406 */
399407 class ImageNode extends TextNode {
400408
@@ -420,6 +428,7 @@
421429
422430 /**
423431 * No-op node
 432+ * @ingroup DifferenceEngine
424433 */
425434 class DummyNode extends Node {
426435

Status & tagging log