|
@@ -1062,7 +1062,7 @@ ${ commonheader("Job Browser", "jobbrowser", user, request) | n,unicode }
|
|
|
}
|
|
}
|
|
|
else if (/oozie-oozi-C/.test(self.id())) {
|
|
else if (/oozie-oozi-C/.test(self.id())) {
|
|
|
interface = 'schedules';
|
|
interface = 'schedules';
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
else if (/oozie-oozi-B/.test(self.id())) {
|
|
else if (/oozie-oozi-B/.test(self.id())) {
|
|
|
interface = 'bundles';
|
|
interface = 'bundles';
|
|
|
}
|
|
}
|
|
@@ -1097,6 +1097,11 @@ ${ commonheader("Job Browser", "jobbrowser", user, request) | n,unicode }
|
|
|
crumbs.push({'id': vm.job().properties['coordinator_id'](), 'name': vm.job().properties['coordinator_id'](), 'type': 'schedule'});
|
|
crumbs.push({'id': vm.job().properties['coordinator_id'](), 'name': vm.job().properties['coordinator_id'](), 'type': 'schedule'});
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ else if (/-oozie-oozi-C/.test(vm.job().id())) {
|
|
|
|
|
+ if (vm.job().properties['bundle_id']()) {
|
|
|
|
|
+ crumbs.push({'id': vm.job().properties['bundle_id'](), 'name': vm.job().properties['bundle_id'](), 'type': 'bundle'});
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
crumbs.push({'id': vm.job().id(), 'name': vm.job().name(), 'type': vm.job().type()});
|
|
crumbs.push({'id': vm.job().id(), 'name': vm.job().name(), 'type': vm.job().type()});
|
|
|
vm.resetBreadcrumbs(crumbs);
|
|
vm.resetBreadcrumbs(crumbs);
|