modcplusplus-devel Mailing List for mod_cplusplus (Page 21)
Brought to you by:
gr84b8,
johnksterling
You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(14) |
Dec
(4) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
|
Feb
(44) |
Mar
(8) |
Apr
(33) |
May
(5) |
Jun
(5) |
Jul
(2) |
Aug
(4) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(26) |
Sep
(9) |
Oct
|
Nov
(5) |
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(7) |
Jul
(2) |
Aug
(11) |
Sep
|
Oct
|
Nov
(7) |
Dec
(4) |
| 2005 |
Jan
(13) |
Feb
(7) |
Mar
(10) |
Apr
(11) |
May
(2) |
Jun
|
Jul
(8) |
Aug
(9) |
Sep
|
Oct
(4) |
Nov
|
Dec
|
| 2006 |
Jan
(12) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(6) |
| 2007 |
Jan
(4) |
Feb
(13) |
Mar
(10) |
Apr
(56) |
May
(69) |
Jun
(93) |
Jul
(116) |
Aug
(62) |
Sep
(15) |
Oct
(14) |
Nov
(18) |
Dec
(11) |
| 2008 |
Jan
(8) |
Feb
(13) |
Mar
(32) |
Apr
(22) |
May
(15) |
Jun
(10) |
Jul
(18) |
Aug
(10) |
Sep
(16) |
Oct
(12) |
Nov
(41) |
Dec
(40) |
| 2009 |
Jan
(33) |
Feb
(14) |
Mar
(32) |
Apr
(47) |
May
(103) |
Jun
(100) |
Jul
(72) |
Aug
(21) |
Sep
(22) |
Oct
(30) |
Nov
(7) |
Dec
(19) |
| 2010 |
Jan
(8) |
Feb
(7) |
Mar
(40) |
Apr
(53) |
May
(67) |
Jun
(62) |
Jul
(26) |
Aug
(37) |
Sep
(13) |
Oct
(3) |
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:15:20
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Modified Files: Makefile.am Log Message: build and test APRDir. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/files/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 23 Feb 2002 04:10:00 -0000 1.2 +++ Makefile.am 23 Feb 2002 21:14:50 -0000 1.3 @@ -1,4 +1,4 @@ CLEANFILES = libcpp_files.so *~ -libcpp_files_la_SOURCES = cpp_path.cpp cpp_anyfile.cpp +libcpp_files_la_SOURCES = cpp_path.cpp cpp_anyfile.cpp cpp_dir.cpp lib_LTLIBRARIES = libcpp_files.la |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:14:50
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : test
Dir : apr_cplusplus/test
Modified Files:
.cvsignore Makefile.am
Log Message:
build and test APRDir.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- .cvsignore 23 Feb 2002 04:10:00 -0000 1.4
+++ .cvsignore 23 Feb 2002 21:14:50 -0000 1.5
@@ -10,3 +10,4 @@
test_exception
test_path
test_anyfile
+test_dir
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 23 Feb 2002 04:10:00 -0000 1.6
+++ Makefile.am 23 Feb 2002 21:14:50 -0000 1.7
@@ -18,7 +18,8 @@
test_time \
test_exception \
test_path \
- test_anyfile
+ test_anyfile \
+ test_dir
test_hash_LDADD = $(STANDARD_LDADDS)
test_hash_SOURCES = test_hash.cpp
@@ -41,10 +42,14 @@
test_anyfile_LDADD = $(STANDARD_LDADDS)
test_anyfile_SOURCES = test_anyfile.cpp
+test_dir_LDADD = $(STANDARD_LDADDS)
+test_dir_SOURCES = test_dir.cpp
+
TESTS = test_hash \
test_hashiter \
test_table \
test_time \
test_exception \
test_path \
- test_anyfile
+ test_anyfile \
+ test_dir
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:14:17
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : src
Dir : apr_cplusplus/src/files
Modified Files:
cpp_anyfile.cpp
Log Message:
it's possible to get an apr_finfo_t where there is a name member
but no fname member. in this case, just slap name at the
end of the cwd.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/files/cpp_anyfile.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- cpp_anyfile.cpp 23 Feb 2002 04:09:15 -0000 1.1
+++ cpp_anyfile.cpp 23 Feb 2002 21:14:17 -0000 1.2
@@ -1,3 +1,4 @@
+#include "apr_strings.h"
#include "cpp_exception.h"
#include "cpp_anyfile.h"
@@ -10,7 +11,17 @@
APRAnyFile::APRAnyFile(apr_pool_t *pPool, apr_finfo_t *pInfo) {
mPool = pPool;
mInfo = pInfo;
- mName = mInfo->fname;
+ if (mInfo->fname) {
+ mName = mInfo->fname;
+ } else {
+ /* it's possible to get an apr_finfo_t where there is a name member
+ * but no fname member. in this case, just slap name at the
+ * end of the cwd.
+ */
+ char *path = (char *)apr_pcalloc(mPool, sizeof(*path));
+ apr_filepath_get(&path, 0, mPool);
+ mName = apr_psprintf(mPool, "%s/%s", path, mInfo->name);
+ }
}
void APRAnyFile::DoStat(void) {
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:13:32
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : test Dir : apr_cplusplus/test Added Files: test_dir.cpp Log Message: test for APRDir. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:13:07
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Added Files: cpp_dir.cpp Log Message: new APRDir class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 21:13:07
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : include Dir : apr_cplusplus/include Added Files: cpp_dir.h Log Message: new APRDir class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 04:10:31
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Modified Files: Makefile.am Log Message: build APRAnyFile and tests. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/files/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- Makefile.am 22 Feb 2002 16:36:23 -0000 1.1 +++ Makefile.am 23 Feb 2002 04:10:00 -0000 1.2 @@ -1,4 +1,4 @@ CLEANFILES = libcpp_files.so *~ -libcpp_files_la_SOURCES = cpp_path.cpp +libcpp_files_la_SOURCES = cpp_path.cpp cpp_anyfile.cpp lib_LTLIBRARIES = libcpp_files.la |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 04:10:01
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : test
Dir : apr_cplusplus/test
Modified Files:
.cvsignore Makefile.am
Log Message:
build APRAnyFile and tests.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- .cvsignore 22 Feb 2002 16:36:23 -0000 1.3
+++ .cvsignore 23 Feb 2002 04:10:00 -0000 1.4
@@ -9,3 +9,4 @@
test_time
test_exception
test_path
+test_anyfile
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 22 Feb 2002 16:36:23 -0000 1.5
+++ Makefile.am 23 Feb 2002 04:10:00 -0000 1.6
@@ -17,7 +17,8 @@
test_hashiter \
test_time \
test_exception \
- test_path
+ test_path \
+ test_anyfile
test_hash_LDADD = $(STANDARD_LDADDS)
test_hash_SOURCES = test_hash.cpp
@@ -37,9 +38,13 @@
test_path_LDADD = $(STANDARD_LDADDS)
test_path_SOURCES = test_path.cpp
+test_anyfile_LDADD = $(STANDARD_LDADDS)
+test_anyfile_SOURCES = test_anyfile.cpp
+
TESTS = test_hash \
test_hashiter \
test_table \
test_time \
test_exception \
- test_path
+ test_path \
+ test_anyfile
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 04:09:36
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : test Dir : apr_cplusplus/test Added Files: test_anyfile.cpp Log Message: test for APRAnyFile class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 04:09:15
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Added Files: cpp_anyfile.cpp Log Message: new APRAnyFile class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-23 04:09:15
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : include Dir : apr_cplusplus/include Added Files: cpp_anyfile.h Log Message: new APRAnyFile class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:36:54
|
Mod Cplusplus CVS committal Author : barbee- Module : apr_cplusplus Dir : apr_cplusplus Modified Files: configure.in Log Message: build, configure and cvsignores for new APRPath. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/configure.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- configure.in 19 Feb 2002 15:48:40 -0000 1.5 +++ configure.in 22 Feb 2002 16:36:23 -0000 1.6 @@ -32,4 +32,4 @@ AC_SUBST(LIB_PTHREAD) AC_SUBST(LIB_DL) -AC_OUTPUT(Makefile src/Makefile src/tables/Makefile src/pools/Makefile src/times/Makefile src/exceptions/Makefile test/Makefile) +AC_OUTPUT(Makefile src/Makefile src/tables/Makefile src/pools/Makefile src/times/Makefile src/exceptions/Makefile src/files/Makefile test/Makefile) |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:36:54
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src Modified Files: Makefile.am Log Message: build, configure and cvsignores for new APRPath. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- Makefile.am 19 Feb 2002 15:48:41 -0000 1.4 +++ Makefile.am 22 Feb 2002 16:36:23 -0000 1.5 @@ -1 +1 @@ -SUBDIRS = tables pools times exceptions +SUBDIRS = tables pools times exceptions files |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:36:24
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Added Files: .cvsignore Makefile.am Log Message: build, configure and cvsignores for new APRPath. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:36:24
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : test
Dir : apr_cplusplus/test
Modified Files:
.cvsignore Makefile.am
Log Message:
build, configure and cvsignores for new APRPath.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore 19 Feb 2002 15:48:21 -0000 1.2
+++ .cvsignore 22 Feb 2002 16:36:23 -0000 1.3
@@ -2,8 +2,10 @@
Makefile
.deps
.libs
+*core
test_hash
test_table
test_hashiter
test_time
test_exception
+test_path
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 19 Feb 2002 15:48:21 -0000 1.4
+++ Makefile.am 22 Feb 2002 16:36:23 -0000 1.5
@@ -7,6 +7,7 @@
STANDARD_LDADDS = $(top_srcdir)/src/tables/libcpp_tables.la \
$(top_srcdir)/src/times/libcpp_times.la \
$(top_srcdir)/src/exceptions/libcpp_exceptions.la \
+ $(top_srcdir)/src/files/libcpp_files.la \
$(LIB_PTHREAD) $(LIB_DL) -lcrypt \
$(APR_DIR)/libapr.la
@@ -15,7 +16,8 @@
test_table \
test_hashiter \
test_time \
- test_exception
+ test_exception \
+ test_path
test_hash_LDADD = $(STANDARD_LDADDS)
test_hash_SOURCES = test_hash.cpp
@@ -32,8 +34,12 @@
test_exception_LDADD = $(STANDARD_LDADDS)
test_exception_SOURCES = test_exception.cpp
+test_path_LDADD = $(STANDARD_LDADDS)
+test_path_SOURCES = test_path.cpp
+
TESTS = test_hash \
test_hashiter \
test_table \
test_time \
- test_exception
+ test_exception \
+ test_path
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:35:53
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : test Dir : apr_cplusplus/test Added Files: test_path.cpp Log Message: test for APRPath. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:35:24
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : include Dir : apr_cplusplus/include Added Files: cpp_path.h Log Message: new APRPath class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:35:24
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Added Files: cpp_path.cpp Log Message: new APRPath class. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:33:27
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/files Log Message: Directory /cvsroot/modcplusplus/apr_cplusplus/src/files added to the repository |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:49:12
|
Mod Cplusplus CVS committal Author : barbee- Module : apr_cplusplus Dir : apr_cplusplus Modified Files: configure.in Log Message: build APRException. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- configure.in 19 Feb 2002 04:16:40 -0000 1.4 +++ configure.in 19 Feb 2002 15:48:40 -0000 1.5 @@ -32,4 +32,4 @@ AC_SUBST(LIB_PTHREAD) AC_SUBST(LIB_DL) -AC_OUTPUT(Makefile src/Makefile src/tables/Makefile src/pools/Makefile src/times/Makefile test/Makefile) +AC_OUTPUT(Makefile src/Makefile src/tables/Makefile src/pools/Makefile src/times/Makefile src/exceptions/Makefile test/Makefile) |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:49:12
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src Modified Files: Makefile.am Log Message: build APRException. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- Makefile.am 19 Feb 2002 04:16:40 -0000 1.3 +++ Makefile.am 19 Feb 2002 15:48:41 -0000 1.4 @@ -1 +1 @@ -SUBDIRS = tables pools times +SUBDIRS = tables pools times exceptions |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:48:41
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/exceptions Added Files: .cvsignore Makefile.am Log Message: build APRException. |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:48:23
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : test
Dir : apr_cplusplus/test
Modified Files:
.cvsignore Makefile.am
Log Message:
include test_exception in test suite.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- .cvsignore 19 Feb 2002 04:10:05 -0000 1.1
+++ .cvsignore 19 Feb 2002 15:48:21 -0000 1.2
@@ -6,3 +6,4 @@
test_table
test_hashiter
test_time
+test_exception
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 19 Feb 2002 04:16:40 -0000 1.3
+++ Makefile.am 19 Feb 2002 15:48:21 -0000 1.4
@@ -6,6 +6,7 @@
STANDARD_LDADDS = $(top_srcdir)/src/tables/libcpp_tables.la \
$(top_srcdir)/src/times/libcpp_times.la \
+ $(top_srcdir)/src/exceptions/libcpp_exceptions.la \
$(LIB_PTHREAD) $(LIB_DL) -lcrypt \
$(APR_DIR)/libapr.la
@@ -13,7 +14,8 @@
test_hash \
test_table \
test_hashiter \
- test_time
+ test_time \
+ test_exception
test_hash_LDADD = $(STANDARD_LDADDS)
test_hash_SOURCES = test_hash.cpp
@@ -27,7 +29,11 @@
test_time_LDADD = $(STANDARD_LDADDS)
test_time_SOURCES = test_time.cpp
+test_exception_LDADD = $(STANDARD_LDADDS)
+test_exception_SOURCES = test_exception.cpp
+
TESTS = test_hash \
test_hashiter \
test_table \
- test_time
+ test_time \
+ test_exception
|
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:47:49
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : test Dir : apr_cplusplus/test Added Files: test_exception.cpp Log Message: test for APRException |
|
From: Mod C. C. L. <mod...@so...> - 2002-02-19 15:47:33
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : include Dir : apr_cplusplus/include Added Files: cpp_exception.h Log Message: a basic exception class for apr classes. |