r92217 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r92216‎ | r92217 | r92218 >
Date:23:26, 14 July 2011
Author:tparscal
Status:ok
Tags:
Comment:
Added documentation to classes about extends
Modified paths:
  • /trunk/parsers/wikidom/lib/es/es.Block.js (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.Content.js (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.Document.js (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.ParagraphBlock.js (modified) (history)
  • /trunk/parsers/wikidom/lib/es/es.TextFlow.js (modified) (history)

Diff [purge]

Index: trunk/parsers/wikidom/lib/es/es.Document.js
@@ -1,5 +1,6 @@
22 /**
33 *
 4+ * @extends {EventEmitter}
45 * @param blocks {Array} List of blocks
56 * @returns {Document}
67 */
Index: trunk/parsers/wikidom/lib/es/es.ParagraphBlock.js
@@ -1,5 +1,6 @@
22 /**
33 *
 4+ * @extends {Block}
45 * @param lines {Array} List of line objects
56 * @returns {ParagraphBlock}
67 */
Index: trunk/parsers/wikidom/lib/es/es.Block.js
@@ -1,5 +1,5 @@
22 /**
3 - *
 3+ * @extends {EventEmitter}
44 * @returns {Block}
55 */
66 function Block() {
Index: trunk/parsers/wikidom/lib/es/es.Content.js
@@ -6,6 +6,7 @@
77 * paired with offset annotation), especially when performing substring operations. Content can be
88 * derived from or converted to one or more WikiDom line objects.
99 *
 10+ * @extends {EventEmitter}
1011 * @param content {Array} List of plain or annotated characters
1112 * @returns {Content}
1213 */
Index: trunk/parsers/wikidom/lib/es/es.TextFlow.js
@@ -1,6 +1,7 @@
22 /**
33 * Renders and provides access to flowed text.
44 *
 5+ * @extends {EventEmitter}
56 * @param $container {jQuery Selection} Element to render into
67 * @returns {TextFlow}
78 */

Status & tagging log