head_servicepane.js
Go to the documentation of this file.
1 /*
2  *=BEGIN SONGBIRD GPL
3  *
4  * This file is part of the Songbird web player.
5  *
6  * Copyright(c) 2005-2010 POTI, Inc.
7  * http://www.songbirdnest.com
8  *
9  * This file may be licensed under the terms of of the
10  * GNU General Public License Version 2 (the ``GPL'').
11  *
12  * Software distributed under the License is distributed
13  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
14  * express or implied. See the GPL for the specific language
15  * governing rights and limitations.
16  *
17  * You should have received a copy of the GPL along with this
18  * program. If not, go to http://www.gnu.org/licenses/gpl.html
19  * or write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *=END SONGBIRD GPL
23  */
24 
35 function serializeTree(aNode) {
36  let result = "[node";
37 
38  let attributes = aNode.attributes;
39  let attrList = [];
40  while (attributes.hasMore()) {
41  let attr = attributes.getNext();
42  attrList.push(" " + attr + '="' + aNode.getAttribute(attr) + '"');
43  }
44  attrList.sort();
45  result += attrList.join("");
46 
47  let childNodes = aNode.childNodes;
48  if (childNodes.hasMoreElements()) {
49  // Node has children
50  result += "]";
51  while (childNodes.hasMoreElements()) {
52  let child = childNodes.getNext().QueryInterface(Ci.sbIServicePaneNode);
53  result += serializeTree(child);
54  }
55  result += "[/node]";
56  }
57  else {
58  // No children, close "tag" immediately
59  result += "/]";
60  }
61 
62  return result;
63 }
tabData attributes[name]
const Ci
function serializeTree(aNode)
Common service pane helper functions.