mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
nixos-gui: (xml2nix_pptable) Handle path nodes.
svn path=/nixos/trunk/; revision=26973
This commit is contained in:
parent
6839bddd1b
commit
c978e5accc
1 changed files with 3 additions and 0 deletions
|
@ -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");
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue