nixos-gui: (xml2nix_pptable) Handle path nodes.

svn path=/nixos/trunk/; revision=26973
This commit is contained in:
Nicolas Pierron 2011-04-25 17:49:03 +00:00
parent 6839bddd1b
commit c978e5accc

View file

@ -200,6 +200,9 @@ var xml2nix_pptable = {
string: function (node, depth, pp) {
return "\"" + node.attr("value") + "\"";
},
path: function (node, depth, pp) {
return node.attr("value");
},
bool: function (node, depth, pp) {
return node.attr("value");
},