Show service processes differently on the index. Expose manifests to package list. Add a work in process library of shared user interface code.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3193 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2016-04-09 16:42:15 +00:00
parent 4d0fdfa484
commit 41a12fd1a7
3 changed files with 133 additions and 18 deletions

View File

@ -110,7 +110,11 @@ function getPackages() {
var packageNames = File.readDirectory("packages/" + packageOwners[i] + "/");
for (var j = 0; j < packageNames.length; j++) {
if (packageNames[j].charAt(0) != ".") {
packages.push({owner: packageOwners[i], name: packageNames[j]});
packages.push({
owner: packageOwners[i],
name: packageNames[j],
manifest: getManifest("packages/" + packageOwners[i] + "/" + packageNames[j] + "/" + packageNames[j] + ".js"),
});
}
}
}