Displaying 6 results from an estimated 6 matches for "network_controller".
2009 Jul 16
0
[PATCH server] add network QMF apis. (still in progress)
This isn't yet functional, but I'm submitting the patch so Ian can continue work on it.
Signed-off-by: Scott Seago <sseago at redhat.com>
---
.../lib/ovirt/controllers/network_controller.rb | 26 ++++++++++++++++++++
.../physical_network_impl_controller.rb | 10 +++++++
.../lib/ovirt/controllers/vlan_impl_controller.rb | 9 +++++++
src/ovirt-agent/ovirt_api.xml | 12 +++++++++
4 files changed, 57 insertions(+), 0 deletions(-)
create mod...
2009 May 20
1
[PATCH server] don't add nil key to failures hash for PartialSuccessError handling.
In addition, removed unnecessary 'rescue' clauses and fixed a bug in a prior fix for this problem for the Permission and Network controllers.
Signed-off-by: Scott Seago <sseago at redhat.com>
---
src/app/controllers/application.rb | 2 +-
src/app/controllers/network_controller.rb | 2 +-
src/app/controllers/permission_controller.rb | 6 ++----
src/app/controllers/resources_controller.rb | 5 ++---
src/app/controllers/storage_controller.rb | 6 +++---
src/app/controllers/vm_controller.rb | 5 ++---
6 files changed, 11 insertions(+), 15 deleti...
2009 Sep 23
0
[PATCH server] consolidated network & routing info ui's
created/edit network information is all specified on
one simpler form
---
src/app/controllers/network_controller.rb | 27 +++++++++++++++----
src/app/models/bonding.rb | 2 +-
src/app/models/network.rb | 2 +-
src/app/models/nic.rb | 2 +-
src/app/views/network/_form.rhtml | 15 +++++++++++
sr...
2009 Jul 23
0
[PATCH server] Add network QMF apis.
...work API stuff to ovirt-agent. It's still not
complete but what is there is functional.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/ovirt-agent/lib/ovirt.rb | 3 +
.../ovirt/controllers/hardwarepool_controller.rb | 2 +-
.../lib/ovirt/controllers/network_controller.rb | 30 +++++++++++++++
.../lib/ovirt/controllers/ovirt_controller.rb | 25 ++++++++++++
.../physical_network_impl_controller.rb | 13 ++++++
.../lib/ovirt/controllers/vlan_impl_controller.rb | 13 ++++++
.../lib/ovirt/controllers/vmdef_controller.rb | 5 ++
src...
2009 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...d-off-by: Scott Seago <sseago at redhat.com>
---
src/app/controllers/application.rb | 46 ----------------
src/app/controllers/hardware_controller.rb | 20 ++++----
src/app/controllers/host_controller.rb | 55 --------------------
src/app/controllers/network_controller.rb | 9 ---
src/app/controllers/nic_controller.rb | 28 ----------
src/app/controllers/permission_controller.rb | 7 ---
src/app/controllers/pool_controller.rb | 7 ---
src/app/controllers/quota_controller.rb | 8 ---
src/app/controll...
2009 May 15
0
[PATCH server] use service layer for Network controller.
...split out nic, bonding, and ip address manipulation into their own controller/svc module, but that would be a much more extensive redesign than we want to deal with for the overall service layer creation refactoring.
Signed-off-by: Scott Seago <sseago at redhat.com>
---
src/app/controllers/network_controller.rb | 521 ++++++-----------------------
src/app/models/ip_address.rb | 11 +
src/app/models/network.rb | 12 +
src/app/models/physical_network.rb | 4 +
src/app/models/vlan.rb | 5 +
src/app/services/network_service.rb | 392 +...