rbrindley: branch 2.0 r4886 - /branches/2.0/config/bulkadd.html

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Mon Jun 22 16:23:23 CDT 2009


Author: rbrindley
Date: Mon Jun 22 16:23:20 2009
New Revision: 4886

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

- Added the following the the bulk add page
	- HTML 4.01 DOCTYPE
	- <html>, <head>, <title>, and "Content-Type" <meta>
- moved js to the bottom of the page


Modified:
    branches/2.0/config/bulkadd.html

Modified: branches/2.0/config/bulkadd.html
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/bulkadd.html?view=diff&rev=4886&r1=4885&r2=4886
==============================================================================
--- branches/2.0/config/bulkadd.html (original)
+++ branches/2.0/config/bulkadd.html Mon Jun 22 16:23:20 2009
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C/DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <!--
  * Asterisk-GUI	- an Asterisk configuration interface
  *
@@ -18,16 +19,14 @@
  * at the top of the source tree.
  *
 -->
-<script src="js/jquery.js"></script>
-<script src="js/astman.js"></script>
-<script src="js/bulkadd.js"></script>
-<script src="js/jquery.tooltip.js"></script>
-<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
-<style type="text/css">
+<html>
+<head>
+	<title>Bulk Add</title>
+	<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
 
-
-</style>
-
+	<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
+	<style type="text/css"></style>
+</head>
 <body bgcolor="EFEFEF">
 	<div class="iframeTitleBar"> 
 		Bulk Add <span class='refresh_icon' onclick="window.location.reload();" >&nbsp;<img src="images/refresh.png" title=" Refresh " border=0 >&nbsp;</span>
@@ -80,4 +79,9 @@
 		</tr>
 		
 	</table>
+	<script src="js/jquery.js"></script>
+	<script src="js/astman.js"></script>
+	<script src="js/bulkadd.js"></script>
+	<script src="js/jquery.tooltip.js"></script>
 </body>
+</html>




More information about the asterisk-gui-commits mailing list