From: <abe...@us...> - 2011-12-15 17:04:08
|
Revision: 5309 http://astlinux.svn.sourceforge.net/astlinux/?rev=5309&view=rev Author: abelbeck Date: 2011-12-15 17:03:58 +0000 (Thu, 15 Dec 2011) Log Message: ----------- web interface, add Copyright notice for iLBC CODEC, and update overall Copyright to 2012 Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/header.php branches/1.0/package/webinterface/altweb/common/license-astlinux.txt branches/1.0/package/webinterface/altweb/common/license-packages.txt branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/header.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/header.php 2011-12-14 20:11:56 UTC (rev 5308) +++ branches/1.0/package/webinterface/altweb/common/header.php 2011-12-15 17:03:58 UTC (rev 5309) @@ -1,6 +1,6 @@ <?php session_manual_gc(); -// Copyright (C) 2008-2011 Lonnie Abelbeck +// Copyright (C) 2008-2012 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU @@ -112,7 +112,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<!-- Copyright (C) 2008-2011 Lonnie Abelbeck --> +<!-- Copyright (C) 2008-2012 Lonnie Abelbeck --> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate" /> <meta http-equiv="Expires" content="0" /> Modified: branches/1.0/package/webinterface/altweb/common/license-astlinux.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2011-12-14 20:11:56 UTC (rev 5308) +++ branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2011-12-15 17:03:58 UTC (rev 5309) @@ -1,4 +1,4 @@ -AstLinux is Copyright (c) 2004-2011 by Kristian Kielhofner. +AstLinux is Copyright (c) 2004-2012 by Kristian Kielhofner. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2011-12-14 20:11:56 UTC (rev 5308) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2011-12-15 17:03:58 UTC (rev 5309) @@ -8,12 +8,13 @@ ex-vi~Copyright (c) 2001-2002 Caldera International Inc. All rights reserved. RUNNIX~Copyright (c) 2006-2011 by Kristian Kielhofner. libSRTP~Copyright (c) 2001-2005 Cisco Systems, Inc. All rights reserved. -Web Interface~Copyright (c) 2008-2011 Lonnie Abelbeck. +iLBC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. +Web Interface~Copyright (c) 2008-2012 Lonnie Abelbeck. shellinabox~Copyright (c) 2008-2010 Markus Gutschke. Asterisk~Copyright (c) 1999-2011 Digium, Inc. DAHDI~Copyright (c) 2001-2011 Digium, Inc. libPRI~Copyright (c) 2001-2010 Digium, Inc. -Arno's Firewall~Copyright (c) 2001-2011 by Arno van Amersfoort. +Arno's Firewall~Copyright (c) 2001-2012 by Arno van Amersfoort. dnsmasq~Copyright (c) 2000-2011 Simon Kelley. OpenSSL~Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. OpenSSH~Copyright (c) 1995 Tatu Ylonen <yl...@cs...>, Espoo, Finland. All rights reserved. Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2011-12-14 20:11:56 UTC (rev 5308) +++ branches/1.0/package/webinterface/altweb/common/version.php 2011-12-15 17:03:58 UTC (rev 5309) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.03'; +$GUI_VERSION = '1.8.04'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-10-11 17:50:23
|
Revision: 5708 http://astlinux.svn.sourceforge.net/astlinux/?rev=5708&view=rev Author: abelbeck Date: 2012-10-11 17:50:14 +0000 (Thu, 11 Oct 2012) Log Message: ----------- web interface, Status tab, add check for /etc/dnsmasq.static to determine if DHCP is enabled Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/status.inc branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/status.inc =================================================================== --- branches/1.0/package/webinterface/altweb/common/status.inc 2012-10-11 15:45:15 UTC (rev 5707) +++ branches/1.0/package/webinterface/altweb/common/status.inc 2012-10-11 17:50:14 UTC (rev 5708) @@ -297,7 +297,7 @@ // function isDHCPactive() { - shell('grep -q "^dhcp-leasefile=" /etc/dnsmasq.conf 2>/dev/null', $status); + shell('grep -q "^dhcp-leasefile=" /etc/dnsmasq.conf 2>/dev/null || grep -q "^dhcp-leasefile=" /etc/dnsmasq.static 2>/dev/null', $status); return($status == 0); } Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2012-10-11 15:45:15 UTC (rev 5707) +++ branches/1.0/package/webinterface/altweb/common/version.php 2012-10-11 17:50:14 UTC (rev 5708) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.16'; +$GUI_VERSION = '1.8.17'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-12-04 16:47:23
|
Revision: 5787 http://astlinux.svn.sourceforge.net/astlinux/?rev=5787&view=rev Author: abelbeck Date: 2012-12-04 16:47:12 +0000 (Tue, 04 Dec 2012) Log Message: ----------- web interface, Status tab, updated 'Show Licenses' information Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/license-astlinux.txt branches/1.0/package/webinterface/altweb/common/license-packages.txt Modified: branches/1.0/package/webinterface/altweb/common/license-astlinux.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2012-12-04 16:11:53 UTC (rev 5786) +++ branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2012-12-04 16:47:12 UTC (rev 5787) @@ -1,4 +1,4 @@ -AstLinux is Copyright (c) 2004-2012 by Kristian Kielhofner. +AstLinux is Copyright (c) 2004-2013 by Kristian Kielhofner. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2012-12-04 16:11:53 UTC (rev 5786) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2012-12-04 16:47:12 UTC (rev 5787) @@ -6,32 +6,34 @@ ## 3) Lines beginning with a '#' are treated as comments ## ex-vi~Copyright (c) 2001-2002 Caldera International Inc. All rights reserved. -RUNNIX~Copyright (c) 2006-2011 by Kristian Kielhofner. +RUNNIX~Copyright (c) 2006-2013 by Kristian Kielhofner. libSRTP~Copyright (c) 2001-2005 Cisco Systems, Inc. All rights reserved. -iLBC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. -Web Interface~Copyright (c) 2008-2012 Lonnie Abelbeck. +iLBC CODEC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. +Web Interface~Copyright (c) 2008-2013 Lonnie Abelbeck. shellinabox~Copyright (c) 2008-2010 Markus Gutschke. -Asterisk~Copyright (c) 1999-2011 Digium, Inc. -DAHDI~Copyright (c) 2001-2011 Digium, Inc. -libPRI~Copyright (c) 2001-2010 Digium, Inc. -Arno's Firewall~Copyright (c) 2001-2012 by Arno van Amersfoort. -dnsmasq~Copyright (c) 2000-2011 Simon Kelley. -OpenSSL~Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. +Asterisk~Copyright (c) 1999-2013 Digium, Inc. +DAHDI~Copyright (c) 2001-2013 Digium, Inc. +libPRI~Copyright (c) 2001-2012 Digium, Inc. +Arno's Firewall~Copyright (c) 2001-2013 by Arno van Amersfoort. +dnsmasq~Copyright (c) 2000-2012 Simon Kelley. +OpenSSL~Copyright (c) 1998-2012 The OpenSSL Project. All rights reserved. OpenSSH~Copyright (c) 1995 Tatu Ylonen <yl...@cs...>, Espoo, Finland. All rights reserved. -OpenVPN~Copyright (c) 2002-2010 OpenVPN Technologies, Inc. <sa...@op...> -PHP~Copyright (c) 1999-2011 The PHP Group. All rights reserved. +OpenVPN~Copyright (c) 2002-2012 OpenVPN Technologies, Inc. <sa...@op...> +PHP~Copyright (c) 1999-2013 The PHP Group. All rights reserved. ntpd~Copyright (c) 1992-2009 David L. Mills. vsftpd~Copyright (c) 2001 Daniel Jacobowitz. <da...@de...> -lighttpd~Copyright (c) 2004-2010, Jan Kneschke. -radvd~Copyright (c) 1996-2011 by Lars Fenneberg <lf...@el...> -msmtp~Copyright (c) 2000-2010 Martin Lambers <ma...@ma...> -libxml2~Copyright (c) 1998-2003 Daniel Veillard. All Rights Reserved. +lighttpd~Copyright (c) 2004-2012, Jan Kneschke. +radvd~Copyright (c) 1996-2012 by Lars Fenneberg <lf...@el...> +msmtp~Copyright (c) 2000-2012 Martin Lambers <ma...@ma...> +libxml2~Copyright (c) 1998-2012 Daniel Veillard. All Rights Reserved. libtiff~Copyright (c) 1988-1997 Sam Leffler, Copyright (c) 1991-1997 Silicon Graphics, Inc. libjpeg~Copyright (c) 1991-2010, Thomas G. Lane, Guido Vollbeding. -iptables~Copyright (c) 2000-2002 by the netfilter coreteam <cor...@ne...> +iptables~Copyright (c) 2000-2012 by the netfilter coreteam <cor...@ne...> curl~Copyright (c) 1996-2011 Daniel Stenberg, <da...@ha...>. mDNS~Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved. -rp-pppoe~Copyright (c) 2001-2005 Roaring Penguin Software Inc. -zabbix~Copyright (c) 2000-2011 SIA Zabbix. +rp-pppoe~Copyright (c) 2001-2012 Roaring Penguin Software Inc. +zabbix~Copyright (c) 2000-2012 SIA Zabbix. zlib~Copyright (c) 1995-2005 Jean-loup Gailly. MS-Win Installer~Copyright (c) 2010-2011 Tom Chadwin, Nullsoft, et al. +SILK CODEC~Copyright (c) 2010-2012 Skype and/or Microsoft. All rights reserved. Licensed via Digium, Inc. +SpanDSP~Copyright (c) 2003-2012 Steve Underwood <st...@co...>. All rights reserved. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2013-02-05 15:44:04
|
Revision: 5942 http://astlinux.svn.sourceforge.net/astlinux/?rev=5942&view=rev Author: abelbeck Date: 2013-02-05 15:43:56 +0000 (Tue, 05 Feb 2013) Log Message: ----------- web interface, update asteriskURLrepo() to include Asterisk 11 as a Repository URL Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2013-02-04 19:13:00 UTC (rev 5941) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2013-02-05 15:43:56 UTC (rev 5942) @@ -477,11 +477,21 @@ $version = trim(shell_exec('/usr/sbin/asterisk -V')); - if (strncmp($version, 'Asterisk 1.4.', 13) == 0) { - $str = 'http://mirror.astlinux.org/firmware-1.x'; + if (($i = strpos($version, ' ')) !== FALSE) { + $ver3 = substr($version, $i + 1, 3); } else { - $str = 'http://mirror.astlinux.org/ast18-firmware-1.x'; + $ver3 = ''; } + + $str = 'http://mirror.astlinux.org/'; + + if ($ver3 === '1.4') { + $str .= 'firmware-1.x'; + } elseif ($ver3 === '1.8') { + $str .= 'ast18-firmware-1.x'; + } else { + $str .= 'ast11-firmware-1.x'; + } return($str); } Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2013-02-04 19:13:00 UTC (rev 5941) +++ branches/1.0/package/webinterface/altweb/common/version.php 2013-02-05 15:43:56 UTC (rev 5942) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.20'; +$GUI_VERSION = '1.8.21'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2013-02-27 18:14:58
|
Revision: 5972 http://astlinux.svn.sourceforge.net/astlinux/?rev=5972&view=rev Author: abelbeck Date: 2013-02-27 18:14:51 +0000 (Wed, 27 Feb 2013) Log Message: ----------- web interface, use '/etc/timezone' if it exists for the Timezone, use 'date_default_timezone_get()' as fallback. Note: This is what PHP 5.3 prefers and PHP 5.4 requires since 'date_default_timezone_get()' got neutered. Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2013-02-27 17:12:48 UTC (rev 5971) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2013-02-27 18:14:51 UTC (rev 5972) @@ -802,10 +802,20 @@ } return($db); } -// Set default timezone -if (function_exists('date_default_timezone_set')) { - date_default_timezone_set(@date_default_timezone_get()); + +// Function: system_timezone +// +function system_timezone() { + + if (($tz = trim(@file_get_contents('/etc/timezone'))) === '') { + $tz = @date_default_timezone_get(); + } + return ($tz); } + +// Set system timezone +date_default_timezone_set(system_timezone()); + // Set globals $global_prefs = parsePrefs(getPREFSlocation()); $global_user = getPHPusername(); Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2013-02-27 17:12:48 UTC (rev 5971) +++ branches/1.0/package/webinterface/altweb/common/version.php 2013-02-27 18:14:51 UTC (rev 5972) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.21'; +$GUI_VERSION = '1.8.22'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2013-03-11 15:13:01
|
Revision: 5986 http://astlinux.svn.sourceforge.net/astlinux/?rev=5986&view=rev Author: abelbeck Date: 2013-03-11 15:12:51 +0000 (Mon, 11 Mar 2013) Log Message: ----------- web interface, SQL-Data tab, add topic help text, tweak default SQL schema, reduce size of left navigation, Thanks to Michael Keuter Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/phpliteadmin.css branches/1.0/package/webinterface/altweb/common/sqldata.sql branches/1.0/package/webinterface/altweb/common/topics.info Modified: branches/1.0/package/webinterface/altweb/common/phpliteadmin.css =================================================================== --- branches/1.0/package/webinterface/altweb/common/phpliteadmin.css 2013-03-11 04:00:21 UTC (rev 5985) +++ branches/1.0/package/webinterface/altweb/common/phpliteadmin.css 2013-03-11 15:12:51 UTC (rev 5986) @@ -56,7 +56,7 @@ #container { padding:10px; } /* div of left box with log, list of databases, etc. */ #leftNav{ - float:left; width:250px; padding:0px; + float:left; width:200px; padding:0px; border:#3B3B3B 1px solid; background-color:#FFF; padding-bottom:15px; border-radius:5px; -moz-border-radius:5px; -webkit-box-shadow: 2px 2px 2px 2px rgba(33, 33, 33, 0.5); @@ -139,4 +139,4 @@ #tt{ position:absolute; display:block; } #tttop { display:block; height:5px; margin-left:5px; overflow:hidden } #ttcont { display:block; padding:2px 12px 3px 7px; margin-left:5px; background:#f3cece; color:#333 } -#ttbot { display:block; height:5px; margin-left:5px; overflow:hidden } \ No newline at end of file +#ttbot { display:block; height:5px; margin-left:5px; overflow:hidden } Modified: branches/1.0/package/webinterface/altweb/common/sqldata.sql =================================================================== --- branches/1.0/package/webinterface/altweb/common/sqldata.sql 2013-03-11 04:00:21 UTC (rev 5985) +++ branches/1.0/package/webinterface/altweb/common/sqldata.sql 2013-03-11 15:12:51 UTC (rev 5986) @@ -4,13 +4,13 @@ 'sipuser' TEXT NOT NULL, 'lastname' TEXT, 'firstname' TEXT, - 'out_contextid' INTEGER DEFAULT 7, + 'out_cxid' INTEGER DEFAULT 7, 'vm' INTEGER DEFAULT 0, - 'mailbox' TEXT, + 'vmbox' TEXT, 'email' TEXT, - 'exten_intern' TEXT, - 'exten_exten' TEXT, - 'fax_number' TEXT, + 'ext_intern' TEXT, + 'ext_extern' TEXT, + 'fax_ext' TEXT, 'fax_email' TEXT, 'xmpp_jid' TEXT ); @@ -23,8 +23,8 @@ CREATE TABLE IF NOT EXISTS 'ip_phones' ( 'phone_id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, - 'phone_type1' TEXT, - 'phone_fw1' TEXT, + 'phone_type' TEXT, + 'phone_fw' TEXT, 'phone_ip' TEXT, 'phone_mac' TEXT, 'userid' INTEGER Modified: branches/1.0/package/webinterface/altweb/common/topics.info =================================================================== --- branches/1.0/package/webinterface/altweb/common/topics.info 2013-03-11 04:00:21 UTC (rev 5985) +++ branches/1.0/package/webinterface/altweb/common/topics.info 2013-03-11 15:12:51 UTC (rev 5986) @@ -288,7 +288,46 @@ SQL-Data Tab: +The SQL-Data Tab adds a web dialog to edit the SQLite3 database (added in AstLinux 1.1.1). +The database exists in "/mnt/kd/asterisk-odbc.sqlite3". +The Prefs tab contains a relevant option under "SQL-Data Tab Options:". + +The "Create default SIP & Phone SQL Schema if not defined" (checked by default), +automatically creates the default table structure for the SQLite3 database. + +You can access the database via Asterisk with user defined "func_odbc" functions, where +you can define customized database queries and more. A quite universal example for an entry +in the "func_odbc.conf" would be: + +Credit: Michael Keuter +---- /etc/asterisk/func_odbc.conf snippet ---- + +[SIPUSERS] +dsn=asterisk +readsql=SELECT ${SQL_ESC(${ARG1})} FROM sip_users WHERE ${SQL_ESC(${ARG2})}='${SQL_ESC(${ARG3})}' + +---- /etc/asterisk/func_odbc.conf snippet ---- + +For example, if you want to find the SIP-user belonging to the internal extension "101" +(as defined in your database), this could be accessed in the Asterisk dialplan +like this: + +---- /etc/asterisk/extensions.conf snippet ---- + +; ODBC Test +exten => 999,1,NoOp(ODBC Query Test) +; +; ODBC_SIPUSERS: SELECT ARG1 FROM sip_users WHERE ARG2=ARG3 +; in the case: SELECT sipuser FROM sip_users WHERE ext_intern=101 +; +same => n,Set(val=${ODBC_SIPUSERS(sipuser,ext_intern,101)}) +same => n,NoOp(ODBC-ReturnValue: ${val}) +same => n,Hangup() + +---- /etc/asterisk/extensions.conf snippet ---- + + [[xmpp-shared-groups]] XMPP Shared Groups: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2013-12-28 17:07:59
|
Revision: 6326 http://sourceforge.net/p/astlinux/code/6326 Author: abelbeck Date: 2013-12-28 17:07:57 +0000 (Sat, 28 Dec 2013) Log Message: ----------- web interface, bump Copyright to 2014 Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/header.php branches/1.0/package/webinterface/altweb/common/license-astlinux.txt branches/1.0/package/webinterface/altweb/common/license-packages.txt Modified: branches/1.0/package/webinterface/altweb/common/header.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/header.php 2013-12-26 21:55:27 UTC (rev 6325) +++ branches/1.0/package/webinterface/altweb/common/header.php 2013-12-28 17:07:57 UTC (rev 6326) @@ -1,6 +1,6 @@ <?php session_manual_gc(); -// Copyright (C) 2008-2013 Lonnie Abelbeck +// Copyright (C) 2008-2014 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU @@ -131,7 +131,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<!-- Copyright (C) 2008-2013 Lonnie Abelbeck --> +<!-- Copyright (C) 2008-2014 Lonnie Abelbeck --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate" /> <meta http-equiv="Expires" content="0" /> Modified: branches/1.0/package/webinterface/altweb/common/license-astlinux.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2013-12-26 21:55:27 UTC (rev 6325) +++ branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2013-12-28 17:07:57 UTC (rev 6326) @@ -1,4 +1,4 @@ -AstLinux is Copyright (c) 2004-2013 by Kristian Kielhofner. +AstLinux is Copyright (c) 2004-2014 by Kristian Kielhofner. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2013-12-26 21:55:27 UTC (rev 6325) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2013-12-28 17:07:57 UTC (rev 6326) @@ -6,15 +6,15 @@ ## 3) Lines beginning with a '#' are treated as comments ## ex-vi~Copyright (c) 2001-2002 Caldera International Inc. All rights reserved. -RUNNIX~Copyright (c) 2006-2013 by Kristian Kielhofner. +RUNNIX~Copyright (c) 2006-2014 by Kristian Kielhofner. libSRTP~Copyright (c) 2001-2005 Cisco Systems, Inc. All rights reserved. iLBC CODEC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. -Web Interface~Copyright (c) 2008-2013 Lonnie Abelbeck. +Web Interface~Copyright (c) 2008-2014 Lonnie Abelbeck. shellinabox~Copyright (c) 2008-2010 Markus Gutschke. -Asterisk~Copyright (c) 1999-2013 Digium, Inc. -DAHDI~Copyright (c) 2001-2013 Digium, Inc. +Asterisk~Copyright (c) 1999-2014 Digium, Inc. +DAHDI~Copyright (c) 2001-2014 Digium, Inc. libPRI~Copyright (c) 2001-2012 Digium, Inc. -Arno's Firewall~Copyright (c) 2001-2013 by Arno van Amersfoort. +Arno's Firewall~Copyright (c) 2001-2014 by Arno van Amersfoort. dnsmasq~Copyright (c) 2000-2012 Simon Kelley. OpenSSL~Copyright (c) 1998-2012 The OpenSSL Project. All rights reserved. OpenSSH~Copyright (c) 1995 Tatu Ylonen <yl...@cs...>, Espoo, Finland. All rights reserved. @@ -42,7 +42,7 @@ Lua~Copyright (c) 1994-2012 Lua.org, PUC-Rio. All rights reserved. perl~Copyright (c) 1987-2013 by Larry Wall, et al. phpliteadmin~Copyright (c) 2011-2013 phpLiteAdmin (http://phpliteadmin.googlecode.com) -FOP2~Copyright (c) 2009-2013 House Internet S.R.L. (http://www.fop2.com) +FOP2~Copyright (c) 2009-2014 House Internet S.R.L. (http://www.fop2.com) ddclient~Copyright (c) 1999-2013 Paul Burry, wimpunk, et al. vCard converter~Copyright (c) 2006-2013 Thomas Bruederli <th...@br...> OpenLDAP~Copyright (c) 1998-2013 The OpenLDAP Foundation. All rights reserved. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-08-17 18:52:02
|
Revision: 6635 http://sourceforge.net/p/astlinux/code/6635 Author: abelbeck Date: 2014-08-17 18:51:59 +0000 (Sun, 17 Aug 2014) Log Message: ----------- web interface, Network tab, rewrite getETHinterfaces() so the interface order is not random with the new kernel Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2014-08-16 20:11:59 UTC (rev 6634) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2014-08-17 18:51:59 UTC (rev 6635) @@ -344,28 +344,24 @@ // function getETHinterfaces() { $id = 0; - $tmpfile = tempnam("/tmp", "PHP_"); - @exec('grep "^ *[a-z0-9.]*:" /proc/net/dev >'.$tmpfile); - $ph = @fopen($tmpfile, "r"); - while (! feof($ph)) { - if ($line = trim(fgets($ph, 1024))) { - if (($pos = strpos($line, ':')) !== FALSE) { - $eth = substr($line, 0, $pos); - if ($eth !== 'lo' && - strncmp($eth, 'ppp', 3) != 0 && - strncmp($eth, 'tun', 3) != 0 && - strncmp($eth, 'sit', 3) != 0 && - strncmp($eth, 'ip6tun', 6) != 0 && - strncmp($eth, 'dummy', 5) != 0) { + $output = array(); + $cmd = '/sbin/ip -o link show 2>/dev/null | cut -d\':\' -f2'; + @exec($cmd, $output); + foreach ($output as $line) { + $eth = trim($line); + if (($pos = strpos($eth, '@')) !== FALSE) { + $eth = substr($eth, 0, $pos); + } + if ($eth !== 'lo' && + strncmp($eth, 'ppp', 3) && + strncmp($eth, 'tun', 3) && + strncmp($eth, 'sit', 3) && + strncmp($eth, 'ip6tun', 6) && + strncmp($eth, 'dummy', 5)) { $eth_R[$id] = $eth; $id++; - } - } } } - fclose($ph); - @unlink($tmpfile); - return($eth_R); } Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2014-08-16 20:11:59 UTC (rev 6634) +++ branches/1.0/package/webinterface/altweb/common/version.php 2014-08-17 18:51:59 UTC (rev 6635) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.29'; +$GUI_VERSION = '1.8.30'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-02-21 17:16:24
|
Revision: 6983 http://sourceforge.net/p/astlinux/code/6983 Author: abelbeck Date: 2015-02-21 17:16:16 +0000 (Sat, 21 Feb 2015) Log Message: ----------- web interface, Prefs and System tab, set default 'Repository URL' to use Asterisk 13 if installed Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2015-02-20 18:37:26 UTC (rev 6982) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2015-02-21 17:16:16 UTC (rev 6983) @@ -616,8 +616,10 @@ $str .= 'firmware-1.x'; } elseif ($ver3 === '1.8') { $str .= 'ast18-firmware-1.x'; + } elseif ($ver3 === '11.') { + $str .= 'ast11-firmware-1.x'; } else { - $str .= 'ast11-firmware-1.x'; + $str .= 'ast13-firmware-1.x'; } return($str); } Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2015-02-20 18:37:26 UTC (rev 6982) +++ branches/1.0/package/webinterface/altweb/common/version.php 2015-02-21 17:16:16 UTC (rev 6983) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.32'; +$GUI_VERSION = '1.8.33'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-01-02 22:29:48
|
Revision: 7436 http://sourceforge.net/p/astlinux/code/7436 Author: abelbeck Date: 2016-01-02 22:29:46 +0000 (Sat, 02 Jan 2016) Log Message: ----------- web interface, update copyright year to 2016 Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/header.php branches/1.0/package/webinterface/altweb/common/license-astlinux.txt branches/1.0/package/webinterface/altweb/common/license-packages.txt branches/1.0/package/webinterface/altweb/common/status.inc Modified: branches/1.0/package/webinterface/altweb/common/header.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/header.php 2016-01-02 22:15:10 UTC (rev 7435) +++ branches/1.0/package/webinterface/altweb/common/header.php 2016-01-02 22:29:46 UTC (rev 7436) @@ -1,6 +1,6 @@ <?php session_manual_gc(); -// Copyright (C) 2008-2015 Lonnie Abelbeck +// Copyright (C) 2008-2016 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU @@ -131,7 +131,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<!-- Copyright (C) 2008-2014 Lonnie Abelbeck --> +<!-- Copyright (C) 2008-2016 Lonnie Abelbeck --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate" /> <meta http-equiv="Expires" content="0" /> Modified: branches/1.0/package/webinterface/altweb/common/license-astlinux.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2016-01-02 22:15:10 UTC (rev 7435) +++ branches/1.0/package/webinterface/altweb/common/license-astlinux.txt 2016-01-02 22:29:46 UTC (rev 7436) @@ -1,4 +1,4 @@ -AstLinux is Copyright (c) 2004-2015 by Kristian Kielhofner. +AstLinux is Copyright (c) 2004-2016 by Kristian Kielhofner. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-01-02 22:15:10 UTC (rev 7435) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-01-02 22:29:46 UTC (rev 7436) @@ -9,8 +9,8 @@ RUNNIX~Copyright (c) 2006-2015 by Kristian Kielhofner. libSRTP~Copyright (c) 2001-2015 Cisco Systems, Inc. All rights reserved. iLBC CODEC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. -Web Interface~Copyright (c) 2008-2015 Lonnie Abelbeck. -shellinabox~Copyright (c) 2008-2010 Markus Gutschke. +Web Interface~Copyright (c) 2008-2016 Lonnie Abelbeck. +shellinabox~Copyright (c) 2008-2015 Markus Gutschke, Luka Krajger. Asterisk~Copyright (c) 1999-2015 Digium, Inc. DAHDI~Copyright (c) 2001-2015 Digium, Inc. libPRI~Copyright (c) 2001-2015 Digium, Inc. @@ -22,7 +22,7 @@ PHP~Copyright (c) 1999-2015 The PHP Group. All rights reserved. ntpd~Copyright (c) 1992-2015 David L. Mills. vsftpd~Copyright (c) 2001-2013 Daniel Jacobowitz. <da...@de...> -lighttpd~Copyright (c) 2004-2015, Jan Kneschke. +lighttpd~Copyright (c) 2004-2016, Jan Kneschke. msmtp~Copyright (c) 2000-2015 Martin Lambers <ma...@ma...> libxml2~Copyright (c) 1998-2012 Daniel Veillard. All Rights Reserved. libtiff~Copyright (c) 1988-1997 Sam Leffler, Copyright (c) 1991-1997 Silicon Graphics, Inc. Modified: branches/1.0/package/webinterface/altweb/common/status.inc =================================================================== --- branches/1.0/package/webinterface/altweb/common/status.inc 2016-01-02 22:15:10 UTC (rev 7435) +++ branches/1.0/package/webinterface/altweb/common/status.inc 2016-01-02 22:29:46 UTC (rev 7436) @@ -1,6 +1,6 @@ <?php -// Copyright (C) 2008-2015 Lonnie Abelbeck +// Copyright (C) 2008-2016 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-10 14:31:14
|
Revision: 7578 http://sourceforge.net/p/astlinux/code/7578 Author: abelbeck Date: 2016-03-10 14:31:12 +0000 (Thu, 10 Mar 2016) Log Message: ----------- web interface, automatically don't use kernel-reboot with 'genx86_64-vm' builds, use reboot instead Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2016-03-10 14:04:50 UTC (rev 7577) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2016-03-10 14:31:12 UTC (rev 7578) @@ -180,11 +180,11 @@ } $cmd = '/sbin/kernel-reboot'; - if (! is_executable($cmd) || (getPREFdef($global_prefs, 'system_reboot_classic_full') === 'yes')) { + if (! is_executable($cmd) || (getPREFdef($global_prefs, 'system_reboot_classic_full') === 'yes') || $arch === 'genx86_64-vm') { $cmd = '/sbin/reboot'; $count_down_secs += 30; } - + shell($cmd.' -d4 >/dev/null 2>/dev/null &', $status); if ($status == 0) { if ($setup) { Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2016-03-10 14:04:50 UTC (rev 7577) +++ branches/1.0/package/webinterface/altweb/common/version.php 2016-03-10 14:31:12 UTC (rev 7578) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.36'; +$GUI_VERSION = '1.8.37'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-23 17:02:03
|
Revision: 7608 http://sourceforge.net/p/astlinux/code/7608 Author: abelbeck Date: 2016-03-23 17:02:00 +0000 (Wed, 23 Mar 2016) Log Message: ----------- web interface, add unbound to the license-packages, default to HTTPS for mirror.astlinux.org Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/functions.php branches/1.0/package/webinterface/altweb/common/license-packages.txt Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2016-03-23 16:42:13 UTC (rev 7607) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2016-03-23 17:02:00 UTC (rev 7608) @@ -616,7 +616,7 @@ $ver3 = ''; } - $str = 'http://mirror.astlinux.org/'; + $str = 'https://mirror.astlinux.org/'; if ($ver3 === '1.4') { $str .= 'firmware-1.x'; Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-03-23 16:42:13 UTC (rev 7607) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-03-23 17:02:00 UTC (rev 7608) @@ -58,3 +58,4 @@ BusyBox~Copyright (c) 1998-2011 Erik Andersen, Rob Landley, Denys Vlasenko, et al. dhcp6c~Copyright (c) 1998-2008 WIDE Project. htop~Copyright (c) 2004-2012 Hisham Muhammad. +unbound~Copyright (c) 2007-2016, NLnet Labs. All rights reserved. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-11-11 16:08:40
|
Revision: 7945 http://sourceforge.net/p/astlinux/code/7945 Author: abelbeck Date: 2016-11-11 16:08:37 +0000 (Fri, 11 Nov 2016) Log Message: ----------- web interface, Status tab, updated 'Show Licenses' information. Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/license-packages.txt branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-11-11 14:50:16 UTC (rev 7944) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-11-11 16:08:37 UTC (rev 7945) @@ -47,13 +47,13 @@ darkstat~Copyright (c) 2001-2015 Emil Mikulic, et al. NUT~Copyright (c) 1999-2016 Russell Kroll, Arnaud Quette, et al. iftop~Copyright (c) 2002-2014 Paul Warren, Chris Lightfoot, et al. -dnscrypt-proxy~Copyright (c) 2011-2016 Frank Denis -libsodium~Copyright (c) 2013-2016 Frank Denis +dnscrypt-proxy~Copyright (c) 2011-2016 Frank Denis. +libsodium~Copyright (c) 2013-2016 Frank Denis. phoneprov-tools~Copyright (c) 2015-2016 Lonnie Abelbeck and Michael Keuter. smartmontools~Copyright (c) 2002-2016 Bruce Allen, Christian Franke, et al. -Monit~Copyright (c) 2001-2016 Tildeslash. All rights reserved -sqlite~Copyright (c) 1995-2016 SQLite Consortium -sqliteodbc~Copyright (c) 2001-2016 Christian Werner +Monit~Copyright (c) 2001-2016 Tildeslash. All rights reserved. +sqlite~Copyright (c) 1995-2016 SQLite Consortium. +sqliteodbc~Copyright (c) 2001-2016 Christian Werner. Fossil~Copyright (c) 2007-2016 D. Richard Hipp. All rights reserved. BusyBox~Copyright (c) 1998-2011 Erik Andersen, Rob Landley, Denys Vlasenko, et al. dhcp6c~Copyright (c) 1998-2008 WIDE Project with 2016 Debian patches. @@ -62,3 +62,4 @@ unbound~Copyright (c) 2007-2016 NLnet Labs. All rights reserved. avahi~Copyright (c) 2004-2016 Lennart Poettering, Trent Lloyd, Avahi developers. Linux Kernel~Copyright (c) 1997-2016 The Linux Kernel Organization, Inc.; Linux is a Registered Trademark of Linus Torvalds. +whois~Copyright (c) 1999-2016 Marco d'Itri. Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2016-11-11 14:50:16 UTC (rev 7944) +++ branches/1.0/package/webinterface/altweb/common/version.php 2016-11-11 16:08:37 UTC (rev 7945) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.38'; +$GUI_VERSION = '1.8.39'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |