pari: trunk r694 - in /trunk/config/setup: ./ images/

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Wed Apr 18 09:49:32 MST 2007


Author: pari
Date: Wed Apr 18 11:49:32 2007
New Revision: 694

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=694
Log:
increase font size in the setup wizard, add missing image

Added:
    trunk/config/setup/images/
    trunk/config/setup/images/loading.gif   (with props)
Modified:
    trunk/config/setup/5.html
    trunk/config/setup/8.html
    trunk/config/setup/setup.css

Modified: trunk/config/setup/5.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/5.html?view=diff&rev=694&r1=693&r2=694
==============================================================================
--- trunk/config/setup/5.html (original)
+++ trunk/config/setup/5.html Wed Apr 18 11:49:32 2007
@@ -528,8 +528,7 @@
 		<table id="callingRulesTable" cellpadding=2 cellspacing=1 border=0 align=center width=500></table>
 	</div>
 
-	<center><div style="height:25px;color: #FF0000;" id='status'  class="field_text9"></div></center>
-	<BR>
+	<div style="display:none;" id='status'></div>
 	<center><input type="button" id="addrule" value="Add a Calling Rule" onclick="add_callingrule();"></center>
 	
 	<div id="userscontent" STYLE="display:none; position: absolute; left: 225; top: 40; width:500; height:290;  background-color:#F4EFE5;   border-width: 1px; border-color: #7E5538; border-style: solid; z-index:5">

Modified: trunk/config/setup/8.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/8.html?view=diff&rev=694&r1=693&r2=694
==============================================================================
--- trunk/config/setup/8.html (original)
+++ trunk/config/setup/8.html Wed Apr 18 11:49:32 2007
@@ -136,6 +136,7 @@
 		var newRow = _$('callingRulesTable').insertRow(-1);
 		var newCell0 = newRow.insertCell(0);
 		newCell0 .align = "center";
+		newCell0 .style.fontSize = "14px";
 		newCell0 .innerHTML = "<BR>An <I>incoming Calling Rule</I> is not defined<BR><BR> Please click on 'Add a Incoming Rule' button<BR> to add a new incoming call rule.<BR><BR>" ;
 		return true;
 	}
@@ -146,19 +147,22 @@
 	var sno = _$('callingRulesTable').rows.length + 1;
 	var newRow = _$('callingRulesTable').insertRow(-1);
 	newRow.id = "row" + sno; 
-	
+
 	var newCell0 = newRow.insertCell(0);
 	newCell0.innerHTML = sno ;
 	newCell0.align="center";
 	newCell0.width=35;
+	newCell0.style.fontSize = "12px";
 
 	var newCell1 = newRow.insertCell(1);
-	newCell1.innerHTML =  convert_tohuman(a,b,c) ; 
+	newCell1.innerHTML =  convert_tohuman(a,b,c) ;
+	newCell1.style.fontSize = "12px"; 
 
 	var newCell2 = newRow.insertCell(2);
 	newCell2.innerHTML = "<A href=\"#\" onclick=\"edit_incomingrule('"+ a +"', '"+ b +"', '" + c + "','" + d+"')\">Edit</A>&nbsp;&nbsp;<A href=\"#\" onclick=\"delete_incomingrule('"+ a +"', '"+ b +"', '" + c + "','" + d+"')\">Delete</A>";
 	newCell2.width=75;
 	newCell2.align="center";
+	newCell2.style.fontSize = "12px";
 	return true;
 }
 
@@ -171,9 +175,9 @@
 	}
 
 	if( a == "_X."){ // handling all unmatched 
-		return " Route all unmatched incoming calls from provider '" + trunk + "' to extension '" + exten[1] + "'" ; 
-	}
-	return " Route incoming calls from provider '" + trunk + "' that macth pattern '" + a + "' to extension '" + exten[1] + "'"  ; 
+		return " Route all unmatched incoming calls from provider '" + didtrunks[b].trunkname + "' to extension '" + exten[1] + "'" ; 
+	}
+	return " Route incoming calls from provider '" + didtrunks[b].trunkname + "' that macth pattern '" + a + "' to extension '" + exten[1] + "'"  ; 
 }
 
 

Added: trunk/config/setup/images/loading.gif
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/images/loading.gif?view=auto&rev=694
==============================================================================
Binary file - no diff available.

Propchange: trunk/config/setup/images/loading.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: trunk/config/setup/images/loading.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: trunk/config/setup/setup.css
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/setup.css?view=diff&rev=694&r1=693&r2=694
==============================================================================
--- trunk/config/setup/setup.css (original)
+++ trunk/config/setup/setup.css Wed Apr 18 11:49:32 2007
@@ -28,7 +28,7 @@
 	margin-top: 10px;
 	color: #000000;
 	background: #C4C4C4;
-	font-size: 60%;
+	font-size: 80%;
 	/*font-weight: bold;*/
 }
 



More information about the asterisk-gui-commits mailing list