qwell: tag 2.0.5-rc3 r5051 - in /tags/2.0.5-rc3: ./ config/ config/js/

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Aug 10 16:44:08 CDT 2010


Author: qwell
Date: Tue Aug 10 16:44:04 2010
New Revision: 5051

URL: http://svnview.digium.com/svn/asterisk-gui?view=rev&rev=5051
Log:
Pull in proper password change fix

Modified:
    tags/2.0.5-rc3/   (props changed)
    tags/2.0.5-rc3/config/features.html   (props changed)
    tags/2.0.5-rc3/config/home.html
    tags/2.0.5-rc3/config/js/features.js   (props changed)
    tags/2.0.5-rc3/config/password.html

Propchange: tags/2.0.5-rc3/
------------------------------------------------------------------------------
    svn:mergeinfo = /branches/2.0:5050

Propchange: tags/2.0.5-rc3/config/features.html
            ('svn:mergeinfo' removed)

Modified: tags/2.0.5-rc3/config/home.html
URL: http://svnview.digium.com/svn/asterisk-gui/tags/2.0.5-rc3/config/home.html?view=diff&rev=5051&r1=5050&r2=5051
==============================================================================
--- tags/2.0.5-rc3/config/home.html (original)
+++ tags/2.0.5-rc3/config/home.html Tue Aug 10 16:44:04 2010
@@ -167,7 +167,9 @@
 		}
 		u.new_action('update', CURRENT_Username, 'secret', newp );
 		u.callActions();
+
 		ASTGUI.feedback( { msg:"Password Updated Successfully", showfor:3 });
+		var t = ASTGUI.cliCommand('manager reload');
 		alert("Password Updated Successfully!!  \n\n You will now be redirected to the login page \n You must relogin using your new password") ;
 		var f = makeSyncRequest({ action :'logoff'});
 		parent.window.location.reload();

Propchange: tags/2.0.5-rc3/config/js/features.js
            ('svn:mergeinfo' removed)

Modified: tags/2.0.5-rc3/config/password.html
URL: http://svnview.digium.com/svn/asterisk-gui/tags/2.0.5-rc3/config/password.html?view=diff&rev=5051&r1=5050&r2=5051
==============================================================================
--- tags/2.0.5-rc3/config/password.html (original)
+++ tags/2.0.5-rc3/config/password.html Tue Aug 10 16:44:04 2010
@@ -87,13 +87,12 @@
 			DOM_newpass.focus(); return true;
 		};
 
-		var u = new listOfActions('manager.conf') ;
+		var u = new listOfSynActions('manager.conf') ;
 		u.new_action('update', CURRENT_Username, 'secret', DOM_newpass.value);
-		u.callActions(function() {
-			var t = ASTGUI.cliCommand('manager reload');
-		});
+		u.callActions();
 
 		ASTGUI.feedback( { msg:"Password Updated Successfully", showfor:3 });
+		var t = ASTGUI.cliCommand('manager reload');
 		alert("Password Updated Successfully!!  \n\n You will now be redirected to the login page \n You must relogin using your new password") ;
 		var f = makeSyncRequest({ action :'logoff'});
 




More information about the asterisk-gui-commits mailing list