carnold | 8 Mar 2008 18:30
Picon
Favicon

svn commit: r635025 - in /logging/log4cxx/trunk: build.xml find_apr.m4 find_apu.m4 pom.xml src/assembly/source.xml src/site/apt/building/ant.apt src/site/apt/building/autotools.apt

Author: carnold
Date: Sat Mar  8 09:30:28 2008
New Revision: 635025

URL: http://svn.apache.org/viewvc?rev=635025&view=rev
Log:
LOGCXX-62: Include configure in distribution

Modified:
    logging/log4cxx/trunk/build.xml
    logging/log4cxx/trunk/find_apr.m4
    logging/log4cxx/trunk/find_apu.m4
    logging/log4cxx/trunk/pom.xml
    logging/log4cxx/trunk/src/assembly/source.xml
    logging/log4cxx/trunk/src/site/apt/building/ant.apt
    logging/log4cxx/trunk/src/site/apt/building/autotools.apt

Modified: logging/log4cxx/trunk/build.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/build.xml?rev=635025&r1=635024&r2=635025&view=diff
==============================================================================
--- logging/log4cxx/trunk/build.xml (original)
+++ logging/log4cxx/trunk/build.xml Sat Mar  8 09:30:28 2008
 <at>  <at>  -1234,7 +1234,11  <at>  <at> 
       </exec>
    </target>

-
+   <target name="autogen" depends="init" if="is-unix">
+	<exec executable="sh">
+		<arg value="autogen.sh"/>
(Continue reading)

carnold | 8 Mar 2008 20:01
Picon
Favicon

svn commit: r635041 - /logging/log4cxx/trunk/src/site/apt/building/vstudio.apt

Author: carnold
Date: Sat Mar  8 11:01:23 2008
New Revision: 635041

URL: http://svn.apache.org/viewvc?rev=635041&view=rev
Log:
LOGCXX-62: Document need for gzip and zip to pass unit tests under vstudio

Modified:
    logging/log4cxx/trunk/src/site/apt/building/vstudio.apt

Modified: logging/log4cxx/trunk/src/site/apt/building/vstudio.apt
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/site/apt/building/vstudio.apt?rev=635041&r1=635040&r2=635041&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/site/apt/building/vstudio.apt (original)
+++ logging/log4cxx/trunk/src/site/apt/building/vstudio.apt Sat Mar  8 11:01:23 2008
 <at>  <at>  -56,8 +56,8  <at>  <at> 

 *Running unit tests

-   To pass the unit tests, sed must be on the path to
-   normalize the generated output files.  Also three
+   To pass the unit tests, gzip, zip and sed must be on the path.  
+   Also three
    environment variables need to be defined: TOTO=wonderful,
    key1=value1 and key2=value2.  These must be done outside
    of Microsoft Visual Studio, either in the Control Panel or

carnold | 8 Mar 2008 20:04
Picon
Favicon

svn commit: r635044 - in /logging/log4cxx/trunk/src: main/cpp/simpledateformat.cpp test/cpp/helpers/datetimedateformattestcase.cpp

Author: carnold
Date: Sat Mar  8 11:04:08 2008
New Revision: 635044

URL: http://svn.apache.org/viewvc?rev=635044&view=rev
Log:
LOGCXX-62: Sun Studio 8 fixes

Modified:
    logging/log4cxx/trunk/src/main/cpp/simpledateformat.cpp
    logging/log4cxx/trunk/src/test/cpp/helpers/datetimedateformattestcase.cpp

Modified: logging/log4cxx/trunk/src/main/cpp/simpledateformat.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/simpledateformat.cpp?rev=635044&r1=635043&r2=635044&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/simpledateformat.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/simpledateformat.cpp Sat Mar  8 11:04:08 2008
 <at>  <at>  -43,8 +43,13  <at>  <at> 
 #define USE_FACET(locale, type) _USE(locale, type)
 #define PUT_FACET(facet, os, time, spec) facet.put(os, os, time, spec)
 #else
+#if defined(_RWSTD_NO_TEMPLATE_ON_RETURN_TYPE)
+#define HAS_FACET(locale, type) std::has_facet(locale, (type*) 0)
+#define USE_FACET(locale, type) std::use_facet(locale, (type*) 0)
+#else
 #define HAS_FACET(locale, type) std::has_facet < type >(locale)
 #define USE_FACET(locale, type) std::use_facet < type >(locale)
+#endif
 #define PUT_FACET(facet, os, time, spec) facet.put(os, os, os.fill(), time, spec)
 #endif
(Continue reading)

carnold | 10 Mar 2008 21:53
Picon
Favicon

svn commit: r635687 - in /logging/log4cxx/trunk/src: changes/changes.xml main/cpp/exception.cpp main/cpp/odbcappender.cpp main/include/log4cxx/db/odbcappender.h main/include/log4cxx/helpers/exception.h

Author: carnold
Date: Mon Mar 10 13:53:41 2008
New Revision: 635687

URL: http://svn.apache.org/viewvc?rev=635687&view=rev
Log:
LOGCXX-248: ODBCAppender has Unicode issues

Modified:
    logging/log4cxx/trunk/src/changes/changes.xml
    logging/log4cxx/trunk/src/main/cpp/exception.cpp
    logging/log4cxx/trunk/src/main/cpp/odbcappender.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/db/odbcappender.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/exception.h

Modified: logging/log4cxx/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/changes/changes.xml?rev=635687&r1=635686&r2=635687&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/changes/changes.xml (original)
+++ logging/log4cxx/trunk/src/changes/changes.xml Mon Mar 10 13:53:41 2008
 <at>  <at>  -22,7 +22,7  <at>  <at> 
 <title>Apache log4cxx</title>
 </properties>
 <body>
-<release version="0.10.0" date="2008-02-29" description="First Apache release">
+<release version="0.10.0" date="2008-03-17" description="First Apache release">
 <action issue="LOGCXX-2">logger.h includes config.h</action>
 <action issue="LOGCXX-3">Missing #else</action>
 <action issue="LOGCXX-4">initialization not working on many OS's</action>
 <at>  <at>  -217,6 +217,7  <at>  <at> 
(Continue reading)

carnold | 11 Mar 2008 06:39
Picon
Favicon

svn commit: r635805 - in /logging/log4cxx/trunk/src/main: cpp/exception.cpp cpp/odbcappender.cpp include/log4cxx/db/odbcappender.h include/log4cxx/helpers/exception.h

Author: carnold
Date: Mon Mar 10 22:39:14 2008
New Revision: 635805

URL: http://svn.apache.org/viewvc?rev=635805&view=rev
Log:
LOGCXX-248: ODBCAppender has Unicode issues

Modified:
    logging/log4cxx/trunk/src/main/cpp/exception.cpp
    logging/log4cxx/trunk/src/main/cpp/odbcappender.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/db/odbcappender.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/exception.h

Modified: logging/log4cxx/trunk/src/main/cpp/exception.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/exception.cpp?rev=635805&r1=635804&r2=635805&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/exception.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/exception.cpp Mon Mar 10 22:39:14 2008
 <at>  <at>  -41,17 +41,13  <at>  <at> 
   msg[len] = 0;
 }

-Exception::Exception(const std::string& m) {
-  size_t len = m.size();
-  if (len > MSG_SIZE) {
-      len = MSG_SIZE;
-  }
+Exception::Exception(const char* m) {
 #if defined(__STDC_LIB_EXT1__) || defined(__STDC_SECURE_LIB__)
(Continue reading)

carnold | 12 Mar 2008 22:51
Picon
Favicon

svn commit: r636527 - in /logging/log4cxx/trunk/src: changes/ main/cpp/ main/include/log4cxx/helpers/ main/include/log4cxx/net/ test/cpp/net/

Author: carnold
Date: Wed Mar 12 14:51:39 2008
New Revision: 636527

URL: http://svn.apache.org/viewvc?rev=636527&view=rev
Log:
LOGCXX-246: Config refresh hangs a client application that uses TelnetAppender

Modified:
    logging/log4cxx/trunk/src/changes/changes.xml
    logging/log4cxx/trunk/src/main/cpp/filewatchdog.cpp
    logging/log4cxx/trunk/src/main/cpp/telnetappender.cpp
    logging/log4cxx/trunk/src/main/cpp/threadcxx.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/thread.h
    logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h
    logging/log4cxx/trunk/src/test/cpp/net/telnetappendertestcase.cpp

Modified: logging/log4cxx/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/changes/changes.xml?rev=636527&r1=636526&r2=636527&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/changes/changes.xml (original)
+++ logging/log4cxx/trunk/src/changes/changes.xml Wed Mar 12 14:51:39 2008
 <at>  <at>  -216,6 +216,7  <at>  <at> 
 <action issue="LOGCXX-241">Non-ascii named files have names mangled</action>
 <action issue="LOGCXX-242">Eliminate log4cxx proxies for APR types</action>
 <action issue="LOGCXX-243">Problem Compile in Doxy</action>
+<action issue="LOGCXX-246">Config refresh hangs a client application that uses TelnetAppender</action>
 <action issue="LOGCXX-247">MSVC project has wrong additional include directories</action>
 <action issue="LOGCXX-248">ODBCAppender has unicode issues</action>
 </release>
(Continue reading)

carnold | 12 Mar 2008 23:27
Picon
Favicon

svn commit: r636542 - in /logging/log4cxx/trunk/src: main/cpp/ main/include/log4cxx/ main/include/log4cxx/helpers/ main/include/log4cxx/net/ test/cpp/helpers/

Author: carnold
Date: Wed Mar 12 15:27:43 2008
New Revision: 636542

URL: http://svn.apache.org/viewvc?rev=636542&view=rev
Log:
LOGCXX-242: Eliminate log4cxx_thread_t

Modified:
    logging/log4cxx/trunk/src/main/cpp/asyncappender.cpp
    logging/log4cxx/trunk/src/main/cpp/filewatchdog.cpp
    logging/log4cxx/trunk/src/main/cpp/socketappenderskeleton.cpp
    logging/log4cxx/trunk/src/main/cpp/sockethubappender.cpp
    logging/log4cxx/trunk/src/main/cpp/telnetappender.cpp
    logging/log4cxx/trunk/src/main/cpp/threadcxx.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/filewatchdog.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/thread.h
    logging/log4cxx/trunk/src/main/include/log4cxx/net/socketappenderskeleton.h
    logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h
    logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h
    logging/log4cxx/trunk/src/test/cpp/helpers/charsetencodertestcase.cpp

Modified: logging/log4cxx/trunk/src/main/cpp/asyncappender.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/asyncappender.cpp?rev=636542&r1=636541&r2=636542&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/asyncappender.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/asyncappender.cpp Wed Mar 12 15:27:43 2008
 <at>  <at>  -313,7 +313,7  <at>  <at> 

(Continue reading)

carnold | 14 Mar 2008 03:42
Picon
Favicon

svn commit: r636964 - in /logging/log4cxx/trunk/src: changes/changes.xml main/cpp/ndc.cpp main/cpp/threadspecificdata.cpp main/include/log4cxx/helpers/threadspecificdata.h main/include/log4cxx/ndc.h test/cpp/ndctestcase.cpp

Author: carnold
Date: Thu Mar 13 19:42:32 2008
New Revision: 636964

URL: http://svn.apache.org/viewvc?rev=636964&view=rev
Log:
LOGCXX-251: NDC::cloneStack and NDC::inherit missing in 0.10.0

Modified:
    logging/log4cxx/trunk/src/changes/changes.xml
    logging/log4cxx/trunk/src/main/cpp/ndc.cpp
    logging/log4cxx/trunk/src/main/cpp/threadspecificdata.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadspecificdata.h
    logging/log4cxx/trunk/src/main/include/log4cxx/ndc.h
    logging/log4cxx/trunk/src/test/cpp/ndctestcase.cpp

Modified: logging/log4cxx/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/changes/changes.xml?rev=636964&r1=636963&r2=636964&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/changes/changes.xml (original)
+++ logging/log4cxx/trunk/src/changes/changes.xml Thu Mar 13 19:42:32 2008
 <at>  <at>  -219,6 +219,7  <at>  <at> 
 <action issue="LOGCXX-246">Config refresh hangs a client application that uses TelnetAppender</action>
 <action issue="LOGCXX-247">MSVC project has wrong additional include directories</action>
 <action issue="LOGCXX-248">ODBCAppender has unicode issues</action>
+<action issue="LOGCXX-251">NDC::cloneStack and NDC::inherit missing in 0.10.0 RC2</action>
 </release>
 <release version="0.9.7" date="2004-05-10">
 <action type="fix">Fixed examples source code in the "Short introduction to log4cxx".</action>

(Continue reading)

Curt Arnold | 14 Mar 2008 06:57
Picon
Favicon

0.10.0 RC3 likely tomorrow

I'm hoping to pack up an RC3 tomorrow and think that I will have  
addressed all the feedback from the RC2 comments.  If there is  
something that you didn't see covered in the SVN commits and have any  
new blocking issues, now would be a good time to say so.

carnold | 19 Mar 2008 04:43
Picon
Favicon

svn commit: r638694 - in /logging/log4cxx/trunk/src: changes/changes.xml site/xdoc/index.xml

Author: carnold
Date: Tue Mar 18 20:43:40 2008
New Revision: 638694

URL: http://svn.apache.org/viewvc?rev=638694&view=rev
Log:
LOGCXX-262: Add documentation for operator<< in logging requests

Modified:
    logging/log4cxx/trunk/src/changes/changes.xml
    logging/log4cxx/trunk/src/site/xdoc/index.xml

Modified: logging/log4cxx/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/changes/changes.xml?rev=638694&r1=638693&r2=638694&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/changes/changes.xml (original)
+++ logging/log4cxx/trunk/src/changes/changes.xml Tue Mar 18 20:43:40 2008
 <at>  <at>  -220,6 +220,7  <at>  <at> 
 <action issue="LOGCXX-247">MSVC project has wrong additional include directories</action>
 <action issue="LOGCXX-248">ODBCAppender has unicode issues</action>
 <action issue="LOGCXX-251">NDC::cloneStack and NDC::inherit missing in 0.10.0 RC2</action>
+<action issue="LOGCXX-252">Add documentation for use of operator&lt;&lt; in logging requests</action>
 </release>
 <release version="0.9.7" date="2004-05-10">
 <action type="fix">Fixed examples source code in the "Short introduction to log4cxx".</action>

Modified: logging/log4cxx/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/site/xdoc/index.xml?rev=638694&r1=638693&r2=638694&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/site/xdoc/index.xml (original)
(Continue reading)


Gmane