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