[gxml/gsoc2013: 48/69] Attr.vala: update documentation, specifically references to spec
- From: Richard Hans Schwarting <rschwart src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml/gsoc2013: 48/69] Attr.vala: update documentation, specifically references to spec
- Date: Sat, 27 Jul 2013 04:10:14 +0000 (UTC)
commit f98463a2cc8acb5de2cb2d8d9bb177d51609ca67
Author: Richard Schwarting <aquarichy gmail com>
Date: Sat Jul 27 00:01:54 2013 -0400
Attr.vala: update documentation, specifically references to spec
gxml/Attr.vala | 17 ++++++++++++++---
1 files changed, 14 insertions(+), 3 deletions(-)
---
diff --git a/gxml/Attr.vala b/gxml/Attr.vala
index 5a6bf51..6429c59 100644
--- a/gxml/Attr.vala
+++ b/gxml/Attr.vala
@@ -44,8 +44,10 @@ namespace GXml {
*
* These represent name=value attributes associated with XML
* { link GXml.Element}s. Values are often represented as strings but can
- * also be more complex subtrees for some nodes. For more, see:
- * [[http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-637646024]]
+ * also be more complex subtrees for some nodes.
+ *
+ * Version: DOM Level 1 Core
+ * URL: [[http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-637646024]]
*/
public class Attr : DomNode {
/**
@@ -165,6 +167,9 @@ namespace GXml {
/**
* The name of the attribute's name=value pair.
+ *
+ * Version: DOM Level 1 Core
+ * URL: [[http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1112119403]]
*/
public string name {
get {
@@ -180,8 +185,11 @@ namespace GXml {
* underlying document. If the attribute is changed,
* it is set to false.
*
- * #todo: this requires support from the DTD, and
+ * @todo: this requires support from the DTD, and
* probably libxml2's xmlAttribute
+ *
+ * Version: DOM Level 1 Core
+ * URL: [[http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-862529273]]
*/
public bool specified {
// STUB
@@ -194,6 +202,9 @@ namespace GXml {
* It is a stringified version of the value, which can
* also be accessed as a tree node structure of
* child_nodes.
+ *
+ * Version: DOM Level 1 Core
+ * URL: [[http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-221662474]]
*/
public string value {
get {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]