- reworked TODO, disabled automatic log message adding to source files

git-svn-id: https://svn.ibp.de/svn/capisuite/trunk/capisuite@197 4ebea2bb-67d4-0310-8558-a5799e421b66
This commit is contained in:
gernot 2003-12-28 21:01:04 +00:00
parent d2af0286cd
commit 803d71524c
44 changed files with 110 additions and 178 deletions

View File

@ -1,3 +1,8 @@
2003-12-28 Gernot Hillier <gernot@hillier.de>
* nearly all files (history block): disabled the automatic
adding of CVS log messages to source files as we now have
this nice ChangeLog file
2003-12-28 Gernot Hillier <gernot@hillier.de> 2003-12-28 Gernot Hillier <gernot@hillier.de>
* src/modules/audioreceive.{h,cpp} (AudioReceive,mainLoop), * src/modules/audioreceive.{h,cpp} (AudioReceive,mainLoop),

4
TODO
View File

@ -2,9 +2,7 @@ NICE:
- ?valgrind-clean the used libs and Python? - ?valgrind-clean the used libs and Python?
- support more than one send_controller - support more than one send_controller
- don't use 34xx codes, define constants instead and print meaningful messages - don't use 34xx codes, define constants instead and print meaningful messages
- include email account check in idly.py - include email account check in idly.py
- add docbook -> html to Makefile.am
- any solution for sending fax when having no fax config?
FUTURE PLANS: FUTURE PLANS:
- setuid away from root (problem: chown of recorded file to user) - setuid away from root (problem: chown of recorded file to user)

View File

@ -14,7 +14,7 @@ Name: capisuite
License: GPL License: GPL
Group: Applications/Communications Group: Applications/Communications
Autoreqprov: on Autoreqprov: on
Version: 0.4.1 Version: 0.5
Release: 0 Release: 0
Requires: sfftobmp sox tiff ghostscript-library Requires: sfftobmp sox tiff ghostscript-library
Summary: ISDN telecommunication suite providing fax and voice services Summary: ISDN telecommunication suite providing fax and voice services

View File

@ -2,7 +2,7 @@
# ----------------------------------------------------------- # -----------------------------------------------------------
# copyright : (C) 2002 by Gernot Hillier # copyright : (C) 2002 by Gernot Hillier
# email : gernot@hillier.de # email : gernot@hillier.de
# version : $Revision: 1.14 $ # version : $Revision: 1.15 $
# #
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -340,7 +340,7 @@ def sayNumber(call,number,curr_user,config):
for i in number: for i in number:
capisuite.audio_send(call,getAudio(config,curr_user,i+".la"),1) capisuite.audio_send(call,getAudio(config,curr_user,i+".la"),1)
# $Log: cs_helpers.pyin,v $ # Old Log (for new changes see ChangeLog):
# Revision 1.14 2003/10/19 20:17:54 gernot # Revision 1.14 2003/10/19 20:17:54 gernot
# - sendMIMEMail: better wording for some error messages during file conversion # - sendMIMEMail: better wording for some error messages during file conversion
# #

View File

@ -2,7 +2,7 @@
# --------------------------------------------- # ---------------------------------------------
# copyright : (C) 2002 by Gernot Hillier # copyright : (C) 2002 by Gernot Hillier
# email : gernot@hillier.de # email : gernot@hillier.de
# version : $Revision: 1.11 $ # version : $Revision: 1.12 $
# #
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -165,7 +165,7 @@ def movejob(job,olddir,newdir,user):
# #
# History: # History:
# #
# $Log: idle.py,v $ # Old Log (for new changes see ChangeLog):
# Revision 1.11 2003/12/02 18:50:09 gernot # Revision 1.11 2003/12/02 18:50:09 gernot
# - fax_numbers is really allowed to be empty now... # - fax_numbers is really allowed to be empty now...
# #

View File

@ -2,7 +2,7 @@
# ---------------------------------------------------- # ----------------------------------------------------
# copyright : (C) 2002 by Gernot Hillier # copyright : (C) 2002 by Gernot Hillier
# email : gernot@hillier.de # email : gernot@hillier.de
# version : $Revision: 1.13 $ # version : $Revision: 1.14 $
# #
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -418,9 +418,9 @@ def newAnnouncement(call,userdir,curr_user,config):
# #
# History: # History:
# #
# $Log: incoming.py,v $ # Old Log (for new changes see ChangeLog):
# Revision 1.13 2003/12/01 20:53:05 gernot # Revision 1.13 2003/12/01 20:53:05 gernot
# - confused "hiRes" and "loRes". Thx to Ingo Göppert <Ingo.Goeppert@gmx.de> # - confused "hiRes" and "loRes". Thx to Ingo Goeppert <Ingo.Goeppert@gmx.de>
# for the report! # for the report!
# #
# Revision 1.12 2003/10/03 13:42:09 gernot # Revision 1.12 2003/10/03 13:42:09 gernot

View File

@ -2,7 +2,7 @@
@brief Contains ApplicationError - Exception class for errors in the application layer @brief Contains ApplicationError - Exception class for errors in the application layer
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -70,9 +70,9 @@ inline ostream& operator<<(ostream &s, ApplicationError &e)
/* History /* History
$Log: applicationexception.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.12 2003/01/19 16:50:27 ghillie Revision 1.12 2003/01/19 16:50:27 ghillie
- removed severity in exceptions. No FATAL-automatic-exit any more. - removed severity in exceptions. No FATAL-automatic-exit any more.

View File

@ -2,7 +2,7 @@
@brief Contains CapiSuite - Main application class, implements ApplicationInterface @brief Contains CapiSuite - Main application class, implements ApplicationInterface
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.5 $ $Revision: 1.6 $
*/ */
/*************************************************************************** /***************************************************************************
@ -397,7 +397,7 @@ CapiSuite::help()
/* History /* History
$Log: capisuite.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.5 2003/04/03 21:09:46 gernot Revision 1.5 2003/04/03 21:09:46 gernot
- Capi::getInfo isn't static any longer - Capi::getInfo isn't static any longer

View File

@ -2,7 +2,7 @@
@brief Contains CapiSuite - Main application class, implements ApplicationInterface @brief Contains CapiSuite - Main application class, implements ApplicationInterface
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -169,7 +169,7 @@ class CapiSuite: public ApplicationInterface
/* History /* History
$Log: capisuite.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/02/25 13:23:19 gernot Revision 1.3 2003/02/25 13:23:19 gernot
- comment fix - comment fix
- remove old, unused attribute - remove old, unused attribute

View File

@ -2,7 +2,7 @@
@brief Contains the Python module and integration routines @brief Contains the Python module and integration routines
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.7 $ $Revision: 1.8 $
*/ */
/*************************************************************************** /***************************************************************************
@ -987,7 +987,7 @@ capisuitemodule_init () throw (ApplicationError)
/* History /* History
$Log: capisuitemodule.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.7 2003/08/24 12:49:21 gernot Revision 1.7 2003/08/24 12:49:21 gernot
- switch_to_faxG3: return faxInfo structure instead of None - switch_to_faxG3: return faxInfo structure instead of None

View File

@ -14,7 +14,7 @@
found in @ref python. found in @ref python.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -61,7 +61,7 @@ void capisuitemodule_destruct_connection(void* conn);
/* History /* History
$Log: capisuitemodule.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/02/25 13:24:21 gernot Revision 1.2 2003/02/25 13:24:21 gernot
- remove old forward declaration - remove old forward declaration

View File

@ -2,7 +2,7 @@
@brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -135,9 +135,9 @@ IdleScript::activate()
/* History /* History
$Log: idlescript.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.12 2003/02/10 14:17:09 ghillie Revision 1.12 2003/02/10 14:17:09 ghillie
merged from NATIVE_PTHREADS to HEAD merged from NATIVE_PTHREADS to HEAD

View File

@ -2,7 +2,7 @@
@brief Contains IdleScript - Implements calling of python script in regular intervals for user defined activity (e.g. sending faxes). @brief Contains IdleScript - Implements calling of python script in regular intervals for user defined activity (e.g. sending faxes).
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -117,9 +117,9 @@ class IdleScript: public PythonScript
/* History /* History
$Log: idlescript.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.9 2003/02/10 14:17:09 ghillie Revision 1.9 2003/02/10 14:17:09 ghillie
merged from NATIVE_PTHREADS to HEAD merged from NATIVE_PTHREADS to HEAD

View File

@ -2,7 +2,7 @@
@brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -133,9 +133,9 @@ IncomingScript::run() throw()
/* History /* History
$Log: incomingscript.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.9 2003/02/10 14:17:09 ghillie Revision 1.9 2003/02/10 14:17:09 ghillie
merged from NATIVE_PTHREADS to HEAD merged from NATIVE_PTHREADS to HEAD

View File

@ -2,7 +2,7 @@
@brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -104,9 +104,9 @@ class IncomingScript: public PythonScript
/* History /* History
$Log: incomingscript.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.5 2003/02/10 14:17:09 ghillie Revision 1.5 2003/02/10 14:17:09 ghillie
merged from NATIVE_PTHREADS to HEAD merged from NATIVE_PTHREADS to HEAD

View File

@ -2,7 +2,7 @@
@brief Contains PythonScript - Read a python script and call a function in own thread @brief Contains PythonScript - Read a python script and call a function in own thread
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -87,7 +87,7 @@ class PythonScript
/* History /* History
$Log: pythonscript.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/03/21 23:09:59 gernot Revision 1.2 2003/03/21 23:09:59 gernot
- included autoconf tests for gcc-2.95 problems so that it will compile w/o - included autoconf tests for gcc-2.95 problems so that it will compile w/o
change for good old gcc-2.95 and gcc3 change for good old gcc-2.95 and gcc3

View File

@ -2,7 +2,7 @@
@brief Contains ApplicationInterface - Interface class which is implemented by the main application. @brief Contains ApplicationInterface - Interface class which is implemented by the main application.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -47,9 +47,9 @@ class ApplicationInterface
/* History /* History
$Log: applicationinterface.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.7 2002/12/05 15:55:34 ghillie Revision 1.7 2002/12/05 15:55:34 ghillie
- removed callCompleted(), application will self-determine when call is completed - removed callCompleted(), application will self-determine when call is completed

View File

@ -2,7 +2,7 @@
@brief Contains CallInterface - Interface class for all signals specific to a certain call. @brief Contains CallInterface - Interface class for all signals specific to a certain call.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -88,7 +88,7 @@ class CallInterface
/* History /* History
$Log: callinterface.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/04/17 10:39:42 gernot Revision 1.2 2003/04/17 10:39:42 gernot
- support ALERTING notification (to know when it's ringing on the other side) - support ALERTING notification (to know when it's ringing on the other side)
- cosmetical fixes in capi.cpp - cosmetical fixes in capi.cpp

View File

@ -2,7 +2,7 @@
@brief Contains Capi - Main Class for communication with CAPI @brief Contains Capi - Main Class for communication with CAPI
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.5 $ $Revision: 1.6 $
*/ */
/*************************************************************************** /***************************************************************************
@ -950,7 +950,7 @@ Capi::getInfo(bool verbose)
/* History /* History
$Log: capi.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.5 2003/04/17 10:39:42 gernot Revision 1.5 2003/04/17 10:39:42 gernot
- support ALERTING notification (to know when it's ringing on the other side) - support ALERTING notification (to know when it's ringing on the other side)
- cosmetical fixes in capi.cpp - cosmetical fixes in capi.cpp

View File

@ -2,7 +2,7 @@
@brief Contains Capi - Main Class for communication with CAPI @brief Contains Capi - Main Class for communication with CAPI
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.5 $ $Revision: 1.6 $
*/ */
/*************************************************************************** /***************************************************************************
@ -440,7 +440,7 @@ class Capi {
/* History /* History
$Log: capi.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.5 2003/04/17 10:39:42 gernot Revision 1.5 2003/04/17 10:39:42 gernot
- support ALERTING notification (to know when it's ringing on the other side) - support ALERTING notification (to know when it's ringing on the other side)
- cosmetical fixes in capi.cpp - cosmetical fixes in capi.cpp

View File

@ -1,7 +1,7 @@
/** @file capiexception.h /** @file capiexception.h
@brief Contains exception classes for errors in the CAPI abstraction layer @brief Contains exception classes for errors in the CAPI abstraction layer
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -170,9 +170,9 @@ inline ostream& operator<<(ostream &s, CapiError &e)
/* History /* History
$Log: capiexception.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
Initial revision initial checkin of 0.4
Revision 1.9 2003/01/19 16:50:27 ghillie Revision 1.9 2003/01/19 16:50:27 ghillie
- removed severity in exceptions. No FATAL-automatic-exit any more. - removed severity in exceptions. No FATAL-automatic-exit any more.

View File

@ -2,7 +2,7 @@
@brief Contains Connection - Encapsulates a CAPI connection with all its states and methods. @brief Contains Connection - Encapsulates a CAPI connection with all its states and methods.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.13 $ $Revision: 1.14 $
*/ */
/*************************************************************************** /***************************************************************************
@ -1081,7 +1081,7 @@ Connection::convertToCP437(string &text)
/* History /* History
$Log: connection.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.13 2003/12/21 21:15:10 gernot Revision 1.13 2003/12/21 21:15:10 gernot
* src/backend/connection.cpp (buildBconfiguration): accept * src/backend/connection.cpp (buildBconfiguration): accept
color faxes now by setting bit 10 in B3configuration color faxes now by setting bit 10 in B3configuration

View File

@ -2,7 +2,7 @@
@brief Contains Connection - Encapsulates a CAPI connection with all its states and methods. @brief Contains Connection - Encapsulates a CAPI connection with all its states and methods.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.6 $ $Revision: 1.7 $
*/ */
/*************************************************************************** /***************************************************************************
@ -668,7 +668,7 @@ class Connection
/* History /* History
$Log: connection.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.6 2003/06/28 12:49:47 gernot Revision 1.6 2003/06/28 12:49:47 gernot
- convert fax headline to CP437, so that german umlauts and other special - convert fax headline to CP437, so that german umlauts and other special
characters will work now characters will work now

View File

@ -2,7 +2,7 @@
@brief Contains main(). @brief Contains main().
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.1 $ $Revision: 1.2 $
*/ */
/*************************************************************************** /***************************************************************************
@ -30,9 +30,9 @@ int main(int argc, char** argv)
/* History /* History
$Log: main.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.1 2003/02/19 08:19:52 gernot Revision 1.1.1.1 2003/02/19 08:19:52 gernot
Initial revision initial checkin of 0.4
Revision 1.13 2003/02/05 15:59:38 ghillie Revision 1.13 2003/02/05 15:59:38 ghillie
- moved error handling to capisuite.cpp, so it's logged - moved error handling to capisuite.cpp, so it's logged

View File

@ -2,7 +2,7 @@
@brief Contains AudioReceive - Call Module for receiving audio. @brief Contains AudioReceive - Call Module for receiving audio.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -103,11 +103,7 @@ AudioReceive::duration()
/* History /* History
$Log: audioreceive.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains AudioReceive - Call Module for receiving audio. @brief Contains AudioReceive - Call Module for receiving audio.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -101,11 +101,7 @@ class AudioReceive: public CallModule
/* History /* History
$Log: audioreceive.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains AudioSend - Call Module for sending an A-Law file @brief Contains AudioSend - Call Module for sending an A-Law file
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -50,11 +50,7 @@ AudioSend::duration()
/* History /* History
$Log: audiosend.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains AudioSend - Call Module for sending an A-Law file @brief Contains AudioSend - Call Module for sending an A-Law file
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -85,11 +85,7 @@ class AudioSend: public CallModule
/* History /* History
$Log: audiosend.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains CallModule - Base class for all call handling modules @brief Contains CallModule - Base class for all call handling modules
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.4 $ $Revision: 1.5 $
*/ */
/*************************************************************************** /***************************************************************************
@ -104,11 +104,7 @@ CallModule::gotDTMF()
/* History /* History
$Log: callmodule.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.4 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.3 2003/10/03 14:56:40 gernot Revision 1.3 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains CallModule - Base class for all call handling modules @brief Contains CallModule - Base class for all call handling modules
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.5 $ $Revision: 1.6 $
*/ */
/*************************************************************************** /***************************************************************************
@ -141,11 +141,7 @@ class CallModule: public CallInterface
/* History /* History
$Log: callmodule.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.5 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.4 2003/10/03 14:56:40 gernot Revision 1.4 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains CallOutgoingModule - Call Module for establishment of an outgoing connection and wait for successful connect @brief Contains CallOutgoingModule - Call Module for establishment of an outgoing connection and wait for successful connect
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -75,7 +75,8 @@ CallOutgoing::getResult()
/* History /* History
$Log: calloutgoing.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/10/03 14:56:40 gernot Revision 1.3 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw
call finished exceptions in normal operation any longer; i.e. we only call finished exceptions in normal operation any longer; i.e. we only

View File

@ -2,7 +2,7 @@
@brief Contains CallOutgoing - Call Module for establishment of an outgoing connection and wait for successful connect @brief Contains CallOutgoing - Call Module for establishment of an outgoing connection and wait for successful connect
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -105,11 +105,7 @@ class CallOutgoing: public CallModule
/* History /* History
$Log: calloutgoing.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/04/17 10:52:12 gernot Revision 1.2 2003/04/17 10:52:12 gernot
- timeout value is now measured beginning at the moment the other party is - timeout value is now measured beginning at the moment the other party is

View File

@ -2,7 +2,7 @@
@brief Contains ConnectModule - Call Module for connection establishment at incoming connection @brief Contains ConnectModule - Call Module for connection establishment at incoming connection
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -38,11 +38,7 @@ ConnectModule::callConnected()
/* History /* History
$Log: connectmodule.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains ConnectModule - Call Module for connection establishment at incoming connection @brief Contains ConnectModule - Call Module for connection establishment at incoming connection
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -67,10 +67,10 @@ class ConnectModule: public CallModule
/* History /* History
$Log: connectmodule.h,v $ $Log: connectmodule.h,v $
Revision 1.2 2003/12/28 15:00:35 gernot Revision 1.3 2003/12/28 21:01:04 gernot
* rework of exception handling stuff; many modules were not - reworked TODO, disabled automatic log message adding to source files
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect Old Log (for new changes see ChangeLog):
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains DisconnectModule - Call Module for call clearing @brief Contains DisconnectModule - Call Module for call clearing
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -41,11 +41,7 @@ void DisconnectModule::callDisconnectedLogical()
/* History /* History
$Log: disconnectmodule.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains DisconnectModule - Call Module for call clearing @brief Contains DisconnectModule - Call Module for call clearing
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -67,11 +67,7 @@ class DisconnectModule: public CallModule
/* History /* History
$Log: disconnectmodule.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains FaxReceive - Call Module for receiving an analog fax (group 3) @brief Contains FaxReceive - Call Module for receiving an analog fax (group 3)
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -42,11 +42,7 @@ FaxReceive::transmissionComplete()
/* History /* History
$Log: faxreceive.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains FaxReceive - Call Module for receiving an analog fax (group 3) @brief Contains FaxReceive - Call Module for receiving an analog fax (group 3)
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -74,11 +74,7 @@ class FaxReceive: public CallModule
/* History /* History
$Log: faxreceive.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains FaxSend - Call Module for sending an analog fax (group 3) @brief Contains FaxSend - Call Module for sending an analog fax (group 3)
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -42,11 +42,7 @@ FaxSend::transmissionComplete()
/* History /* History
$Log: faxsend.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains FaxSend - Call Module for sending an analog fax (group 3) @brief Contains FaxSend - Call Module for sending an analog fax (group 3)
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -75,11 +75,7 @@ class FaxSend: public CallModule
/* History /* History
$Log: faxsend.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4

View File

@ -2,7 +2,7 @@
@brief Contains ReadDTMF - Call Module for waiting for DTMF signals @brief Contains ReadDTMF - Call Module for waiting for DTMF signals
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -61,11 +61,7 @@ ReadDTMF::callDisconnectedLogical()
/* History /* History
$Log: readDTMF.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains ReadDTMF - Call Module for waiting for DTMF signals @brief Contains ReadDTMF - Call Module for waiting for DTMF signals
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -89,11 +89,7 @@ class ReadDTMF: public CallModule
/* History /* History
$Log: readDTMF.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one. @brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.3 $ $Revision: 1.4 $
*/ */
/*************************************************************************** /***************************************************************************
@ -47,11 +47,7 @@ Switch2FaxG3::callConnected()
/* History /* History
$Log: switch2faxG3.cpp,v $ Old Log (for new changes see ChangeLog):
Revision 1.3 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.2 2003/10/03 14:56:40 gernot Revision 1.2 2003/10/03 14:56:40 gernot
- partly implementation of a bigger semantic change: don't throw - partly implementation of a bigger semantic change: don't throw

View File

@ -2,7 +2,7 @@
@brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one. @brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one.
@author Gernot Hillier <gernot@hillier.de> @author Gernot Hillier <gernot@hillier.de>
$Revision: 1.2 $ $Revision: 1.3 $
*/ */
/*************************************************************************** /***************************************************************************
@ -73,11 +73,7 @@ class Switch2FaxG3: public CallModule
/* History /* History
$Log: switch2faxG3.h,v $ Old Log (for new changes see ChangeLog):
Revision 1.2 2003/12/28 15:00:35 gernot
* rework of exception handling stuff; many modules were not
declaring thrown exceptions correctly any more after the
re-structuring to not throw exceptions on any disconnect
Revision 1.1.1.1 2003/02/19 08:19:53 gernot Revision 1.1.1.1 2003/02/19 08:19:53 gernot
initial checkin of 0.4 initial checkin of 0.4