[Pkg-voip-commits] r6042 - in /asterisk-gui/trunk/debian: README.Debian patches/datadir_path
tzafrir-guest at alioth.debian.org
tzafrir-guest at alioth.debian.org
Sun Aug 17 08:12:47 UTC 2008
Author: tzafrir-guest
Date: Sun Aug 17 08:12:47 2008
New Revision: 6042
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=6042
Log:
* Javascript concatination is with '+'
* Fix installation procedure in README.Debian
Modified:
asterisk-gui/trunk/debian/README.Debian
asterisk-gui/trunk/debian/patches/datadir_path
Modified: asterisk-gui/trunk/debian/README.Debian
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk-gui/trunk/debian/README.Debian?rev=6042&op=diff
==============================================================================
--- asterisk-gui/trunk/debian/README.Debian (original)
+++ asterisk-gui/trunk/debian/README.Debian Sun Aug 17 08:12:47 2008
@@ -20,6 +20,7 @@
[general]
enabled = yes
+ enablestatic = yes
2) In /etc/asterisk/manager.conf
@@ -28,10 +29,10 @@
webenabled = yes
; And a user with at least the following:
- [username]
- secret=password
- read=config
- write=call,config
+ [username_to_use]
+ secret = a_good_password
+ read = config
+ write = call,config,command
By default the manager in Debian listens on the loopback interface
(localhost) alone, and thus the web interface will listen on port 8088 of
@@ -50,13 +51,15 @@
You should now see port 8088 on 'netstat -lntp' .
-To login: http://localhost:8088/asterisk/static/index.html
+To login: http://localhost:8088/asterisk/static/config/index.html
+Use the username_to_use as a username and a_good_password as the password
+(naturally you should set your own).
Supported Browsers
------------------
-IceWeasel/Firefox seems to work well, and likewise IceApe/SeaMonkey.
-Support for browsers not based on gecko seems to be flaky.
+Seems to be better. Please report browsers with decent javascript support
+that do not work.
Proxy Setup
Modified: asterisk-gui/trunk/debian/patches/datadir_path
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk-gui/trunk/debian/patches/datadir_path?rev=6042&op=diff
==============================================================================
--- asterisk-gui/trunk/debian/patches/datadir_path (original)
+++ asterisk-gui/trunk/debian/patches/datadir_path Sun Aug 17 08:12:47 2008
@@ -9,7 +9,7 @@
-ASTGUI.paths['guiInstall'] = '/var/lib/asterisk/static-http/config/';
+ASTGUI.paths['astDataDir'] = '/usr/share/asterisk';
-+ASTGUI.paths['guiInstall'] = ASTGUI.paths['astDataDir'].'/static-http/config/';
++ASTGUI.paths['guiInstall'] = ASTGUI.paths['astDataDir'] + '/static-http/config/';
ASTGUI.paths['rawman'] = '../../rawman';
ASTGUI.paths['asteriskConfig'] = '/etc/asterisk/';
ASTGUI.paths['ConfigBkp'] = '/var/lib/asterisk/gui_backups/';
@@ -17,12 +17,12 @@
-ASTGUI.paths['Sounds'] = '/var/lib/asterisk/sounds/';
-ASTGUI.paths['MOH'] = '/var/lib/asterisk/moh/' ; // path for music on hold files
-+ASTGUI.paths['Sounds'] = ASTGUI.paths['astDataDir'].'/sounds/';
-+ASTGUI.paths['MOH'] = ASTGUI.paths['astDataDir'].'/moh/' ; // path for music on hold files
++ASTGUI.paths['Sounds'] = ASTGUI.paths['astDataDir'] + '/sounds/';
++ASTGUI.paths['MOH'] = ASTGUI.paths['astDataDir'] + '/moh/' ; // path for music on hold files
ASTGUI.paths['menusRecord'] = ASTGUI.paths['Sounds'] + 'record/' ;
-ASTGUI.paths['scripts'] = '/var/lib/asterisk/scripts/';/* Directory for gui scripts (listfiles, for example) */
-+ASTGUI.paths['scripts'] = ASTGUI.paths['astDataDir'].'/scripts/';/* Directory for gui scripts (listfiles, for example) */
++ASTGUI.paths['scripts'] = ASTGUI.paths['astDataDir'] + '/scripts/';/* Directory for gui scripts (listfiles, for example) */
ASTGUI.paths['output_SysInfo'] = './sysinfo_output.html' ;
ASTGUI.paths['voicemails_dir'] = '/var/spool/asterisk/voicemail/default/' ;
More information about the Pkg-voip-commits
mailing list