aboutsummaryrefslogtreecommitdiff
path: root/vala-xmpp/src/core/stanza_attribute.vala
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-03-10 17:01:45 +0100
committerfiaxh <git@mx.ax.lt>2017-03-10 17:11:25 +0100
commit2fe8489d368a371aefbfbe66e74621a8df14cdc2 (patch)
tree4dec90236b28101383753ffe4a1c7a34b09b0208 /vala-xmpp/src/core/stanza_attribute.vala
parent7a1aa8c806a63cfd031c082524501e26d4a181ee (diff)
downloaddino-2fe8489d368a371aefbfbe66e74621a8df14cdc2.tar.gz
dino-2fe8489d368a371aefbfbe66e74621a8df14cdc2.zip
Rename vala-xmpp library to xmpp-vala
Diffstat (limited to 'vala-xmpp/src/core/stanza_attribute.vala')
-rw-r--r--vala-xmpp/src/core/stanza_attribute.vala29
1 files changed, 0 insertions, 29 deletions
diff --git a/vala-xmpp/src/core/stanza_attribute.vala b/vala-xmpp/src/core/stanza_attribute.vala
deleted file mode 100644
index 3169e90e..00000000
--- a/vala-xmpp/src/core/stanza_attribute.vala
+++ /dev/null
@@ -1,29 +0,0 @@
-namespace Xmpp.Core {
-public class StanzaAttribute : StanzaEntry {
-
- public StanzaAttribute() {}
-
- public StanzaAttribute.build(string ns_uri, string name, string val) {
- this.ns_uri = ns_uri;
- this.name = name;
- this.val = val;
- }
-
- public string to_string() {
- if (ns_uri == null) {
- return @"$name='$val'";
- } else {
- return @"{$ns_uri}:$name='$val'";
- }
- }
-
- public string to_xml(NamespaceState? state_) throws XmlError {
- NamespaceState state = state_ ?? new NamespaceState();
- if (ns_uri == state.current_ns_uri || (ns_uri == XMLNS_URI && name == "xmlns")) {
- return @"$name='$val'";
- } else {
- return "%s:%s='%s'".printf (state.find_name (ns_uri), name, val);
- }
- }
-}
-}