[gxml] * add dbg_inspect method to print what a node contains * add namespace_definitions property
- From: Richard Hans Schwarting <rschwart src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml] * add dbg_inspect method to print what a node contains * add namespace_definitions property
- Date: Tue, 16 Aug 2011 01:16:36 +0000 (UTC)
commit 3dbdf299bd43a81552f6429aac8ef4e31d73df1f
Author: Richard Schwarting <aquarichy gmail com>
Date: Tue Aug 16 03:12:55 2011 +0200
* add dbg_inspect method to print what a node contains
* add namespace_definitions property
gxml/XNode.vala | 35 ++++++++++++++++++++++++++++++++++-
1 files changed, 34 insertions(+), 1 deletions(-)
---
diff --git a/gxml/XNode.vala b/gxml/XNode.vala
index 34f1ff0..7763d2f 100644
--- a/gxml/XNode.vala
+++ b/gxml/XNode.vala
@@ -17,6 +17,39 @@ namespace GXml.Dom {
this.node_type = NodeType.DOCUMENT;
}
+ public void dbg_inspect () {
+ message ("node: %s", this.node_name);
+ message (" ns (prefix: %s, uri: %s)", this.prefix, this.namespace_uri);
+ if (this.attributes != null) {
+ message (" attributes:");
+ foreach (XNode attr in this.attributes.get_values ()) {
+ message (" %s", attr.node_name);
+ }
+ }
+ message (" children:");
+ if (this.child_nodes != null) {
+ // TODO: consider having non-null hcild_nodes and attributes,
+ // and instead returning empty collections
+ // No, probably don't want that, as nodes which don't
+ // support them really do just want to return null ala spec
+ foreach (XNode child in this.child_nodes) {
+ message (" %s", child.node_name);
+ }
+ }
+ }
+
+ // TODO: determine best API for exposing these, as it's not defined in the IDL
+ /**
+ * The list of attributes that store namespace definitions
+ */
+ public virtual NodeList? namespace_definitions {
+ get {
+ return null;
+ }
+ internal set {
+ }
+ }
+
/**
* Stores the URI describing the node's namespace.
* This only applies to Elements and Attrs from DOM
@@ -31,7 +64,7 @@ namespace GXml.Dom {
}
}
/**
- * Stores the namespace prefix for the node. This
+ * Stores the namespace prefix for the node. This
* only applies to Elements and Attrs from DOM Level 2
* Core that were created with namespace support.
*/
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]