bkruse: branch 1.4 r1432 - /branches/1.4/config/setup/install.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Thu Aug 23 13:33:30 CDT 2007
Author: bkruse
Date: Thu Aug 23 13:33:30 2007
New Revision: 1432
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1432
Log:
Greenbox and Weasel00 brought to my attention that the permissions
commit did not work, as .search always returned true, of course.
closes 10517
Modified:
branches/1.4/config/setup/install.html
Modified: branches/1.4/config/setup/install.html
URL: http://svn.digium.com/view/asterisk-gui/branches/1.4/config/setup/install.html?view=diff&rev=1432&r1=1431&r2=1432
==============================================================================
--- branches/1.4/config/setup/install.html (original)
+++ branches/1.4/config/setup/install.html Thu Aug 23 13:33:30 2007
@@ -44,10 +44,18 @@
/* Make sure the user has proper permissions */
function check_auth() {
- makerequest("", "", "action=command&command=http%20show%20status", function(t) { t = t.split("\n"); if(t[1].search("Message: Permission Denied")) {
- alert("Your Permissions are not setup Correctly\nPlease add the proper read/write permissions in manager.conf\nClick OK when the changes are made.\n\nExample User:\n\n[kruz]\nsecret = blah\npermit = 127.0.0.1/255.0.0.0\nread = system,call,log,verbose,command,agent,user,config\nwrite = system,call,log,verbose,command,agent,user,config"); log_red(); return false;} else { return true; }})
+ makerequest('g',"users.conf",'', function(t){
+ var response = t.split("\n");
+ if(response[1].match("Message: Permission denied")) {
+ alert("Your Permissions are not setup Correctly\nPlease add the proper read/write permissions in manager.conf\nClick OK when the changes are made.\n\nExample User:\n\n[kruz]\nsecret = blah\npermit = 127.0.0.1/255.0.0.0\nread = system,call,log,verbose,command,agent,user,config\nwrite = system,call,log,verbose,command,agent,user,config");
+ log_red();
+ return false;
+ } else {
+ return true;
+ }});
}
+
function pingevery(a){
keepPinging = setInterval( makeping, a*250 );
}
More information about the asterisk-gui-commits
mailing list