Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7159807
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/callcontrol/__init__.py b/callcontrol/__init__.py
index cc8ebac..bbef468 100644
--- a/callcontrol/__init__.py
+++ b/callcontrol/__init__.py
@@ -1,25 +1,25 @@
# Copyright (C) 2005-2010 AG-Projects. See LICENSE for details.
#
"""SIP Callcontrol"""
-__version__ = "2.0.11"
+__version__ = "2.0.12"
configuration_filename = 'config.ini'
backup_calls_file = 'calls.dat'
package_requirements = {'python-application': '1.2.8'}
try:
from application.dependency import ApplicationDependencies
except:
class DependencyError(Exception): pass
class ApplicationDependencies(object):
def __init__(self, *args, **kwargs):
pass
def check(self):
raise DependencyError("need python-application version %s or higher but it's not installed" % package_requirements['python-application'])
dependencies = ApplicationDependencies(**package_requirements)
diff --git a/debian/changelog b/debian/changelog
index ad0873c..c93bda2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,153 +1,160 @@
+callcontrol (2.0.12) unstable; urgency=low
+
+ * Adapted to latest changes in python-application
+ * Reworked Debian packaging
+
+ -- Saul Ibarra <saul@ag-projects.com> Fri, 10 Jun 2011 12:07:07 +0200
+
callcontrol (2.0.11) unstable; urgency=low
* Improved response handling from rating engine to give clearer errors
* Fixed RadiusDatabase.table setting for python-application >= 1.1.2
* Fixed except clause missing parentheses
* Bumped Standards-Version to 3.9.1
-- Lucian Stanescu <luci@ag-projects.com> Tue, 31 Aug 2010 17:57:50 +0300
callcontrol (2.0.10) unstable; urgency=low
* Fixed handling of free prepaid calls when a global limit is in place
-- Lucian Stanescu <luci@ag-projects.com> Wed, 19 May 2010 15:38:42 +0100
callcontrol (2.0.9) unstable; urgency=low
* Improved prepaid call handling by also checking OpenSIPS's prepaid flag
* Removed unused exceptions
* Updated copyright years
* Added $remote_fs to Required-Start and Required-Stop in init script
* Bumped Standards-Version to 3.8.4
-- Lucian Stanescu <luci@ag-projects.com> Tue, 09 Feb 2010 17:48:34 +0000
callcontrol (2.0.8) unstable; urgency=low
* Fixed issue with pending calls after startup when dialog detection is used
* Improved resilience to calls which are not terminated by OpenSIPS
* Fixed handling of MaxSessionTime response from CDRTool
* Added dependency on python (>= 2.5)
* Fixed radius query generation
-- Lucian Stanescu <luci@ag-projects.com> Thu, 10 Dec 2009 19:37:42 +0000
callcontrol (2.0.7) unstable; urgency=low
* Fixed typos and variable references by wrong name
* Removed unused imports
* Fixed handling of diverted calls
* Bumped Standards-Version to 3.8.3
-- Lucian Stanescu <luci@ag-projects.com> Tue, 01 Dec 2009 19:18:06 +0000
callcontrol (2.0.6) unstable; urgency=low
* Replaced python-all-dev build dependency with python
* Replaced use of deprecated __configfile__ with __cfgfile__
* Added dependency checking using application.dependency
* Replaced use of deprecated mode argument of listenUNIX with chmod
* Modified config.ini.sample to reflect the need for doubling percent signs
-- Lucian Stanescu <luci@ag-projects.com> Thu, 30 Jul 2009 15:40:24 +0300
callcontrol (2.0.5) unstable; urgency=low
* Replaced use of deprecated _datatypes attribute with ConfigSetting
* Replaced use of print statement with log.error
* Fixed handling of debug option of daemon
* Fixed use of process.system_config_directory
* Replaced use of read_settings with ConfigSection attributes
* Updated dependency on python-application to >= 1.1.2
-- Lucian Stanescu <luci@ag-projects.com> Wed, 15 Jul 2009 23:02:31 +0300
callcontrol (2.0.4) unstable; urgency=low
* Removed postinst script since cdbs executes dh programs in correct order
* Removed deprecated python-application attributes in configuration types
* Fixed debian package to not create /var/run/callcontrol
* Fixed debian/copyright to point to GPLv2
* Replaced reference to LGPL with GPL in debian/copyright
* Removed Lock=1 from rating engine MaxSessionTime request
* Fixed typo in loading of calls data
* Replaced use of deprecated startSyslog function with start_syslog
* Bumped Standards-Version to 3.8.2
-- Lucian Stanescu <luci@ag-projects.com> Wed, 01 Jul 2009 10:55:33 +0300
callcontrol (2.0.3) unstable; urgency=low
* Fixed call restore when radius database is not in use
* Made prepaid_limit default to limit option rather than None.
* Removed provider determination code
-- Lucian Stanescu <luci@ag-projects.com> Wed, 17 Dec 2008 15:28:47 +0000
callcontrol (2.0.2) unstable; urgency=low
[ Lucian Stanescu ]
* Fixed error handling in response from rating engine
[ Adrian Georgescu ]
* Update install documentation and sample opensips configuration
* Added authors and home page
* Added help about control commands
* Added help for init.d script about terminating a session
-- Lucian Stanescu <luci@ag-projects.com> Tue, 16 Dec 2008 15:37:14 +0000
callcontrol (2.0.1) unstable; urgency=low
* Set supported python version to minimum 2.4
* Fixed result from debug command when there is no output
* Added option for not using the radius database to detect timedout sessions
-- Lucian Stanescu <luci@ag-projects.com> Sat, 13 Dec 2008 16:51:28 +0000
callcontrol (2.0.0) unstable; urgency=low
[ Lucian Stanescu ]
* Adapt the application to using the dialog module for sending BYEs
* Add setting to limit the session time of prepaid calls
* Change logging output to show destination
* Do not lose requests sent to the rating engine
* Do not retransmit the first MaxSessionTime as this will cause openser to wait
* Fixed bugs related to exceptions getting thrown in connectionLost and RatingEngineProtocol._respond
* Made debug answer's format consistent: \r\n terminated lines with
message ending in a blank line
* Only check for 'timeout' value in mediaInfo database field
[ Adrian Georgescu ]
* Added INSTALL and LICENSE files
* Updated documentation
-- Lucian Stanescu <luci@ag-projects.com> Thu, 06 Nov 2008 15:48:29 +0100
callcontrol (1.5.2) unstable; urgency=low
* Send BYEs for timed-out calls
-- Adrian Georgescu <adigeo@ag-projects.com> Mon, 21 Jul 2008 17:59:13 +0200
callcontrol (1.5.1) unstable; urgency=low
* Fixed missing import statement
-- Lucian Stanescu <luci@ag-projects.com> Fri, 16 May 2008 15:42:24 +0200
callcontrol (1.5.0) unstable; urgency=low
* Migrating the entire application to python twisted.
* Changed protocol between opensips call control module and call control
application to use a persistent connection. Module sends a multiple
CRLF-terminated line message, with a single empty CRLF-terminated line
signaling end of message; the application responds with a single
CRLF-terminated line.
* Added commands to the call control opensips module - call control
application which are used by the init script to show a list of
sessions and session details.
-- Lucian Stanescu <luci@ag-projects.com> Thu, 15 May 2008 11:36:37 +0200
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Nov 23, 12:51 PM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409179
Default Alt Text
(7 KB)
Attached To
Mode
rCC Call control
Attached
Detach File
Event Timeline
Log In to Comment