!7
html {
uri = dropPrefix("/", uri);
if (eq(uri, "import")) {
triggerStandardAIImport();
ret "OK";
}
if (possibleGlobalID(uri)) {
AIConcept c = aiConceptsMap_cached().get(toLower(firstPart));
if (c != null)
ret serveHTML("Concept found: " + c.globalID + " - " + c.name);
else
ret serveHTML("Concept not found: " + toLower(firstPart));
}
ret "hello";
}