summaryrefslogtreecommitdiffstats
path: root/cobbler/webui/CobblerWeb.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-09-29 12:08:24 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-09-29 12:08:24 -0400
commit805b51a934b6a1629dad22684933f9674256a327 (patch)
tree214491f661eaff19c42f6001fe04f6ee2d89f29c /cobbler/webui/CobblerWeb.py
parent31d73bba99dd1813f319abb99f037e3c087206b0 (diff)
downloadcobbler-805b51a934b6a1629dad22684933f9674256a327.tar.gz
cobbler-805b51a934b6a1629dad22684933f9674256a327.tar.xz
cobbler-805b51a934b6a1629dad22684933f9674256a327.zip
More work on the network interface editor for the webapp. Saving now works properly, though the onchange and new interface functions still need a bit of work.
Diffstat (limited to 'cobbler/webui/CobblerWeb.py')
-rw-r--r--cobbler/webui/CobblerWeb.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/cobbler/webui/CobblerWeb.py b/cobbler/webui/CobblerWeb.py
index 30f3292c..49306cfd 100644
--- a/cobbler/webui/CobblerWeb.py
+++ b/cobbler/webui/CobblerWeb.py
@@ -386,6 +386,11 @@ class CobblerWeb(object):
interfaces = args.get("interface_list","")
interfaces = interfaces.split(",")
+ # BOOKMARK
+ # DEBUG ONLY
+ self.apache.log_error("interfaces = %s" % interfaces)
+ self.apache.log_error("args: %s" % args)
+
for interface in interfaces:
macaddress = args.get("macaddress-%s" % interface, "")
ipaddress = args.get("ipaddress-%s" % interface, "")