From 803d71524ce666ef2ec4da15177c339d55b7a33f Mon Sep 17 00:00:00 2001 From: gernot Date: Sun, 28 Dec 2003 21:01:04 +0000 Subject: [PATCH] - 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 --- ChangeLog | 5 +++++ TODO | 4 +--- capisuite.spec | 2 +- scripts/cs_helpers.pyin | 4 ++-- scripts/idle.py | 4 ++-- scripts/incoming.py | 6 +++--- src/application/applicationexception.h | 8 ++++---- src/application/capisuite.cpp | 4 ++-- src/application/capisuite.h | 4 ++-- src/application/capisuitemodule.cpp | 4 ++-- src/application/capisuitemodule.h | 4 ++-- src/application/idlescript.cpp | 8 ++++---- src/application/idlescript.h | 8 ++++---- src/application/incomingscript.cpp | 8 ++++---- src/application/incomingscript.h | 8 ++++---- src/application/pythonscript.h | 4 ++-- src/backend/applicationinterface.h | 8 ++++---- src/backend/callinterface.h | 4 ++-- src/backend/capi.cpp | 4 ++-- src/backend/capi.h | 4 ++-- src/backend/capiexception.h | 8 ++++---- src/backend/connection.cpp | 4 ++-- src/backend/connection.h | 4 ++-- src/main.cpp | 8 ++++---- src/modules/audioreceive.cpp | 8 ++------ src/modules/audioreceive.h | 8 ++------ src/modules/audiosend.cpp | 8 ++------ src/modules/audiosend.h | 8 ++------ src/modules/callmodule.cpp | 8 ++------ src/modules/callmodule.h | 8 ++------ src/modules/calloutgoing.cpp | 5 +++-- src/modules/calloutgoing.h | 8 ++------ src/modules/connectmodule.cpp | 8 ++------ src/modules/connectmodule.h | 10 +++++----- src/modules/disconnectmodule.cpp | 8 ++------ src/modules/disconnectmodule.h | 8 ++------ src/modules/faxreceive.cpp | 8 ++------ src/modules/faxreceive.h | 8 ++------ src/modules/faxsend.cpp | 8 ++------ src/modules/faxsend.h | 8 ++------ src/modules/readDTMF.cpp | 8 ++------ src/modules/readDTMF.h | 8 ++------ src/modules/switch2faxG3.cpp | 8 ++------ src/modules/switch2faxG3.h | 8 ++------ 44 files changed, 110 insertions(+), 178 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3b8539b..32744f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-28 Gernot Hillier + * 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 * src/modules/audioreceive.{h,cpp} (AudioReceive,mainLoop), diff --git a/TODO b/TODO index 3746669..52a358f 100644 --- a/TODO +++ b/TODO @@ -2,9 +2,7 @@ NICE: - ?valgrind-clean the used libs and Python? - support more than one send_controller - don't use 34xx codes, define constants instead and print meaningful messages -- include email account check in idly.py -- add docbook -> html to Makefile.am -- any solution for sending fax when having no fax config? +- include email account check in idly.py FUTURE PLANS: - setuid away from root (problem: chown of recorded file to user) diff --git a/capisuite.spec b/capisuite.spec index 24252dd..7a67078 100644 --- a/capisuite.spec +++ b/capisuite.spec @@ -14,7 +14,7 @@ Name: capisuite License: GPL Group: Applications/Communications Autoreqprov: on -Version: 0.4.1 +Version: 0.5 Release: 0 Requires: sfftobmp sox tiff ghostscript-library Summary: ISDN telecommunication suite providing fax and voice services diff --git a/scripts/cs_helpers.pyin b/scripts/cs_helpers.pyin index ef1cbac..47265a6 100644 --- a/scripts/cs_helpers.pyin +++ b/scripts/cs_helpers.pyin @@ -2,7 +2,7 @@ # ----------------------------------------------------------- # copyright : (C) 2002 by Gernot Hillier # email : gernot@hillier.de -# version : $Revision: 1.14 $ +# version : $Revision: 1.15 $ # # 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 @@ -340,7 +340,7 @@ def sayNumber(call,number,curr_user,config): for i in number: 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 # - sendMIMEMail: better wording for some error messages during file conversion # diff --git a/scripts/idle.py b/scripts/idle.py index 9f3415c..4daba3d 100644 --- a/scripts/idle.py +++ b/scripts/idle.py @@ -2,7 +2,7 @@ # --------------------------------------------- # copyright : (C) 2002 by Gernot Hillier # email : gernot@hillier.de -# version : $Revision: 1.11 $ +# version : $Revision: 1.12 $ # # 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 @@ -165,7 +165,7 @@ def movejob(job,olddir,newdir,user): # # History: # -# $Log: idle.py,v $ +# Old Log (for new changes see ChangeLog): # Revision 1.11 2003/12/02 18:50:09 gernot # - fax_numbers is really allowed to be empty now... # diff --git a/scripts/incoming.py b/scripts/incoming.py index ad578b9..3b85a59 100644 --- a/scripts/incoming.py +++ b/scripts/incoming.py @@ -2,7 +2,7 @@ # ---------------------------------------------------- # copyright : (C) 2002 by Gernot Hillier # email : gernot@hillier.de -# version : $Revision: 1.13 $ +# version : $Revision: 1.14 $ # # 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 @@ -418,9 +418,9 @@ def newAnnouncement(call,userdir,curr_user,config): # # History: # -# $Log: incoming.py,v $ +# Old Log (for new changes see ChangeLog): # Revision 1.13 2003/12/01 20:53:05 gernot -# - confused "hiRes" and "loRes". Thx to Ingo Göppert +# - confused "hiRes" and "loRes". Thx to Ingo Goeppert # for the report! # # Revision 1.12 2003/10/03 13:42:09 gernot diff --git a/src/application/applicationexception.h b/src/application/applicationexception.h index f4342c6..249d6e0 100644 --- a/src/application/applicationexception.h +++ b/src/application/applicationexception.h @@ -2,7 +2,7 @@ @brief Contains ApplicationError - Exception class for errors in the application layer @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -70,9 +70,9 @@ inline ostream& operator<<(ostream &s, ApplicationError &e) /* History -$Log: applicationexception.h,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.12 2003/01/19 16:50:27 ghillie - removed severity in exceptions. No FATAL-automatic-exit any more. diff --git a/src/application/capisuite.cpp b/src/application/capisuite.cpp index 35b2271..54f3d2b 100644 --- a/src/application/capisuite.cpp +++ b/src/application/capisuite.cpp @@ -2,7 +2,7 @@ @brief Contains CapiSuite - Main application class, implements ApplicationInterface @author Gernot Hillier - $Revision: 1.5 $ + $Revision: 1.6 $ */ /*************************************************************************** @@ -397,7 +397,7 @@ CapiSuite::help() /* History -$Log: capisuite.cpp,v $ +Old Log (for new changes see ChangeLog): Revision 1.5 2003/04/03 21:09:46 gernot - Capi::getInfo isn't static any longer diff --git a/src/application/capisuite.h b/src/application/capisuite.h index b61a6c9..b56682d 100644 --- a/src/application/capisuite.h +++ b/src/application/capisuite.h @@ -2,7 +2,7 @@ @brief Contains CapiSuite - Main application class, implements ApplicationInterface @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -169,7 +169,7 @@ class CapiSuite: public ApplicationInterface /* History -$Log: capisuite.h,v $ +Old Log (for new changes see ChangeLog): Revision 1.3 2003/02/25 13:23:19 gernot - comment fix - remove old, unused attribute diff --git a/src/application/capisuitemodule.cpp b/src/application/capisuitemodule.cpp index 4a1ebc9..eb3bc40 100644 --- a/src/application/capisuitemodule.cpp +++ b/src/application/capisuitemodule.cpp @@ -2,7 +2,7 @@ @brief Contains the Python module and integration routines @author Gernot Hillier - $Revision: 1.7 $ + $Revision: 1.8 $ */ /*************************************************************************** @@ -987,7 +987,7 @@ capisuitemodule_init () throw (ApplicationError) /* History -$Log: capisuitemodule.cpp,v $ +Old Log (for new changes see ChangeLog): Revision 1.7 2003/08/24 12:49:21 gernot - switch_to_faxG3: return faxInfo structure instead of None diff --git a/src/application/capisuitemodule.h b/src/application/capisuitemodule.h index 508da4b..31ca3a6 100644 --- a/src/application/capisuitemodule.h +++ b/src/application/capisuitemodule.h @@ -14,7 +14,7 @@ found in @ref python. @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -61,7 +61,7 @@ void capisuitemodule_destruct_connection(void* conn); /* History -$Log: capisuitemodule.h,v $ +Old Log (for new changes see ChangeLog): Revision 1.2 2003/02/25 13:24:21 gernot - remove old forward declaration diff --git a/src/application/idlescript.cpp b/src/application/idlescript.cpp index 544ef92..3299f17 100644 --- a/src/application/idlescript.cpp +++ b/src/application/idlescript.cpp @@ -2,7 +2,7 @@ @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -135,9 +135,9 @@ IdleScript::activate() /* History -$Log: idlescript.cpp,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.12 2003/02/10 14:17:09 ghillie merged from NATIVE_PTHREADS to HEAD diff --git a/src/application/idlescript.h b/src/application/idlescript.h index 5f6a78f..e05a3ea 100644 --- a/src/application/idlescript.h +++ b/src/application/idlescript.h @@ -2,7 +2,7 @@ @brief Contains IdleScript - Implements calling of python script in regular intervals for user defined activity (e.g. sending faxes). @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -117,9 +117,9 @@ class IdleScript: public PythonScript /* History -$Log: idlescript.h,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.9 2003/02/10 14:17:09 ghillie merged from NATIVE_PTHREADS to HEAD diff --git a/src/application/incomingscript.cpp b/src/application/incomingscript.cpp index 464977a..1212775 100644 --- a/src/application/incomingscript.cpp +++ b/src/application/incomingscript.cpp @@ -2,7 +2,7 @@ @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -133,9 +133,9 @@ IncomingScript::run() throw() /* History -$Log: incomingscript.cpp,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.9 2003/02/10 14:17:09 ghillie merged from NATIVE_PTHREADS to HEAD diff --git a/src/application/incomingscript.h b/src/application/incomingscript.h index 34d0134..6c44c02 100644 --- a/src/application/incomingscript.h +++ b/src/application/incomingscript.h @@ -2,7 +2,7 @@ @brief Contains IncomingScript - Incoming call handling. One object for each incoming call is created. @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -104,9 +104,9 @@ class IncomingScript: public PythonScript /* History -$Log: incomingscript.h,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.5 2003/02/10 14:17:09 ghillie merged from NATIVE_PTHREADS to HEAD diff --git a/src/application/pythonscript.h b/src/application/pythonscript.h index 8fcbb4d..bced25c 100644 --- a/src/application/pythonscript.h +++ b/src/application/pythonscript.h @@ -2,7 +2,7 @@ @brief Contains PythonScript - Read a python script and call a function in own thread @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -87,7 +87,7 @@ class PythonScript /* History -$Log: pythonscript.h,v $ +Old Log (for new changes see ChangeLog): 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 change for good old gcc-2.95 and gcc3 diff --git a/src/backend/applicationinterface.h b/src/backend/applicationinterface.h index fe3cf5f..d5b97d5 100644 --- a/src/backend/applicationinterface.h +++ b/src/backend/applicationinterface.h @@ -2,7 +2,7 @@ @brief Contains ApplicationInterface - Interface class which is implemented by the main application. @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -47,9 +47,9 @@ class ApplicationInterface /* History -$Log: applicationinterface.h,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.7 2002/12/05 15:55:34 ghillie - removed callCompleted(), application will self-determine when call is completed diff --git a/src/backend/callinterface.h b/src/backend/callinterface.h index f02360c..bd4a97d 100644 --- a/src/backend/callinterface.h +++ b/src/backend/callinterface.h @@ -2,7 +2,7 @@ @brief Contains CallInterface - Interface class for all signals specific to a certain call. @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -88,7 +88,7 @@ class CallInterface /* History -$Log: callinterface.h,v $ +Old Log (for new changes see ChangeLog): Revision 1.2 2003/04/17 10:39:42 gernot - support ALERTING notification (to know when it's ringing on the other side) - cosmetical fixes in capi.cpp diff --git a/src/backend/capi.cpp b/src/backend/capi.cpp index b76313c..41ea7ac 100644 --- a/src/backend/capi.cpp +++ b/src/backend/capi.cpp @@ -2,7 +2,7 @@ @brief Contains Capi - Main Class for communication with CAPI @author Gernot Hillier - $Revision: 1.5 $ + $Revision: 1.6 $ */ /*************************************************************************** @@ -950,7 +950,7 @@ Capi::getInfo(bool verbose) /* History -$Log: capi.cpp,v $ +Old Log (for new changes see ChangeLog): Revision 1.5 2003/04/17 10:39:42 gernot - support ALERTING notification (to know when it's ringing on the other side) - cosmetical fixes in capi.cpp diff --git a/src/backend/capi.h b/src/backend/capi.h index 6ef1cef..502488c 100644 --- a/src/backend/capi.h +++ b/src/backend/capi.h @@ -2,7 +2,7 @@ @brief Contains Capi - Main Class for communication with CAPI @author Gernot Hillier - $Revision: 1.5 $ + $Revision: 1.6 $ */ /*************************************************************************** @@ -440,7 +440,7 @@ class Capi { /* History -$Log: capi.h,v $ +Old Log (for new changes see ChangeLog): Revision 1.5 2003/04/17 10:39:42 gernot - support ALERTING notification (to know when it's ringing on the other side) - cosmetical fixes in capi.cpp diff --git a/src/backend/capiexception.h b/src/backend/capiexception.h index b48266b..2cac2d3 100644 --- a/src/backend/capiexception.h +++ b/src/backend/capiexception.h @@ -1,7 +1,7 @@ /** @file capiexception.h @brief Contains exception classes for errors in the CAPI abstraction layer @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -170,9 +170,9 @@ inline ostream& operator<<(ostream &s, CapiError &e) /* History -$Log: capiexception.h,v $ -Revision 1.1 2003/02/19 08:19:53 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:53 gernot +initial checkin of 0.4 Revision 1.9 2003/01/19 16:50:27 ghillie - removed severity in exceptions. No FATAL-automatic-exit any more. diff --git a/src/backend/connection.cpp b/src/backend/connection.cpp index 0fdd3a6..947d06a 100644 --- a/src/backend/connection.cpp +++ b/src/backend/connection.cpp @@ -2,7 +2,7 @@ @brief Contains Connection - Encapsulates a CAPI connection with all its states and methods. @author Gernot Hillier - $Revision: 1.13 $ + $Revision: 1.14 $ */ /*************************************************************************** @@ -1081,7 +1081,7 @@ Connection::convertToCP437(string &text) /* History -$Log: connection.cpp,v $ +Old Log (for new changes see ChangeLog): Revision 1.13 2003/12/21 21:15:10 gernot * src/backend/connection.cpp (buildBconfiguration): accept color faxes now by setting bit 10 in B3configuration diff --git a/src/backend/connection.h b/src/backend/connection.h index bd5722c..843a247 100644 --- a/src/backend/connection.h +++ b/src/backend/connection.h @@ -2,7 +2,7 @@ @brief Contains Connection - Encapsulates a CAPI connection with all its states and methods. @author Gernot Hillier - $Revision: 1.6 $ + $Revision: 1.7 $ */ /*************************************************************************** @@ -668,7 +668,7 @@ class Connection /* History -$Log: connection.h,v $ +Old Log (for new changes see ChangeLog): Revision 1.6 2003/06/28 12:49:47 gernot - convert fax headline to CP437, so that german umlauts and other special characters will work now diff --git a/src/main.cpp b/src/main.cpp index 9741359..84df768 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,7 +2,7 @@ @brief Contains main(). @author Gernot Hillier - $Revision: 1.1 $ + $Revision: 1.2 $ */ /*************************************************************************** @@ -30,9 +30,9 @@ int main(int argc, char** argv) /* History -$Log: main.cpp,v $ -Revision 1.1 2003/02/19 08:19:52 gernot -Initial revision +Old Log (for new changes see ChangeLog): +Revision 1.1.1.1 2003/02/19 08:19:52 gernot +initial checkin of 0.4 Revision 1.13 2003/02/05 15:59:38 ghillie - moved error handling to capisuite.cpp, so it's logged diff --git a/src/modules/audioreceive.cpp b/src/modules/audioreceive.cpp index 4645483..2209ff3 100644 --- a/src/modules/audioreceive.cpp +++ b/src/modules/audioreceive.cpp @@ -2,7 +2,7 @@ @brief Contains AudioReceive - Call Module for receiving audio. @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -103,11 +103,7 @@ AudioReceive::duration() /* History -$Log: audioreceive.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/audioreceive.h b/src/modules/audioreceive.h index ee0cbd9..9af0d3c 100644 --- a/src/modules/audioreceive.h +++ b/src/modules/audioreceive.h @@ -2,7 +2,7 @@ @brief Contains AudioReceive - Call Module for receiving audio. @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -101,11 +101,7 @@ class AudioReceive: public CallModule /* History -$Log: audioreceive.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/audiosend.cpp b/src/modules/audiosend.cpp index c488c0b..6af1268 100644 --- a/src/modules/audiosend.cpp +++ b/src/modules/audiosend.cpp @@ -2,7 +2,7 @@ @brief Contains AudioSend - Call Module for sending an A-Law file @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -50,11 +50,7 @@ AudioSend::duration() /* History -$Log: audiosend.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/audiosend.h b/src/modules/audiosend.h index 4547331..99f64f8 100644 --- a/src/modules/audiosend.h +++ b/src/modules/audiosend.h @@ -2,7 +2,7 @@ @brief Contains AudioSend - Call Module for sending an A-Law file @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -85,11 +85,7 @@ class AudioSend: public CallModule /* History -$Log: audiosend.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/callmodule.cpp b/src/modules/callmodule.cpp index 13e7ea1..833026f 100644 --- a/src/modules/callmodule.cpp +++ b/src/modules/callmodule.cpp @@ -2,7 +2,7 @@ @brief Contains CallModule - Base class for all call handling modules @author Gernot Hillier - $Revision: 1.4 $ + $Revision: 1.5 $ */ /*************************************************************************** @@ -104,11 +104,7 @@ CallModule::gotDTMF() /* History -$Log: callmodule.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.3 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/callmodule.h b/src/modules/callmodule.h index ea876b8..9a8e4cb 100644 --- a/src/modules/callmodule.h +++ b/src/modules/callmodule.h @@ -2,7 +2,7 @@ @brief Contains CallModule - Base class for all call handling modules @author Gernot Hillier - $Revision: 1.5 $ + $Revision: 1.6 $ */ /*************************************************************************** @@ -141,11 +141,7 @@ class CallModule: public CallInterface /* History -$Log: callmodule.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.4 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/calloutgoing.cpp b/src/modules/calloutgoing.cpp index 4a9a675..4c14ff6 100644 --- a/src/modules/calloutgoing.cpp +++ b/src/modules/calloutgoing.cpp @@ -2,7 +2,7 @@ @brief Contains CallOutgoingModule - Call Module for establishment of an outgoing connection and wait for successful connect @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -75,7 +75,8 @@ CallOutgoing::getResult() /* History -$Log: calloutgoing.cpp,v $ +Old Log (for new changes see ChangeLog): + Revision 1.3 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw call finished exceptions in normal operation any longer; i.e. we only diff --git a/src/modules/calloutgoing.h b/src/modules/calloutgoing.h index 5687607..e6d4a02 100644 --- a/src/modules/calloutgoing.h +++ b/src/modules/calloutgoing.h @@ -2,7 +2,7 @@ @brief Contains CallOutgoing - Call Module for establishment of an outgoing connection and wait for successful connect @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -105,11 +105,7 @@ class CallOutgoing: public CallModule /* History -$Log: calloutgoing.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/04/17 10:52:12 gernot - timeout value is now measured beginning at the moment the other party is diff --git a/src/modules/connectmodule.cpp b/src/modules/connectmodule.cpp index db3098d..2bee561 100644 --- a/src/modules/connectmodule.cpp +++ b/src/modules/connectmodule.cpp @@ -2,7 +2,7 @@ @brief Contains ConnectModule - Call Module for connection establishment at incoming connection @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -38,11 +38,7 @@ ConnectModule::callConnected() /* History -$Log: connectmodule.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/connectmodule.h b/src/modules/connectmodule.h index 677a354..93cec62 100644 --- a/src/modules/connectmodule.h +++ b/src/modules/connectmodule.h @@ -2,7 +2,7 @@ @brief Contains ConnectModule - Call Module for connection establishment at incoming connection @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -67,10 +67,10 @@ class ConnectModule: public CallModule /* History $Log: connectmodule.h,v $ -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.3 2003/12/28 21:01:04 gernot +- reworked TODO, disabled automatic log message adding to source files + +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/disconnectmodule.cpp b/src/modules/disconnectmodule.cpp index fd756c8..ca23300 100644 --- a/src/modules/disconnectmodule.cpp +++ b/src/modules/disconnectmodule.cpp @@ -2,7 +2,7 @@ @brief Contains DisconnectModule - Call Module for call clearing @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -41,11 +41,7 @@ void DisconnectModule::callDisconnectedLogical() /* History -$Log: disconnectmodule.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/disconnectmodule.h b/src/modules/disconnectmodule.h index 3c18671..3655e0d 100644 --- a/src/modules/disconnectmodule.h +++ b/src/modules/disconnectmodule.h @@ -2,7 +2,7 @@ @brief Contains DisconnectModule - Call Module for call clearing @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -67,11 +67,7 @@ class DisconnectModule: public CallModule /* History -$Log: disconnectmodule.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/faxreceive.cpp b/src/modules/faxreceive.cpp index 405d3a9..1493c4f 100644 --- a/src/modules/faxreceive.cpp +++ b/src/modules/faxreceive.cpp @@ -2,7 +2,7 @@ @brief Contains FaxReceive - Call Module for receiving an analog fax (group 3) @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -42,11 +42,7 @@ FaxReceive::transmissionComplete() /* History -$Log: faxreceive.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/faxreceive.h b/src/modules/faxreceive.h index fde4054..ad62cdf 100644 --- a/src/modules/faxreceive.h +++ b/src/modules/faxreceive.h @@ -2,7 +2,7 @@ @brief Contains FaxReceive - Call Module for receiving an analog fax (group 3) @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -74,11 +74,7 @@ class FaxReceive: public CallModule /* History -$Log: faxreceive.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/faxsend.cpp b/src/modules/faxsend.cpp index 12e16e0..47cfa98 100644 --- a/src/modules/faxsend.cpp +++ b/src/modules/faxsend.cpp @@ -2,7 +2,7 @@ @brief Contains FaxSend - Call Module for sending an analog fax (group 3) @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -42,11 +42,7 @@ FaxSend::transmissionComplete() /* History -$Log: faxsend.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/faxsend.h b/src/modules/faxsend.h index 6b640f6..3a9d00b 100644 --- a/src/modules/faxsend.h +++ b/src/modules/faxsend.h @@ -2,7 +2,7 @@ @brief Contains FaxSend - Call Module for sending an analog fax (group 3) @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -75,11 +75,7 @@ class FaxSend: public CallModule /* History -$Log: faxsend.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4 diff --git a/src/modules/readDTMF.cpp b/src/modules/readDTMF.cpp index af5d07b..9289d2a 100644 --- a/src/modules/readDTMF.cpp +++ b/src/modules/readDTMF.cpp @@ -2,7 +2,7 @@ @brief Contains ReadDTMF - Call Module for waiting for DTMF signals @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -61,11 +61,7 @@ ReadDTMF::callDisconnectedLogical() /* History -$Log: readDTMF.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/readDTMF.h b/src/modules/readDTMF.h index dd73ab1..7547f9d 100644 --- a/src/modules/readDTMF.h +++ b/src/modules/readDTMF.h @@ -2,7 +2,7 @@ @brief Contains ReadDTMF - Call Module for waiting for DTMF signals @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -89,11 +89,7 @@ class ReadDTMF: public CallModule /* History -$Log: readDTMF.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/switch2faxG3.cpp b/src/modules/switch2faxG3.cpp index 55f094e..81de9bf 100644 --- a/src/modules/switch2faxG3.cpp +++ b/src/modules/switch2faxG3.cpp @@ -2,7 +2,7 @@ @brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one. @author Gernot Hillier - $Revision: 1.3 $ + $Revision: 1.4 $ */ /*************************************************************************** @@ -47,11 +47,7 @@ Switch2FaxG3::callConnected() /* History -$Log: switch2faxG3.cpp,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.2 2003/10/03 14:56:40 gernot - partly implementation of a bigger semantic change: don't throw diff --git a/src/modules/switch2faxG3.h b/src/modules/switch2faxG3.h index 06915cb..daf3464 100644 --- a/src/modules/switch2faxG3.h +++ b/src/modules/switch2faxG3.h @@ -2,7 +2,7 @@ @brief Contains Switch2FaxG3 - Call Module for switching to FAXG3 service from another one. @author Gernot Hillier - $Revision: 1.2 $ + $Revision: 1.3 $ */ /*************************************************************************** @@ -73,11 +73,7 @@ class Switch2FaxG3: public CallModule /* History -$Log: switch2faxG3.h,v $ -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 +Old Log (for new changes see ChangeLog): Revision 1.1.1.1 2003/02/19 08:19:53 gernot initial checkin of 0.4