Describe purpose of script a little more accurately
git-svn-id: svn://svn.open-ils.org/ILS/trunk@8041
dcc99617-32d9-48b4-a31d-
7c20da2025e4
#!/usr/bin/perl
-# turns the orgTree and orgTypes into js files
+# turns the orgTree and orgTypes into a static HTML option list
use OpenSRF::AppSession;
use OpenSRF::System;
my $name = entityize($node->name);
my $kids = $node->children;
- print FILE "<option value='$sname'><pre>" . '   'x$depth . "</pre>$name</option>\n";
+ print FILE "<option value='$sname'>" . '   'x$depth . "$name</option>\n";
print_option($_) for (@$kids);
}