refactor: rename DTree to DValue
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
RENDER(Request& context)
|
||||
{
|
||||
String tests_dir = dirname(context.params["SCRIPT_FILENAME"]);
|
||||
DTree manifest = site_tests_manifest(tests_dir + "/manifest.txt");
|
||||
DValue manifest = site_tests_manifest(tests_dir + "/manifest.txt");
|
||||
StringList entries = list_sort(ls(tests_dir));
|
||||
|
||||
site_tests_page_start("Coverage Index", "Public and local-only UCE regression coverage pages.");
|
||||
@@ -12,7 +12,7 @@ RENDER(Request& context)
|
||||
{
|
||||
if(!str_ends_with(entry, ".uce"))
|
||||
continue;
|
||||
DTree meta = manifest[entry];
|
||||
DValue meta = manifest[entry];
|
||||
String title = meta["title"].to_string();
|
||||
String description = meta["description"].to_string();
|
||||
String tags = meta["tags"].to_string();
|
||||
|
||||
Reference in New Issue
Block a user