summaryrefslogtreecommitdiffstats
path: root/src/html/networkdiscovery.html
diff options
context:
space:
mode:
authorNiklas Goby2011-11-23 11:56:19 +0100
committerNiklas Goby2011-11-23 11:56:19 +0100
commitc0b6b199a9878bc1e95907200501211c09c1e66c (patch)
tree0079c34c6536e5f1d0414aebde1793db60a78f35 /src/html/networkdiscovery.html
parentdeleted the NetworkDiscovery and UnixDomainSocketServer folder (diff)
downloadfbgui-c0b6b199a9878bc1e95907200501211c09c1e66c.tar.gz
fbgui-c0b6b199a9878bc1e95907200501211c09c1e66c.tar.xz
fbgui-c0b6b199a9878bc1e95907200501211c09c1e66c.zip
created modules
Diffstat (limited to 'src/html/networkdiscovery.html')
-rw-r--r--src/html/networkdiscovery.html89
1 files changed, 0 insertions, 89 deletions
diff --git a/src/html/networkdiscovery.html b/src/html/networkdiscovery.html
deleted file mode 100644
index a1e62ac..0000000
--- a/src/html/networkdiscovery.html
+++ /dev/null
@@ -1,89 +0,0 @@
-<html>
-<head>
-<!--qrc:/html/ is needed. otherwise qt won't find the files-->
-<link rel="stylesheet" type="text/css" href="qrc:/html/networkdiscovery.css">
-<link rel="stylesheet" type="text/css" href="qrc:/html/css/jquery-ui-1.8.16.css">
-<script type="text/javascript" src="qrc:/html/js/jquery-1.6.4.min.js"></script>
-<script type="text/javascript" src="qrc:/html/js/jquery-ui-1.8.16.min.js"></script>
-<script type="text/javascript" src="qrc:/html/js/networkDiscovery.js"></script>
-
-
-<script type="text/javascript">
-// prepare the form when the DOM is ready
-$(document).ready(function() {
- // Setup the ajax indicator
- $("#nd_loading_sign").append('<div id="ajaxBusy"><p><img src="qrc:/html/images/loading.gif"></p></div>');
-});
-
-</script>
-
-
-</head>
-<body>
- <header>
- <h1>Network Discovery</h1>
- </header>
- <section id="intro">
- <p id="into_msg">Welcome to the Network Discovery. <br/>
-Please press <strong>F5</strong> if you want to choose which interface to use. <br/>
-We are now looking for usable interfaces and will go on as soon as we found one. This may take a few seconds.</p>
- </section>
- <div id="content">
- <div id="left_spacer">
- <aside>
- <!-- free space -->
- </aside>
- </div>
- <div id="mainContent">
- <section>
- <!-- Main content area -->
- <p id="nd_status"></p>
- <div id="nd_loading_sign"></div>
- <!-- anchor for the show log dialog -->
- <div id="nd_show_log_dialog" title="Log File">
- <pre id="nd_show_log_msg"></pre>
- </div>
- <!-- anchor for the abort boot dialog -->
- <div id="nd_abort_boot_dialog" title="Abort Boot">
- <p id="nd_abort_boot_msg"> <p>
- </div>
- <!-- anchor for the choose interface dialog -->
- <div id="nd_choose_interface_dialog" title="Choose your Interface">
- <p id="nd_choose_interface_msg"></p>
- </div>
- <!-- anchor for the manual configuration dialog -->
- <div id="nd_manual_configuration_dialog" title="Manual Configuration">
- <p id="nd_manual_configuration_msg"></p>
- <p class="validateTips">All form fields are required.</p>
- <form>
- <fieldset>
- <label for="nd_mc_ifname">Interface</label>
- <span id="nd_mc_ifname"></span>
- <label for="ipaddr">IP-Address</label>
- <input type="text" name="ipaddr" id="ipaddr" class="text ui-widget-content ui-corner-all"/>
- <label for="netmask">Netmask</label>
- <input type="text" name="netmask" id="netmask" class="text ui-widget-content ui-corner-all"/>
- <label for="broadcast">Broadcast Address</label>
- <input type="text" name="broadcast" id="broadcast" class="text ui-widget-content ui-corner-all"/>
- <label for="gateway">Gateway Address</label>
- <input type="text" name="gateway" id="gateway" class="text ui-widget-content ui-corner-all"/>
- <label for="dns">DNS</label>
- <input type="text" name="dns" id="dns" class="text ui-widget-content ui-corner-all"/>
- </fieldset>
- </form>
- </div>
- <!-- anchor for qt interface progress foo -->
- <div id="nd_progress_container"></div>
- </section>
- </div>
- <div id="right_spacer">
- <aside>
- <!-- free space -->
- </aside>
- </div>
- </div>
- <footer>
- <p>RZ Uni Freiburg, 2011</p>
- </footer>
-</body>
-</html>