Skip to content

Commit

Permalink
sources for 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Nov 17, 2006
1 parent c240a70 commit 7781215
Show file tree
Hide file tree
Showing 39 changed files with 267 additions and 47 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
This is the changelog file for POCO - the C++ Portable Components.

Release 1.3.0b1 (2006-11-17)
==========================

- added HashMap, HashSet classes
- added Poco::Tuple
- added AbstractCache::getAllKeys(), improved performance of the get operation
- fixed AbstractCache::size() to do cache replacement before returning the size
- added additional match() method to RegularExpression and documented the fact that the simple
match() method internally sets RE_ANCHORED and RE_NOTEMPTY.
- added ExpirationDecorator template. Decorates data types so that they can be used with UniqueExpireCaches
- added operator ! to AutoPtr and SharedPtr
- Buffer uses std::size_t instead of int
- Exception::what() now returns exception name instead of message
- added poco_ndc_dbg() macro (same as poco_ndc(), but only enabled in debug builds)
- added Environment::get(name, defaultValue);
- Foundation.h now includes Config.h at the very beginning.
- added replace() and replaceInPlace() to Poco/String.h
- added AutoPtr::assign() and SharedPtr::assign()
- added operator () to AbstractEvent
- gcc Makefiles now strip release builds
- Void now has a == and != operator


Release 1.2.5 (2006-10-23)
==========================

Expand Down Expand Up @@ -76,7 +99,6 @@ Release 1.2.1 (2006-08-29)

- fixed Config.h header (no more #undefs)


Release 1.2.0 (2006-08-29)
==========================

Expand Down Expand Up @@ -543,4 +565,4 @@ building the libraries.


--
$Id: //poco/1.2/dist/CHANGELOG#13 $
$Id: //poco/1.3/dist/CHANGELOG#1 $
3 changes: 1 addition & 2 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Peter Schojer <[email protected]>
Claus Dabringer <[email protected]>
Andrew Marlow ([email protected])
Caleb Epstein ([email protected])
Andrew J. P. Maclean ([email protected])

--
$Id: //poco/1.2/dist/CONTRIBUTORS#2 $
$Id: //poco/1.3/dist/CONTRIBUTORS#1 $
37 changes: 35 additions & 2 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
build
build/config
build/config/ARM-Linux
build/config/CEGCCARM
build/config/CYGWIN
build/config/Darwin
build/config/Darwin7
Expand All @@ -11,6 +12,7 @@ build/config/Linux
build/config/MinGW
build/config/OSF1
build/config/QNX
build/config/SSV-LINUX
build/config/SunOS
build/rules
build/rules/compile
Expand Down Expand Up @@ -182,6 +184,7 @@ Foundation/include/Poco/EventLogChannel.h
Foundation/include/Poco/Event_POSIX.h
Foundation/include/Poco/Event_WIN32.h
Foundation/include/Poco/Exception.h
Foundation/include/Poco/ExpirationDecorator.h
Foundation/include/Poco/Expire.h
Foundation/include/Poco/ExpireCache.h
Foundation/include/Poco/ExpireLRUCache.h
Expand All @@ -206,7 +209,10 @@ Foundation/include/Poco/FPEnvironment_DUMMY.h
Foundation/include/Poco/FPEnvironment_SUN.h
Foundation/include/Poco/FPEnvironment_WIN32.h
Foundation/include/Poco/Glob.h
Foundation/include/Poco/Hash.h
Foundation/include/Poco/HashFunction.h
Foundation/include/Poco/HashMap.h
Foundation/include/Poco/HashSet.h
Foundation/include/Poco/HashStatistic.h
Foundation/include/Poco/HashTable.h
Foundation/include/Poco/HexBinaryDecoder.h
Expand All @@ -217,6 +223,7 @@ Foundation/include/Poco/Instantiator.h
Foundation/include/Poco/KeyValueArgs.h
Foundation/include/Poco/Latin1Encoding.h
Foundation/include/Poco/Latin9Encoding.h
Foundation/include/Poco/LinearHashTable.h
Foundation/include/Poco/LineEndingConverter.h
Foundation/include/Poco/LocalDateTime.h
Foundation/include/Poco/LogFile.h
Expand All @@ -237,6 +244,7 @@ Foundation/include/Poco/MD5Engine.h
Foundation/include/Poco/MemoryPool.h
Foundation/include/Poco/Message.h
Foundation/include/Poco/MetaObject.h
Foundation/include/Poco/MetaProgramming.h
Foundation/include/Poco/Mutex.h
Foundation/include/Poco/Mutex_POSIX.h
Foundation/include/Poco/Mutex_WIN32.h
Expand Down Expand Up @@ -344,9 +352,14 @@ Foundation/include/Poco/Timespan.h
Foundation/include/Poco/Timestamp.h
Foundation/include/Poco/Timezone.h
Foundation/include/Poco/Token.h
Foundation/include/Poco/Tuple.h
Foundation/include/Poco/TypeList.h
Foundation/include/Poco/Types.h
Foundation/include/Poco/UnbufferedStreamBuf.h
Foundation/include/Poco/UnicodeConverter.h
Foundation/include/Poco/UniqueExpireCache.h
Foundation/include/Poco/UniqueExpireLRUCache.h
Foundation/include/Poco/UniqueExpireStrategy.h
Foundation/include/Poco/URI.h
Foundation/include/Poco/URIStreamFactory.h
Foundation/include/Poco/URIStreamOpener.h
Expand Down Expand Up @@ -557,6 +570,7 @@ Foundation/src/FPEnvironment_WIN32.cpp
Foundation/src/get.c
Foundation/src/Glob.cpp
Foundation/src/gzio.c
Foundation/src/Hash.cpp
Foundation/src/HashStatistic.cpp
Foundation/src/HexBinaryDecoder.cpp
Foundation/src/HexBinaryEncoder.cpp
Expand Down Expand Up @@ -782,12 +796,20 @@ Foundation/testsuite/src/FPETest.cpp
Foundation/testsuite/src/FPETest.h
Foundation/testsuite/src/GlobTest.cpp
Foundation/testsuite/src/GlobTest.h
Foundation/testsuite/src/HashTest.cpp
Foundation/testsuite/src/HashTest.h
Foundation/testsuite/src/HashingTestSuite.cpp
Foundation/testsuite/src/HashingTestSuite.h
Foundation/testsuite/src/HashMapTest.cpp
Foundation/testsuite/src/HashMapTest.h
Foundation/testsuite/src/HashSetTest.cpp
Foundation/testsuite/src/HashSetTest.h
Foundation/testsuite/src/HashTableTest.cpp
Foundation/testsuite/src/HashTableTest.h
Foundation/testsuite/src/HexBinaryTest.cpp
Foundation/testsuite/src/HexBinaryTest.h
Foundation/testsuite/src/HMACEngineTest.cpp
Foundation/testsuite/src/HMACEngineTest.h
Foundation/testsuite/src/LinearHashTableTest.cpp
Foundation/testsuite/src/LinearHashTableTest.h
Foundation/testsuite/src/LineEndingConverterTest.cpp
Foundation/testsuite/src/LineEndingConverterTest.h
Foundation/testsuite/src/LocalDateTimeTest.cpp
Expand Down Expand Up @@ -862,6 +884,8 @@ Foundation/testsuite/src/SharedPtrTest.cpp
Foundation/testsuite/src/SharedPtrTest.h
Foundation/testsuite/src/SimpleFileChannelTest.cpp
Foundation/testsuite/src/SimpleFileChannelTest.h
Foundation/testsuite/src/SimpleHashTableTest.cpp
Foundation/testsuite/src/SimpleHashTableTest.h
Foundation/testsuite/src/StopwatchTest.cpp
Foundation/testsuite/src/StopwatchTest.h
Foundation/testsuite/src/StreamConverterTest.cpp
Expand Down Expand Up @@ -912,6 +936,12 @@ Foundation/testsuite/src/TimestampTest.cpp
Foundation/testsuite/src/TimestampTest.h
Foundation/testsuite/src/TimezoneTest.cpp
Foundation/testsuite/src/TimezoneTest.h
Foundation/testsuite/src/TuplesTest.cpp
Foundation/testsuite/src/TuplesTest.h
Foundation/testsuite/src/UniqueExpireCacheTest.cpp
Foundation/testsuite/src/UniqueExpireCacheTest.h
Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp
Foundation/testsuite/src/UniqueExpireLRUCacheTest.h
Foundation/testsuite/src/URIStreamOpenerTest.cpp
Foundation/testsuite/src/URIStreamOpenerTest.h
Foundation/testsuite/src/URITest.cpp
Expand Down Expand Up @@ -940,6 +970,7 @@ Foundation/testsuite/TestSuite_vs80.vcproj
libversion
LICENSE
Makefile
MANIFEST
Net
Net/include
Net/include/Poco
Expand Down Expand Up @@ -1007,6 +1038,7 @@ Net/include/Poco/Net/QuotedPrintableDecoder.h
Net/include/Poco/Net/QuotedPrintableEncoder.h
Net/include/Poco/Net/RawSocket.h
Net/include/Poco/Net/RawSocketImpl.h
Net/include/Poco/Net/RemoteSyslogChannel.h
Net/include/Poco/Net/ServerSocket.h
Net/include/Poco/Net/ServerSocketImpl.h
Net/include/Poco/Net/SMTPClientSession.h
Expand Down Expand Up @@ -1176,6 +1208,7 @@ Net/src/QuotedPrintableDecoder.cpp
Net/src/QuotedPrintableEncoder.cpp
Net/src/RawSocket.cpp
Net/src/RawSocketImpl.cpp
Net/src/RemoteSyslogChannel.cpp
Net/src/ServerSocket.cpp
Net/src/ServerSocketImpl.cpp
Net/src/SMTPClientSession.cpp
Expand Down
9 changes: 1 addition & 8 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
Release 1.2.5 (2006-10-23)
==========================

This release contains bugfixes and minor enchancements.
See the CHANGELOG for details.


Release 1.2.0 (2006-08-29)
==========================

Expand Down Expand Up @@ -124,4 +117,4 @@ Please refer to the README file for more information and instructions for
building the libraries.

--
$Id: //poco/1.2/dist/NEWS#6 $
$Id: //poco/1.3/dist/NEWS#1 $
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,4 @@ at <http://poco.appinf.com>.


--
$Id: //poco/1.2/dist/README#1 $
$Id: //poco/1.3/dist/README#1 $
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.5 (2006-10-23)
1.3b1 (2006-11-17)
3 changes: 2 additions & 1 deletion build/config/ARM-Linux
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: //poco/1.2/build/config/ARM-Linux#1 $
# $Id: //poco/1.3/build/config/ARM-Linux#1 $
#
# ARM-Linux
#
Expand Down Expand Up @@ -27,6 +27,7 @@ LIB = arm-linux-ar -cr
RANLIB = arm-linux-ranlib
SHLIB = $(CXX) -shared -Wl,-soname,$(notdir $@) -Wl,-rpath,$(dir $@) -o $@
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP = arm-linux-strip
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
Expand Down
77 changes: 77 additions & 0 deletions build/config/CEGCCARM
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#
# $Id: //poco/1.3/build/config/CEGCCARM#1 $
#
# CYGWIN
#
# Make settings for Cygwin on WinXP/gcc 3.4
# for cross compiling to WinCE ARM with CEGCC
#
#

#
# General Settings
#
LINKMODE = SHARED
POCO_TARGET_OSNAME = WinCE
POCO_TARGET_OSARCH = ARM
TOOLPATH = /opt/cegcc
TOOL = /opt/cegcc/bin/arm-wince-cegcc-

#
# Define Tools
#
CC = $(TOOL)gcc
CXX = $(TOOL)g++
LINK = $(CXX)
LIB = $(TOOL)ar -cr
RANLIB = $(TOOL)ranlib
SHLIB = $(CXX) -shared -o $@ -Wl,--out-implib=$(dir $@)$(subst ce,lib,$(notdir $@)).a -Wl,--export-all-symbols -Wl,--enable-auto-import
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP = $(TOOL)strip
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
CP = cp
MKDIR = mkdir -p

#
# Extension for Shared Libraries
#
LIBPREFIX = ce
SHAREDLIBEXT = .$(target_version).dll
SHAREDLIBLINKEXT = .dll

#
# Compiler and Linker Flags
#
CFLAGS =
CFLAGS32 =
CFLAGS64 =
CXXFLAGS =
CXXFLAGS32 =
CXXFLAGS64 =
LINKFLAGS =
LINKFLAGS32 =
LINKFLAGS64 =
STATICOPT_CC =
STATICOPT_CXX =
STATICOPT_LINK = -static
SHAREDOPT_CC =
SHAREDOPT_CXX =
SHAREDOPT_LINK =
DEBUGOPT_CC = -g -D_DEBUG
DEBUGOPT_CXX = -g -D_DEBUG
DEBUGOPT_LINK = -g
RELEASEOPT_CC = -O2 -DNDEBUG
RELEASEOPT_CXX = -O2 -DNDEBUG
RELEASEOPT_LINK = -O2

#
# System Specific Flags
#
SYSFLAGS = -D_XOPEN_SOURCE=500 -DPOCO_NO_FPENVIRONMENT -DPOCO_OS_FAMILY_WINDOWS -DNOMINMAX -D_WIN32 -D_WIN32_WCE=0x0420 -D_WIN32_IE=0x0420 -DNO_GZCOMPRESS -DPOCO_WIN32_UTF8 -DUNICODE -DPOCO_DLL -DFoundation_EXPORTS

#
# System Specific Libraries
#
SYSLIBS = -L$(TOOLPATH)/lib -L$(TOOLPATH)/arm-wince-cegcc/lib
3 changes: 2 additions & 1 deletion build/config/CYGWIN
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#

#
# General Settings
# General Settings, note that strip doesn't do anything on Cygwin, thus empty
#
LINKMODE = SHARED

Expand All @@ -22,6 +22,7 @@ LIB = ar -cr
RANLIB = ranlib
SHLIB = $(CXX) -shared -o $@ -Wl,--out-implib=$(dir $@)$(subst cyg,lib,$(notdir $@)).a -Wl,--export-all-symbols -Wl,--enable-auto-import
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP =
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
Expand Down
3 changes: 2 additions & 1 deletion build/config/Darwin
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: //poco/1.2/build/config/Darwin#1 $
# $Id: //poco/1.3/build/config/Darwin#2 $
#
# Darwin8
#
Expand All @@ -22,6 +22,7 @@ RANLIB = ranlib
SHLIB = $(CXX) -dynamiclib -Wl,-install_name,$@ -o $@
DYLIB = $(CXX) -dynamic -bundle -read_only_relocs suppress -Wl,-noprebind -Wl,-bind_at_load -o $@
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP =
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
Expand Down
3 changes: 2 additions & 1 deletion build/config/Darwin7
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: //poco/1.2/build/config/Darwin7#1 $
# $Id: //poco/1.3/build/config/Darwin7#1 $
#
# Darwin
#
Expand All @@ -22,6 +22,7 @@ RANLIB = ranlib
SHLIB = libtool -dynamic -flat_namespace -undefined suppress -noprebind -install_name $@ -o $@
DYLIB = ld -dynamic -bundle -read_only_relocs suppress -flat_namespace -undefined warning -noprebind -bind_at_load -o $@ /usr/lib/bundle1.o
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP = strip
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
Expand Down
3 changes: 2 additions & 1 deletion build/config/FreeBSD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: //poco/1.2/build/config/FreeBSD#1 $
# $Id: //poco/1.3/build/config/FreeBSD#1 $
#
# FreeBSD
#
Expand All @@ -23,6 +23,7 @@ RANLIB = ranlib
SHLIB = $(CXX) -shared -Wl,-soname,$(notdir $@) -Wl,-rpath,$(dir $@) -o $@
SHLIBLN = $(POCO_BASE)/build/script/shlibln
DEP = $(POCO_BASE)/build/script/makedepend.gcc
STRIP = strip
SHELL = sh
RM = rm -rf
CP = cp
Expand Down
3 changes: 2 additions & 1 deletion build/config/HP-UX
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Id: //poco/1.2/build/config/HP-UX#1 $
# $Id: //poco/1.3/build/config/HP-UX#1 $
#
# HP-UX
#
Expand All @@ -22,6 +22,7 @@ RANLIB = ranlib
SHLIB = $(CXX) $(LINKFLAGS) -b -Wl,+h$(notdir $@) -o $@ -Wl,+s
SHLIBLN = $(POCO_BASE)/build/script/shlibln
DEP = $(POCO_BASE)/build/script/makedepend.aCC
STRIP =
SHELL = sh
RM = rm -rf
CP = cp
Expand Down
Loading

0 comments on commit 7781215

Please sign in to comment.