in src/main/java/org/apache/nutch/webui/pages/instances/InstancesPage.java [59:72]
public InstancesPage() {
instancesTable = new WebMarkupContainer("instancesTable");
instancesTable.setOutputMarkupId(true);
instancesTable.add(new AjaxSelfUpdatingTimerBehavior(UPDATE_TIMEOUT));
instancePanel = new InstancePanel("instanceForm");
RefreshingView<NutchInstance> instances = refreshingView();
instancesTable.add(instances);
add(instancesTable);
add(instancePanel);
add(addInstanceButton());
}