pari: trunk r1304 - in /trunk: ./ config/scripts/astman.js

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Aug 7 09:45:48 CDT 2007


Author: pari
Date: Tue Aug  7 09:45:48 2007
New Revision: 1304

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1304
Log:
Merged revisions 1300 via svnmerge from 
https://origsvn.digium.com/svn/asterisk-gui/branches/1.4

........
r1300 | pari | 2007-08-06 16:04:35 -0500 (Mon, 06 Aug 2007) | 1 line

getting rid of function no longer in use
........

Modified:
    trunk/   (props changed)
    trunk/config/scripts/astman.js

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Tue Aug  7 09:45:48 2007
@@ -1,1 +1,1 @@
-/branches/1.4:1-1291,1293,1298-1299
+/branches/1.4:1-1291,1293,1298-1300

Modified: trunk/config/scripts/astman.js
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/scripts/astman.js?view=diff&rev=1304&r1=1303&r2=1304
==============================================================================
--- trunk/config/scripts/astman.js (original)
+++ trunk/config/scripts/astman.js Tue Aug  7 09:45:48 2007
@@ -548,95 +548,6 @@
 			'<TR><TD><img src="/asterisk/static/config/images/loading.gif"></TD>' +
 			'<TD valign=middle align=center>&nbsp;&nbsp;<div id=message_text></div></TD></TR></TABLE>';
 	document.body.appendChild(h);
-}
-
-function combo_box(a, b, c ){	
-	var combo_text = document.getElementById(a);
-	var combo_selectdiv = document.getElementById(b);
-	var combo_selectbox = document.getElementById(c);
-	var TAB = 9;
-	var ENTER = 13;
-	var ESC = 27;
-	var KEYUP = 38;
-	var KEYDN = 40;
-	var BKSPACE = 8;
-
-	function xyz(event){
-		if( event.keyCode == ENTER || event.keyCode == ESC || event.keyCode == TAB){
-			combo_selectdiv.style.display = "none";
-			return false;
-		}else if( event.keyCode == KEYDN ||  event.keyCode == KEYUP ){
-			combo_selectbox.focus();
-			return false;
-		}else if( event.keyCode == BKSPACE && !combo_text.value.length ){
-			combo_selectdiv.style.display = "none";
-			return false;
-		}else{
-			combo_selectdiv.style.display = "";
-			return true;
-		}
-	}
-	
-	function abcd(event){
-		if( event.keyCode == ENTER || event.keyCode == ESC || event.keyCode == TAB){
-		return false;
-		}
-		for (var i=0; i < combo_selectbox.options.length; i++){
-			if(combo_selectbox.options[i].value.toLowerCase().match(combo_text.value.toLowerCase()) ){
-				combo_selectbox.selectedIndex = i;
-				return true;
-			}
-		}
-		combo_selectdiv.style.display = "none";				
-	}
-
-	function efgh(event) {
-		if( event.keyCode == ENTER ){
-			combo_text.value = combo_selectbox.value;
-			combo_text.focus();
-			combo_selectdiv.style.display = "none";
-			return false;
-		}else if( event.keyCode == ESC ){
-			combo_text.focus();
-			combo_selectdiv.style.display = "none";
-		}else{
-			return true;
-		}
-	}
-	function ijkl(event) {
-		combo_text.value = combo_selectbox.value;
-		combo_text.focus();
-		combo_selectdiv.style.display = "none";
-	}
-
-	combo_selectdiv.style.position ="absolute";
-	combo_selectdiv.style.top = 0;
-	combo_selectdiv.style.left = 0;
-//	combo_selectdiv.style.z-index = 10000;
-	combo_selectdiv.style.display = "none";
-
-	ASTGUI.events.add( combo_text , 'keychange' , combobox_activate ) ;
-	ASTGUI.events.add( combo_text , 'focus' , combobox_activate ) ;
-	ASTGUI.events.add( combo_text , 'focusout' , function(){ combo_selectdiv.style.display ='none'; } ) ;
-	ASTGUI.events.add( combo_text , 'keypress' , xyz) ;
-	ASTGUI.events.add( combo_text , 'keyup' , abcd ) ;
-	ASTGUI.events.add( combo_selectbox, 'keypress' , efgh ) ;
-	ASTGUI.events.add( combo_selectbox, 'click' , ijkl ) ;
-
-	function combobox_activate(){
-		var tmp_left = combo_text.offsetLeft;
-		var tmp_top = combo_text.offsetTop + combo_text.offsetHeight;
-		var tmp_parent = combo_text;
-		while(tmp_parent.offsetParent != document.body){
-			tmp_parent = tmp_parent.offsetParent;
-			tmp_left += tmp_parent.offsetLeft;
-			tmp_top += tmp_parent.offsetTop;
-		}
-		combo_selectdiv.style.left = tmp_left;
-		combo_selectdiv.style.top = tmp_top ;
-		combo_selectdiv.style.width = combo_text.offsetWidth;
-		combo_selectdiv.style.display = "";
-	}
 }
 
 function  InArray(search_array, searchstring ){




More information about the asterisk-gui-commits mailing list