rbrindley: branch 2.0 r4908 - /branches/2.0/config/incoming.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Jun 23 09:44:24 CDT 2009
Author: rbrindley
Date: Tue Jun 23 09:44:21 2009
New Revision: 4908
URL: http://svn.asterisk.org/svn-view/asterisk-gui?view=rev&rev=4908
Log:
- Added the following to the Incoming Calling Rules page
- HTML 4.01 DOCTYPE
- <html>, <head>, <title>, and "Content-Type" <meta>
- moved js to the bottom
Modified:
branches/2.0/config/incoming.html
Modified: branches/2.0/config/incoming.html
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/incoming.html?view=diff&rev=4908&r1=4907&r2=4908
==============================================================================
--- branches/2.0/config/incoming.html (original)
+++ branches/2.0/config/incoming.html Tue Jun 23 09:44:21 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,30 +19,35 @@
* at the top of the source tree.
*
-->
-<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
-<style type="text/css">
+<html>
+<head>
+ <title>Incoming Calling Rules</title>
+ <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
- .table_incomingRulesList {
- border: 1px solid #666666;
- margin-top: 5px;
- margin-bottom:10px;
- width: 96%;
- text-align: center;
- padding : 1px;
- }
+ <link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
+ <style type="text/css">
- .table_incomingRulesList tr.frow { background: #6b79a5; color: #CED7EF; }
- .table_incomingRulesList tr.frow td { font-weight:bold; }
- .table_incomingRulesList tr td { padding : 3px; }
- .table_incomingRulesList tr.even { background: #DFDFDF; }
- .table_incomingRulesList tr.odd { background: #FFFFFF; }
- .table_incomingRulesList tr.even:hover, .table_incomingRulesList tr.odd:hover {
- background: #a8b6e5;
- cursor: default;
- }
+ .table_incomingRulesList {
+ border: 1px solid #666666;
+ margin-top: 5px;
+ margin-bottom:10px;
+ width: 96%;
+ text-align: center;
+ padding : 1px;
+ }
-</style>
+ .table_incomingRulesList tr.frow { background: #6b79a5; color: #CED7EF; }
+ .table_incomingRulesList tr.frow td { font-weight:bold; }
+ .table_incomingRulesList tr td { padding : 3px; }
+ .table_incomingRulesList tr.even { background: #DFDFDF; }
+ .table_incomingRulesList tr.odd { background: #FFFFFF; }
+ .table_incomingRulesList tr.even:hover, .table_incomingRulesList tr.odd:hover {
+ background: #a8b6e5;
+ cursor: default;
+ }
+ </style>
+</head>
<body bgcolor="EFEFEF">
<div class="iframeTitleBar">
Incoming Calling Rules
@@ -145,3 +151,4 @@
});
</script>
</body>
+</html>
More information about the asterisk-gui-commits
mailing list