| 29 | | map.connect 'manage/device', :controller => 'manage', :action => 'device_index' |
|---|
| 30 | | map.connect 'manage/device/:device_id', :controller => 'manage', :action => 'device' |
|---|
| 31 | | map.connect 'manage/device/:device_id/interface/:interface_id', :controller => 'manage', :action => 'interface' |
|---|
| 32 | | map.connect 'manage/device/:device_id/interface/:interface_id/traffic_monitor', :controller => 'manage', :action => 'traffic_monitor' |
|---|
| | 29 | map.connect 'manage/device', :controller => 'manage_device', :action => 'index' |
|---|
| | 30 | map.connect 'manage/device/:device_id', :controller => 'manage_device', :action => 'device' |
|---|
| | 31 | map.connect 'manage/device/:device_id/overview', :controller => 'manage_device', :action => 'show_overview' |
|---|
| | 32 | map.connect 'manage/device/:device_id/interfaces', :controller => 'manage_device', :action => 'show_interfaces' |
|---|
| | 33 | map.connect 'manage/device/:device_id/interface/:interface_id', :controller => 'manage_interface', :action => 'interface' |
|---|
| | 34 | map.connect 'manage/device/:device_id/event_log', :controller => 'manage_device', :action => 'show_event_log' |
|---|
| | 35 | map.connect 'manage/device/:device_id/hardware', :controller => 'manage_device', :action => 'show_hardware' |
|---|
| | 36 | map.connect 'manage/device/:device_id/features', :controller => 'manage_device', :action => 'show_features' |
|---|
| | 37 | map.connect 'manage/device/:device_id/functions', :controller => 'manage_device', :action => 'show_functions' |
|---|
| 46 | | map.connect 'manage/device/:device_id/overview', :controller => 'manage', :action => 'show_overview' |
|---|
| 47 | | map.connect 'manage/device/:device_id/interfaces', :controller => 'manage', :action => 'show_interfaces' |
|---|
| 48 | | map.connect 'manage/device/:device_id/event_log', :controller => 'manage', :action => 'show_event_log' |
|---|
| 49 | | map.connect 'manage/device/:device_id/hardware', :controller => 'manage', :action => 'show_hardware' |
|---|
| 50 | | map.connect 'manage/device/:device_id/features', :controller => 'manage', :action => 'show_features' |
|---|
| 51 | | map.connect 'manage/device/:device_id/functions', :controller => 'manage', :action => 'show_functions' |
|---|