rbrindley: branch 2.0 r4924 - /branches/2.0/config/reboot.html

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Jun 23 12:45:43 CDT 2009


Author: rbrindley
Date: Tue Jun 23 12:45:39 2009
New Revision: 4924

URL: http://svn.asterisk.org/svn-view/asterisk-gui?view=rev&rev=4924
Log:

- Added the following to the Reboot page
	- <html>, <head>, <title>, and "Content-Type" <meta>
- moved js to the bottom


Modified:
    branches/2.0/config/reboot.html

Modified: branches/2.0/config/reboot.html
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/reboot.html?view=diff&rev=4924&r1=4923&r2=4924
==============================================================================
--- branches/2.0/config/reboot.html (original)
+++ branches/2.0/config/reboot.html Tue Jun 23 12:45:39 2009
@@ -18,31 +18,14 @@
  * at the top of the source tree.
  *
 -->
-<script src="js/jquery.js"></script>
-<script src="js/astman.js"></script>
-<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
-<style type="text/css">
+<html>
+<head>
+	<title>Reboot Asterisk</title>
+	<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
 
-
-</style>
-<script>
-
-var localajaxinit = function(){
-	top.document.title = "Reboot Asterisk" ;
-	var t = [
-		{url:'preferences.html', desc:'General Preferences' } ,
-		{url:'language.html', desc:'Language' } ,
-		{url:'password.html', desc:'Change Password'}
-	];
-	if( parent.sessionData.PLATFORM.isAA50 ){
-		t.push({ url:'reset_defaults.html', desc: 'Factory Reset' });
-	}
-	t.push( {url:'#', desc:'Reboot', selected:true } );
-	t.push( {url:'flipadvanced.html', desc:'Advanced Options' } );
-	ASTGUI.tabbedOptions( _$('tabbedMenu') , t );
-};
-
-</script>
+	<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
+	<style type="text/css"></style>
+</head>
 <body bgcolor="EFEFEF">
 	<div class="iframeTitleBar">
 		Reboot Asterisk 
@@ -59,4 +42,26 @@
 	<div style='text-align:center; width: 95%; margin-top:40px'>
 		<span class='guiButton' onclick='parent.miscFunctions.reboot_pbx();'>Reboot Now</span>
 	</div>
+
+	<script src="js/jquery.js"></script>
+	<script src="js/astman.js"></script>
+	<script>
+
+	var localajaxinit = function(){
+		top.document.title = "Reboot Asterisk" ;
+		var t = [
+			{url:'preferences.html', desc:'General Preferences' } ,
+			{url:'language.html', desc:'Language' } ,
+			{url:'password.html', desc:'Change Password'}
+		];
+		if( parent.sessionData.PLATFORM.isAA50 ){
+			t.push({ url:'reset_defaults.html', desc: 'Factory Reset' });
+		}
+		t.push( {url:'#', desc:'Reboot', selected:true } );
+		t.push( {url:'flipadvanced.html', desc:'Advanced Options' } );
+		ASTGUI.tabbedOptions( _$('tabbedMenu') , t );
+	};
+
+	</script>
 </body>
+</html>




More information about the asterisk-gui-commits mailing list