You can subscribe to this list here.
2002 |
Jan
|
Feb
(44) |
Mar
(51) |
Apr
(11) |
May
(5) |
Jun
(1) |
Jul
(19) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(3) |
Feb
|
Mar
|
Apr
(24) |
May
(37) |
Jun
(23) |
Jul
(14) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(17) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2005 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(3) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(7) |
Dec
|
From: Asbjorn M. <ste...@us...> - 2002-02-07 18:59:52
|
Update of /cvsroot/epp-rtk/epp-rtk/c++/src/data In directory usw-pr-cvs1:/tmp/cvs-serv10721/data Modified Files: epp_domaindata.h epp_domainXMLbase.cc Log Message: Added ACTIVE status to epp_DomainStatusType. This is not following the EPP-standard, but as .info is using ACTIVE (instead of OK?), this change is helpful for anyone trying to connect to their registry. Index: epp_domaindata.h =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_domaindata.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** epp_domaindata.h 9 Jul 2001 14:17:18 -0000 1.3 --- epp_domaindata.h 7 Feb 2002 18:59:49 -0000 1.4 *************** *** 49,52 **** --- 49,53 ---- CLIENT_LOCK, CLIENT_TRANSFER_PROHIBITED, + ACTIVE, }; typedef refcnt_ptr<epp_DomainStatusType> epp_DomainStatusType_ref; Index: epp_domainXMLbase.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_domainXMLbase.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** epp_domainXMLbase.cc 12 Jul 2001 12:42:44 -0000 1.4 --- epp_domainXMLbase.cc 7 Feb 2002 18:59:49 -0000 1.5 *************** *** 113,116 **** --- 113,117 ---- domainStatusTypeMap[CLIENT_LOCK] = "clientLock"; domainStatusTypeMap[CLIENT_TRANSFER_PROHIBITED] = "clientTransferProhibited"; + domainStatusTypeMap[ACTIVE] = "active"; if(domainStatusTypeMap.find(statusType) == domainStatusTypeMap.end()) *************** *** 138,141 **** --- 139,143 ---- domainStatusTypeMap["clientLock"] = CLIENT_LOCK; domainStatusTypeMap["clientTransferProhibited"] = CLIENT_TRANSFER_PROHIBITED; + domainStatusTypeMap["active"] = ACTIVE; if(domainStatusTypeMap.find(statusType) == domainStatusTypeMap.end()) |
From: Asbjorn M. <ste...@us...> - 2002-02-07 18:59:52
|
Update of /cvsroot/epp-rtk/epp-rtk/c++/src In directory usw-pr-cvs1:/tmp/cvs-serv10721 Modified Files: main_domaininfo.cc Log Message: Added ACTIVE status to epp_DomainStatusType. This is not following the EPP-standard, but as .info is using ACTIVE (instead of OK?), this change is helpful for anyone trying to connect to their registry. Index: main_domaininfo.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/main_domaininfo.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main_domaininfo.cc 13 Jul 2001 13:56:46 -0000 1.5 --- main_domaininfo.cc 7 Feb 2002 18:59:48 -0000 1.6 *************** *** 76,79 **** --- 76,80 ---- case CLIENT_LOCK: status = "CLIENT_LOCK"; break; case CLIENT_TRANSFER_PROHIBITED: status = "CLIENT_TRANSFER_PROHIBITED"; break; + case ACTIVE: status = "ACTIVE"; break; default: status = "**UNKNOWN**"; } |
From: Asbjorn M. <ste...@us...> - 2002-02-07 18:19:53
|
Update of /cvsroot/epp-rtk/epp-rtk/c++/src In directory usw-pr-cvs1:/tmp/cvs-serv32543 Modified Files: epp_ContactCreate.cc epp_ContactInfo.cc epp_ContactUpdate.cc main_contactcreate.cc main_contactinfo.cc main_contactupdate.cc Log Message: * Changed references to epp_ContactVoice to epp_ContactPhone. * Changed m_fax to be a epp_ContactPhone instead of epp_string. * Changed usage of fax to reflect above change. Index: epp_ContactCreate.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/epp_ContactCreate.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** epp_ContactCreate.cc 9 Jul 2001 14:29:21 -0000 1.4 --- epp_ContactCreate.cc 7 Feb 2002 18:19:46 -0000 1.5 *************** *** 82,86 **** if(m_request->m_voice->m_value == NULL) { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactVoice-element"); } --- 82,86 ---- if(m_request->m_voice->m_value == NULL) { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactPhone-element (voice)"); } *************** *** 94,98 **** if(m_request->m_fax != NULL) { ! xml_request.putTag("contact:fax", *m_request->m_fax); } --- 94,108 ---- if(m_request->m_fax != NULL) { ! if(m_request->m_fax->m_value == NULL) ! { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactPhone-element (fax)"); ! } ! ! xml_request.beginTag("contact:fax"); ! if(m_request->m_fax->m_extension != NULL) { ! xml_request.putAttribute("x", *m_request->m_fax->m_extension); ! } ! xml_request.putCDATA(*m_request->m_fax->m_value); ! xml_request.endTag("contact:fax"); } Index: epp_ContactInfo.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/epp_ContactInfo.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** epp_ContactInfo.cc 25 Jul 2001 14:19:13 -0000 1.6 --- epp_ContactInfo.cc 7 Feb 2002 18:19:46 -0000 1.7 *************** *** 171,175 **** else if(elNode.getNodeName().equals(elemPrefix + ":voice")) { ! m_response->m_voice.ref(new epp_ContactVoice()); string extension, value; getAttribute(elNode, "x", extension); --- 171,175 ---- else if(elNode.getNodeName().equals(elemPrefix + ":voice")) { ! m_response->m_voice.ref(new epp_ContactPhone()); string extension, value; getAttribute(elNode, "x", extension); *************** *** 183,190 **** } else if(elNode.getNodeName().equals(elemPrefix + ":fax")) { ! string fax; ! getNodeData(elNode, fax); ! m_response->m_fax.ref(new epp_string(fax)); ! // cout << "fax: " << *m_response->m_fax << endl; } else if(elNode.getNodeName().equals(elemPrefix + ":email")) { --- 183,196 ---- } else if(elNode.getNodeName().equals(elemPrefix + ":fax")) { ! m_response->m_fax.ref(new epp_ContactPhone()); ! string extension, value; ! getAttribute(elNode, "x", extension); ! getNodeData(elNode, value); ! ! if(!extension.empty()) ! m_response->m_fax->m_extension.ref(new epp_string(extension)); ! if(!value.empty()) ! m_response->m_fax->m_value.ref(new epp_string(value)); ! // cout << "fax: " << extension << ", " << value << endl; } else if(elNode.getNodeName().equals(elemPrefix + ":email")) { Index: epp_ContactUpdate.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/epp_ContactUpdate.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** epp_ContactUpdate.cc 9 Jul 2001 14:29:21 -0000 1.5 --- epp_ContactUpdate.cc 7 Feb 2002 18:19:46 -0000 1.6 *************** *** 158,162 **** if(element->m_voice->m_value == NULL) { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactVoice-element"); } --- 158,162 ---- if(element->m_voice->m_value == NULL) { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactPhone-element (voice)"); } *************** *** 169,175 **** } ! if(element->m_fax != NULL) { ! outputobject.putTag("contact:fax", *element->m_fax); ! } if(element->m_email != NULL) { --- 169,186 ---- } ! if(element->m_fax != NULL) ! { ! if(element->m_fax->m_value == NULL) ! { ! throw epp_XMLException(__FILE__, __LINE__, "Missing data in ContactPhone-element (fax)"); ! } ! ! outputobject.beginTag("contact:fax"); ! if(element->m_fax->m_extension != NULL) { ! outputobject.putAttribute("x", *element->m_fax->m_extension); ! } ! outputobject.putCDATA(*element->m_fax->m_value); ! outputobject.endTag("contact:fax"); ! } if(element->m_email != NULL) { Index: main_contactcreate.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/main_contactcreate.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main_contactcreate.cc 13 Jul 2001 13:56:46 -0000 1.5 --- main_contactcreate.cc 7 Feb 2002 18:19:46 -0000 1.6 *************** *** 91,97 **** l_req->m_ascii_address = addr; ! l_req->m_voice.ref(new epp_ContactVoice(epp_string("1234"), epp_string("+1.7035555555"))); ! l_req->m_fax.ref(new epp_string("+1.7035555556")); l_req->m_email.ref(new epp_string("jd...@ex...")); l_req->m_auth_info.ref(new epp_AuthInfo()); --- 91,99 ---- l_req->m_ascii_address = addr; ! l_req->m_voice.ref(new epp_ContactPhone(epp_string("1234"), epp_string("+1.7035555555"))); ! l_req->m_fax.ref(new epp_ContactPhone()); ! l_req->m_fax->m_value.ref(new epp_string("+1.7035555556")); ! l_req->m_email.ref(new epp_string("jd...@ex...")); l_req->m_auth_info.ref(new epp_AuthInfo()); Index: main_contactinfo.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/main_contactinfo.cc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** main_contactinfo.cc 25 Jul 2001 14:19:13 -0000 1.6 --- main_contactinfo.cc 7 Feb 2002 18:19:46 -0000 1.7 *************** *** 118,124 **** } ! if(req->m_fax != NULL) ! cout << "m_fax: " << *req-> m_fax << endl; ! if(req->m_email != NULL) cout << "m_email: " << *req-> m_email << endl; --- 118,129 ---- } ! if(req->m_fax != NULL) { ! cout << "m_fax:\n"; ! if(req->m_fax->m_extension != NULL) ! cout << " m_extension: " << *req->m_fax->m_extension << endl; ! if(req->m_fax->m_value != NULL) ! cout << " m_value: " << *req->m_fax->m_value << endl; ! } ! if(req->m_email != NULL) cout << "m_email: " << *req-> m_email << endl; Index: main_contactupdate.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/main_contactupdate.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main_contactupdate.cc 13 Jul 2001 13:56:46 -0000 1.5 --- main_contactupdate.cc 7 Feb 2002 18:19:46 -0000 1.6 *************** *** 85,92 **** epp_ContactUpdateChange_ref chg(new epp_ContactUpdateChange()); chg->m_ascii_address = addr; ! chg->m_voice.ref(new epp_ContactVoice()); chg->m_voice->m_value.ref(new epp_string("+1.7034444444")); ! chg->m_fax.ref(new epp_string("")); chg->m_auth_info.ref(new epp_AuthInfo()); chg->m_auth_info->m_type.ref(new epp_AuthInfoType(PW)); --- 85,93 ---- epp_ContactUpdateChange_ref chg(new epp_ContactUpdateChange()); chg->m_ascii_address = addr; ! chg->m_voice.ref(new epp_ContactPhone()); chg->m_voice->m_value.ref(new epp_string("+1.7034444444")); ! chg->m_fax.ref(new epp_ContactPhone()); ! chg->m_fax->m_value.ref(new epp_string("")); chg->m_auth_info.ref(new epp_AuthInfo()); chg->m_auth_info->m_type.ref(new epp_AuthInfoType(PW)); |
From: Asbjorn M. <ste...@us...> - 2002-02-07 18:12:58
|
Update of /cvsroot/epp-rtk/epp-rtk/c++/src/data In directory usw-pr-cvs1:/tmp/cvs-serv30460 Modified Files: epp_ContactCreateReq.h epp_ContactInfoRsp.h epp_ContactUpdateChange.h epp_ContactVoice.h Added Files: epp_ContactPhone.h Log Message: * Added class epp_ContactPhone and deprecated epp_ContactVoice. * Started using the new class instead in referring classes. * Changed m_fax to be a epp_ContactPhone instead of epp_string. --- NEW FILE: epp_ContactPhone.h --- /************************************************************************ * EPP RTK C++ * Copyright (C) 2001 Global Name Registry * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Contact information: ep...@gn... * * EPP RTK * GNR Ltd. * 125 High Holborn * London WC1V 6QA * United Kingdom ************************************************************************/ #ifndef __EPP_CONTACTPHONE_H #define __EPP_CONTACTPHONE_H #include "epp_contactdata.h" namespace eppobject { namespace contact { class epp_ContactPhone { public: eppobject::epp::epp_string_ref m_extension; eppobject::epp::epp_string_ref m_value; epp_ContactPhone() {}; virtual ~epp_ContactPhone() {}; // Note: Cannot set simple types to NULL epp_ContactPhone(eppobject::epp::epp_string _m_extension, eppobject::epp::epp_string _m_value) { m_extension.ref(new eppobject::epp::epp_string(_m_extension)); m_value.ref(new eppobject::epp::epp_string(_m_value)); }; epp_ContactPhone(eppobject::epp::epp_string_ref _m_extension, eppobject::epp::epp_string_ref _m_value) { m_extension = _m_extension; m_value = _m_value; }; }; typedef refcnt_ptr<epp_ContactPhone> epp_ContactPhone_ref; }}; #endif Index: epp_ContactCreateReq.h =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_ContactCreateReq.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** epp_ContactCreateReq.h 9 Jul 2001 14:17:18 -0000 1.5 --- epp_ContactCreateReq.h 7 Feb 2002 18:12:54 -0000 1.6 *************** *** 32,36 **** #include "epp_Command.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactVoice.h" #include "epp_AuthInfo.h" --- 32,36 ---- #include "epp_Command.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactPhone.h" #include "epp_AuthInfo.h" *************** *** 43,48 **** epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactVoice_ref m_voice; ! eppobject::epp::epp_string_ref m_fax; eppobject::epp::epp_string_ref m_email; eppobject::epp::epp_AuthInfo_ref m_auth_info; --- 43,48 ---- epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactPhone_ref m_voice; ! epp_ContactPhone_ref m_fax; eppobject::epp::epp_string_ref m_email; eppobject::epp::epp_AuthInfo_ref m_auth_info; *************** *** 56,61 **** epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string _m_fax, eppobject::epp::epp_string _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) --- 56,61 ---- epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) *************** *** 65,69 **** m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax.ref(new eppobject::epp::epp_string(_m_fax)); m_email.ref(new eppobject::epp::epp_string(_m_email)); m_auth_info = _m_auth_info; --- 65,69 ---- m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax = _m_fax; m_email.ref(new eppobject::epp::epp_string(_m_email)); m_auth_info = _m_auth_info; *************** *** 74,79 **** epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string_ref _m_fax, eppobject::epp::epp_string_ref _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) --- 74,79 ---- epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string_ref _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) Index: epp_ContactInfoRsp.h =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_ContactInfoRsp.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** epp_ContactInfoRsp.h 9 Jul 2001 14:17:18 -0000 1.5 --- epp_ContactInfoRsp.h 7 Feb 2002 18:12:55 -0000 1.6 *************** *** 32,36 **** #include "epp_Response.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactVoice.h" #include "epp_AuthInfo.h" #include "epp_ContactStatus.h" --- 32,36 ---- #include "epp_Response.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactPhone.h" #include "epp_AuthInfo.h" #include "epp_ContactStatus.h" *************** *** 44,49 **** epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactVoice_ref m_voice; ! eppobject::epp::epp_string_ref m_fax; eppobject::epp::epp_string_ref m_email; epp_contact_status_seq_ref m_status; --- 44,49 ---- epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactPhone_ref m_voice; ! epp_ContactPhone_ref m_fax; eppobject::epp::epp_string_ref m_email; epp_contact_status_seq_ref m_status; *************** *** 67,72 **** epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string _m_fax, eppobject::epp::epp_string _m_email, epp_contact_status_seq_ref _m_status, --- 67,72 ---- epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string _m_email, epp_contact_status_seq_ref _m_status, *************** *** 85,89 **** m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax.ref(new eppobject::epp::epp_string(_m_fax)); m_email.ref(new eppobject::epp::epp_string(_m_email)); m_status = _m_status; --- 85,89 ---- m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax = _m_fax; m_email.ref(new eppobject::epp::epp_string(_m_email)); m_status = _m_status; *************** *** 103,108 **** epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string_ref _m_fax, eppobject::epp::epp_string_ref _m_email, epp_contact_status_seq_ref _m_status, --- 103,108 ---- epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string_ref _m_email, epp_contact_status_seq_ref _m_status, Index: epp_ContactUpdateChange.h =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_ContactUpdateChange.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** epp_ContactUpdateChange.h 9 Jul 2001 14:17:18 -0000 1.5 --- epp_ContactUpdateChange.h 7 Feb 2002 18:12:55 -0000 1.6 *************** *** 31,35 **** #include "epp_contactdata.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactVoice.h" #include "epp_AuthInfo.h" --- 31,35 ---- #include "epp_contactdata.h" #include "epp_ContactNameAddress.h" ! #include "epp_ContactPhone.h" #include "epp_AuthInfo.h" *************** *** 41,46 **** epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactVoice_ref m_voice; ! eppobject::epp::epp_string_ref m_fax; eppobject::epp::epp_string_ref m_email; eppobject::epp::epp_AuthInfo_ref m_auth_info; --- 41,46 ---- epp_ContactNameAddress_ref m_ascii_address; epp_ContactNameAddress_ref m_i15d_address; ! epp_ContactPhone_ref m_voice; ! epp_ContactPhone_ref m_fax; eppobject::epp::epp_string_ref m_email; eppobject::epp::epp_AuthInfo_ref m_auth_info; *************** *** 53,58 **** epp_ContactUpdateChange(epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string _m_fax, eppobject::epp::epp_string _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) --- 53,58 ---- epp_ContactUpdateChange(epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) *************** *** 61,65 **** m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax.ref(new eppobject::epp::epp_string(_m_fax)); m_email.ref(new eppobject::epp::epp_string(_m_email)); m_auth_info = _m_auth_info; --- 61,65 ---- m_i15d_address = _m_i15d_address; m_voice = _m_voice; ! m_fax = _m_fax; m_email.ref(new eppobject::epp::epp_string(_m_email)); m_auth_info = _m_auth_info; *************** *** 69,74 **** epp_ContactUpdateChange(epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactVoice_ref _m_voice, ! eppobject::epp::epp_string_ref _m_fax, eppobject::epp::epp_string_ref _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) --- 69,74 ---- epp_ContactUpdateChange(epp_ContactNameAddress_ref _m_ascii_address, epp_ContactNameAddress_ref _m_i15d_address, ! epp_ContactPhone_ref _m_voice, ! epp_ContactPhone_ref _m_fax, eppobject::epp::epp_string_ref _m_email, eppobject::epp::epp_AuthInfo_ref _m_auth_info) Index: epp_ContactVoice.h =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/data/epp_ContactVoice.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** epp_ContactVoice.h 9 Jul 2001 14:17:18 -0000 1.5 --- epp_ContactVoice.h 7 Feb 2002 18:12:55 -0000 1.6 *************** *** 29,36 **** --- 29,43 ---- #define __EPP_CONTACTVOICE_H + /** @file epp_ContactVoice.h + * @brief Deprecated! Definition of epp_ContactVoice and epp_ContactVoice_ref + * @author Asbjorn Steira Mikkelsen + * @deprecated Replaced by epp_ContactPhone.h + */ + #include "epp_contactdata.h" namespace eppobject { namespace contact { + /** @deprecated Replaced by epp_ContactPhone */ class epp_ContactVoice { public: |
From: Asbjorn M. <ste...@us...> - 2002-02-06 14:44:46
|
Update of /cvsroot/epp-rtk/epp-rtk/c++/src In directory usw-pr-cvs1:/tmp/cvs-serv17829 Modified Files: main_loginunspec.cc Log Message: Test! Just a whitespace-change to test the new cpp-commit mailing list... Index: main_loginunspec.cc =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/c++/src/main_loginunspec.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** main_loginunspec.cc 2002/02/06 12:08:44 1.2 --- main_loginunspec.cc 2002/02/06 14:44:42 1.3 *************** *** 54,58 **** int main(int argc, char * argv[]) { ! epp_Session test; --- 54,58 ---- int main(int argc, char * argv[]) { ! epp_Session test; |