Changeset 72 for Mulberry/trunk
- Timestamp:
- 07/08/07 13:42:10 (2 years ago)
- Location:
- Mulberry/trunk/Plug-ins
- Files:
-
- 19 added
- 20 removed
- 4 modified
-
CRAM-MD5/CRAM-MD5.mcp (deleted)
-
CRAM-MD5/sources/Info.plst.def (added)
-
CommunicatorAdbkIO/CommunicatorAdbkIO.mcp (deleted)
-
CommunicatorAdbkIO/sources/Info.plst.def (added)
-
CommunicatorAdbkIO/sources/ldif.h (added)
-
CommunicatorAdbkIO/sources/line64mac.c (added)
-
DIGEST-MD5/DIGEST-MD5.mcp (deleted)
-
DIGEST-MD5/DIGEST-MD5.xcodeproj (modified) (1 prop)
-
DIGEST-MD5/sources/Info.plst.def (added)
-
Eudora4AdbkIO/Eudora4AdbkIO.mcp (deleted)
-
Eudora4AdbkIO/sources/Info.plst.def (added)
-
EudoraAdbkIO/EudoraAdbkIO.mcp (deleted)
-
EudoraAdbkIO/sources/Info.plst.def (added)
-
GPG/sources/CGPGPluginDLL.cp (modified) (7 diffs)
-
GPG/sources/Info.plst.def (added)
-
GSSAPI/GSSAPI.mcp (deleted)
-
GSSAPI/sources/Info.plst.def (added)
-
Kerberos/Kerberos.mcp (deleted)
-
Kerberos/sources/Info.plst.def (added)
-
NetscapeAdbkIO/NetscapeAdbkIO.mcp (deleted)
-
NetscapeAdbkIO/sources/Info.plst.def (added)
-
OEAdbkIO/OEAdbkIO.mcp (deleted)
-
OEAdbkIO/sources/Info.plst.def (added)
-
PGP/PGP.mcp (deleted)
-
PGP/sources/Info.plst.def (added)
-
POPPASSD/POPPASSD.mcp (deleted)
-
PineAdbkIO/PineAdbkIO.mcp (deleted)
-
PineAdbkIO/sources/Info.plst.def (added)
-
PluginLibrary/PluginLibrary.mcp (deleted)
-
QuickmailAdbkIO/QuickmailAdbkIO.mcp (deleted)
-
QuickmailAdbkIO/sources/Info.plst.def (added)
-
QuickmailProAdbkIO/QuickmailProAdbkIO.mcp (deleted)
-
QuickmailProAdbkIO/sources/Info.plst.def (added)
-
SMIME/SMIME.mcp (deleted)
-
SMIME/sources/CSMIMEPluginDLL.cp (modified) (7 diffs)
-
SMIME/sources/Info.plst.def (added)
-
SSL/SSL.mcp (deleted)
-
SSL/sources/Info.plst.def (added)
-
URLPASSD/URLPASSD.mcp (deleted)
-
vCardAdbkIO/PluginLibrary.mcp (deleted)
-
vCardAdbkIO/sources/CVCardAdbkIOPluginDLL.cp (modified) (1 diff)
-
vCardAdbkIO/sources/Info.plst.def (added)
-
vCardAdbkIO/vCardAdbkIO.mcp (deleted)
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/trunk/Plug-ins/DIGEST-MD5/DIGEST-MD5.xcodeproj
-
Property
svn:ignore set
to
*.mode*
*.pbxuser
-
Property
svn:ignore set
to
-
Mulberry/trunk/Plug-ins/GPG/sources/CGPGPluginDLL.cp
r18 r72 41 41 #include <unistd.h> 42 42 43 #include <memory> 44 43 45 #if __dest_os == __win32_os 44 46 #include <fcntl.h> … … 525 527 } 526 528 527 auto_ptr<char> in_path(ToPath(in));528 auto_ptr<char> out_path(ToPath(out));529 std::auto_ptr<char> in_path(ToPath(in)); 530 std::auto_ptr<char> out_path(ToPath(out)); 529 531 530 532 #if __dest_os == __mac_os_x || __dest_os == __win32_os … … 578 580 long CGPGPluginDLL::EncryptFileX(fspec in, const char** to, fspec out, bool useMime, bool binary, bool using_temp_files) 579 581 { 580 auto_ptr<char> in_path(ToPath(in));581 auto_ptr<char> out_path(ToPath(out));582 std::auto_ptr<char> in_path(ToPath(in)); 583 std::auto_ptr<char> out_path(ToPath(out)); 582 584 583 585 #if __dest_os == __mac_os_x || __dest_os == __win32_os … … 632 634 long CGPGPluginDLL::EncryptSignFileX(fspec in, const char** to, const char* key, fspec out, bool useMime, bool binary, bool using_temp_files) 633 635 { 634 auto_ptr<char> in_path(ToPath(in));635 auto_ptr<char> out_path(ToPath(out));636 std::auto_ptr<char> in_path(ToPath(in)); 637 std::auto_ptr<char> out_path(ToPath(out)); 636 638 637 639 // Signing requires passphrase … … 703 705 cdstrvect encryptedTo; 704 706 705 auto_ptr<char> in_path(ToPath(in));706 auto_ptr<char> out_path(ToPath(out));707 std::auto_ptr<char> in_path(ToPath(in)); 708 std::auto_ptr<char> out_path(ToPath(out)); 707 709 708 710 #if __dest_os == __mac_os_x || __dest_os == __win32_os … … 778 780 return 0; 779 781 780 auto_ptr<char> sig_path(ToPath(sig_tmp));782 std::auto_ptr<char> sig_path(ToPath(sig_tmp)); 781 783 _sig_remove.set(sig_path.get()); 782 784 … … 1727 1729 { 1728 1730 // Create array of keys 1729 auto_ptr<const char*> users(cdstring::ToArray(secret_keys, false));1731 std::auto_ptr<const char*> users(cdstring::ToArray(secret_keys, false)); 1730 1732 1731 1733 // Get passphrase -
Mulberry/trunk/Plug-ins/SMIME/sources/CSMIMEPluginDLL.cp
r54 r72 524 524 525 525 // Convert fspec to file path 526 auto_ptr<char> in_path(ToPath(in));527 auto_ptr<char> out_path(ToPath(out));526 std::auto_ptr<char> in_path(ToPath(in)); 527 std::auto_ptr<char> out_path(ToPath(out)); 528 528 529 529 try … … 690 690 #endif 691 691 692 auto_ptr<char> in_path(ToPath(in));693 auto_ptr<char> out_path(ToPath(out));692 std::auto_ptr<char> in_path(ToPath(in)); 693 std::auto_ptr<char> out_path(ToPath(out)); 694 694 695 695 #if __dest_os == __mac_os || __dest_os == __mac_os_x || __dest_os == __win32_os … … 817 817 { 818 818 // Convert fspec to file path 819 auto_ptr<char> in_path(ToPath(in));819 std::auto_ptr<char> in_path(ToPath(in)); 820 820 821 821 #if __dest_os == __mac_os || __dest_os == __mac_os_x … … 842 842 } 843 843 844 auto_ptr<char> sig_path(ToPath(sig_tmp));844 std::auto_ptr<char> sig_path(ToPath(sig_tmp)); 845 845 _sig_remove.set(sig_path.get()); 846 846 … … 1013 1013 EVP_PKEY* pkey = NULL; 1014 1014 1015 auto_ptr<char> in_path(ToPath(in));1016 auto_ptr<char> out_path(ToPath(out));1015 std::auto_ptr<char> in_path(ToPath(in)); 1016 std::auto_ptr<char> out_path(ToPath(out)); 1017 1017 1018 1018 try … … 1580 1580 1581 1581 // Create array of keys 1582 auto_ptr<const char*> users(cdstring::ToArray(cert_names, false));1582 std::auto_ptr<const char*> users(cdstring::ToArray(cert_names, false)); 1583 1583 1584 1584 // Get passphrase … … 1635 1635 { 1636 1636 // Add to list if unique 1637 vector<int>::const_iterator found = ::find(mData->mCertErrors.begin(), mData->mCertErrors.end(), err);1637 vector<int>::const_iterator found = std::find(mData->mCertErrors.begin(), mData->mCertErrors.end(), err); 1638 1638 if (found == mData->mCertErrors.end()) 1639 1639 mData->mCertErrors.push_back(err); -
Mulberry/trunk/Plug-ins/vCardAdbkIO/sources/CVCardAdbkIOPluginDLL.cp
r18 r72 276 276 mEngine.WriteOne(out, *addr); 277 277 out << ends; 278 auto_ptr<char> data(out.str());278 std::auto_ptr<char> data(out.str()); 279 279 ::fwrite(data.get(), 1, ::strlen(data.get()), mExportFile); 280 280 return 1;