URLBuilder cubu = urlBuilder.createCopyFor(source);
// OLAT-1973
if (GUIInterna.isLoadPerformanceMode()) {
StringBuilder pathsb = new StringBuilder();
Component cc = source;
Container ccpar = cc.getParent();
while (ccpar != null) { // omit content pane
// find out name under which cc was registered in its parent - that is the relevant name, not the name of the component itself
Map namedChildren = ccpar.getComponents();
for (Iterator it_chd = namedChildren.keySet().iterator(); it_chd.hasNext();) {
String chdName = (String) it_chd.next();
Component chd = ccpar.getComponent(chdName);
if (chd == cc) {
// found -> append name
pathsb.append(chdName).append('!');
break;
}