From 2907e290d2917db7028a582c624678904a504793 Mon Sep 17 00:00:00 2001 From: Abscissa Date: Thu, 21 Jul 2011 18:31:35 -0400 Subject: [PATCH] Fixed: Many members of dom missing from documentation. --- dom.d | 265 ++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 222 insertions(+), 43 deletions(-) diff --git a/dom.d b/dom.d index 74536b6..47f939c 100644 --- a/dom.d +++ b/dom.d @@ -32,6 +32,7 @@ import std.stdio; setMainPart on it. boom. */ +///. T[] insertAfter(T)(T[] arr, int position, T[] what) { assert(position < arr.length); T[] ret; @@ -49,6 +50,7 @@ T[] insertAfter(T)(T[] arr, int position, T[] what) { return ret; } +///. bool isInArray(T)(T item, T[] arr) { foreach(i; arr) if(item == i) @@ -56,11 +58,15 @@ bool isInArray(T)(T item, T[] arr) { return false; } +///. class Stack(T) { + + ///. void push(T t) { arr ~= t; } + ///. T pop() { assert(arr.length); T tmp = arr[$-1]; @@ -68,22 +74,29 @@ class Stack(T) { return tmp; } + ///. T peek() { return arr[$-1]; } + ///. bool empty() { return arr.length ? false : true; } + ///. T[] arr; } +///. class ElementStream { + + ///. Element front() { return current.element; } + ///. this(Element start) { current.element = start; current.childPosition = -1; @@ -96,6 +109,8 @@ class ElementStream { handle its children */ + + ///. void popFront() { more: if(isEmpty) return; @@ -115,6 +130,7 @@ class ElementStream { } } + ///. void currentKilled() { if(stack.empty) // should never happen isEmpty = true; @@ -124,21 +140,28 @@ class ElementStream { } } + ///. bool empty() { return isEmpty; } + ///. struct Current { Element element; int childPosition; } + ///. Current current; + ///. Stack!(Current) stack; + + ///. bool isEmpty; } +///. string[string] dup(in string[string] arr) { string[string] ret; foreach(k, v; arr) @@ -150,14 +173,25 @@ string[string] dup(in string[string] arr) { swapNode cloneNode */ +///. class Element { + + ///. Element[] children; + + ///. string tagName; + + ///. string[string] attributes; + + ///. bool selfClosed; + ///. Document parentDocument; + ///. this(Document _parentDocument, string _tagName, string[string] _attributes = null, bool _selfClosed = false) { parentDocument = _parentDocument; tagName = _tagName; @@ -166,6 +200,7 @@ class Element { selfClosed = _selfClosed; } + ///. @property Element previousSibling(string tagName = null) { if(this.parentNode is null) return null; @@ -180,6 +215,7 @@ class Element { return ps; } + ///. @property Element nextSibling(string tagName = null) { if(this.parentNode is null) return null; @@ -202,6 +238,7 @@ class Element { // if you change something here, it won't apply... FIXME const? but changing it would be nice if it applies to the style attribute too though you should use style there. + ///. @property CssStyle computedStyle() { if(_computedStyle is null) { auto style = this.getAttribute("style"); @@ -226,17 +263,18 @@ class Element { private CssStyle _computedStyle; - // These properties are useless in most cases, but if you write a layout engine on top of this lib, they may be good + /// These properties are useless in most cases, but if you write a layout engine on top of this lib, they may be good version(browser) { - void* expansionHook; - int offsetWidth; - int offsetHeight; - int offsetLeft; - int offsetTop; - Element offsetParent; - bool hasLayout; - int zIndex; + void* expansionHook; ///ditto + int offsetWidth; ///ditto + int offsetHeight; ///ditto + int offsetLeft; ///ditto + int offsetTop; ///ditto + Element offsetParent; ///ditto + bool hasLayout; ///ditto + int zIndex; ///ditto + ///ditto int absoluteLeft() { int a = offsetLeft; auto p = offsetParent; @@ -248,6 +286,7 @@ class Element { return a; } + ///ditto int absoluteTop() { int a = offsetTop; auto p = offsetParent; @@ -262,6 +301,7 @@ class Element { // Back to the regular dom functions + ///. @property Element cloned() { auto e = new Element(parentDocument, tagName, attributes.dup, selfClosed); foreach(child; children) { @@ -367,6 +407,7 @@ class Element { assert(0); } + ///. Element insertAfter(Element where, Element what) in { assert(where !is null); @@ -437,6 +478,7 @@ class Element { return appendChild(e); } + ///. Element addChild(string tagName, Element firstChild) in { assert(parentDocument !is null); @@ -454,6 +496,7 @@ class Element { return e; } + ///. T getParent(T)(string tagName = null) if(is(T : Element)) { if(tagName is null) { static if(is(T == Form)) @@ -491,6 +534,7 @@ class Element { } + ///. Element getElementById(string id) { foreach(e; tree) if(e.id == id) @@ -498,6 +542,7 @@ class Element { return null; } + ///. final SomeElementType requireElementById(SomeElementType = Element)(string id) if( is(SomeElementType : Element) @@ -512,6 +557,7 @@ class Element { return e; } + ///. final SomeElementType requireSelector(SomeElementType = Element)(string selector) if( is(SomeElementType : Element) @@ -526,6 +572,7 @@ class Element { return e; } + ///. Element querySelector(string selector) { // FIXME: inefficient auto list = getElementsBySelector(selector); @@ -539,6 +586,7 @@ class Element { return getElementsBySelector(selector); } + ///. Element[] getElementsBySelector(string selector) { if(parentDocument && parentDocument.loose) selector = selector.toLower; @@ -549,6 +597,7 @@ class Element { return ret; } + ///. Element[] getElementsByTagName(string tag) { if(parentDocument && parentDocument.loose) tag = tag.toLower(); @@ -559,11 +608,13 @@ class Element { return ret; } + ///. Element appendText(string text) { Element e = new TextNode(parentDocument, text); return appendChild(e); } + ///. @property Element[] childElements() { Element[] ret; foreach(c; children) @@ -619,6 +670,7 @@ class Element { return stealChildren(d.root); } + ///. Element addClass(string c) { string cn = getAttribute("class"); if(cn is null) { @@ -631,6 +683,7 @@ class Element { return this; } + ///. Element removeClass(string c) { auto cn = className; @@ -639,6 +692,7 @@ class Element { return this; } + ///. bool hasClass(string c) { auto cn = className; @@ -674,6 +728,7 @@ class Element { */ } + ///. void reparent(Element newParent) in { assert(newParent !is null); @@ -688,6 +743,7 @@ class Element { newParent.appendChild(this); } + ///. void insertChildAfter(Element child, Element where) in { assert(child !is null); @@ -713,6 +769,7 @@ class Element { } } + ///. Element[] stealChildren(Element e, Element position = null) in { assert(!selfClosed); @@ -786,6 +843,7 @@ class Element { // should return int + ///. @property int nodeType() const { return 1; } @@ -858,10 +916,12 @@ class Element { return doc.root.children; } + ///. @property string outerHTML() { return this.toString(); } + ///. @property void innerRawSource(string rawSource) { children.length = 0; auto rs = new RawSource(parentDocument, rawSource); @@ -940,15 +1000,18 @@ class Element { return c; } + ///. Element className(string c) { setAttribute("class", c); return this; } + ///. string nodeValue() const { return ""; } + ///. Element replaceChild(Element find, Element replace) in { assert(find !is null); @@ -999,6 +1062,7 @@ class Element { throw new Exception("no such child"); } + ///. Element[] removeChildren() out (ret) { assert(children.length == 0); @@ -1056,6 +1120,7 @@ class Element { throw new Exception("no such child"); } + ///. Element parentNode; /** @@ -1201,17 +1266,21 @@ class Element { } } +///. class DocumentFragment : Element { + ///. this(Document _parentDocument) { tagName = "#fragment"; super(_parentDocument); } + ///. override string toString() const { return this.innerHTML; } } +///. string htmlEntitiesEncode(string data) { char[] output = "".dup; foreach(dchar d; data) { @@ -1235,10 +1304,12 @@ string htmlEntitiesEncode(string data) { // data = data.replace("\u00a0", " "); } +///. string xmlEntitiesEncode(string data) { return htmlEntitiesEncode(data); } +///. dchar parseEntity(in dchar[] entity) { switch(entity[1..$-1]) { case "quot": @@ -1302,6 +1373,7 @@ dchar parseEntity(in dchar[] entity) { import std.utf; +///. string htmlEntitiesDecode(string data, bool strict = false) { dchar[] a; @@ -1342,61 +1414,77 @@ string htmlEntitiesDecode(string data, bool strict = false) { return std.conv.to!string(a); } +///. class RawSource : Element { + + ///. this(Document _parentDocument, string s) { super(_parentDocument); source = s; tagName = "#raw"; } + ///. override string nodeValue() const { return this.toString(); } + ///. override int nodeType() const { return 100; } + ///. override string toString() const { return source; } + ///. override Element appendChild(Element e) { assert(0, "Cannot append to a text node"); } + ///. string source; } +///. enum NodeType { Text = 3} +///. class TextNode : Element { public: + ///. this(Document _parentDocument, string e) { super(_parentDocument); contents = e; tagName = "#text"; } + ///. static TextNode fromUndecodedString(Document _parentDocument, string html) { auto e = new TextNode(_parentDocument, ""); e.contents = htmlEntitiesDecode(html, _parentDocument is null ? false : !_parentDocument.loose); return e; } + ///. override @property Element cloned() { return new TextNode(parentDocument, contents); } + ///. override string nodeValue() const { return this.contents; //toString(); } + ///. override int nodeType() const { return NodeType.Text; } + ///. override string toString() const { string s; if(contents.length) @@ -1408,10 +1496,12 @@ class TextNode : Element { return s; } + ///. override Element appendChild(Element e) { assert(0, "Cannot append to a text node"); } + ///. string contents; } @@ -1420,11 +1510,16 @@ class TextNode : Element { functions for the element in HTML. */ +///. class Link : Element { + + ///. this(Document _parentDocument) { super(_parentDocument); } + + ///. this(string href, string text) { super("a"); setAttribute("href", href); @@ -1436,10 +1531,12 @@ class Link : Element { } + ///. @property string domainName() { } + ///. @property string path +/ /// This gets a variable from the URL's query string. @@ -1481,6 +1578,7 @@ class Link : Element { return hash; } + ///. /*private*/ void updateQueryString(string[string] vars) { string href = getAttribute("href"); @@ -1534,10 +1632,12 @@ class Link : Element { } /* + ///. override string toString() { } + ///. override string getAttribute(string name) { if(name == "href") { @@ -1547,7 +1647,10 @@ class Link : Element { */ } +///. class Form : Element { + + ///. this(Document _parentDocument) { super(_parentDocument); tagName = "form"; @@ -1674,6 +1777,7 @@ class Form : Element { } // FIXME: doesn't handle multiple elements with the same name (except radio buttons) + ///. string getPostableData() { bool[string] namesDone; @@ -1707,7 +1811,7 @@ class Form : Element { return ret; } - // Grabs the