Update of /cvsroot/http-webtest/HTTP-WebTest-Plugin-DateTest
In directory sc8-pr-cvs1:/tmp/cvs-serv21188
Modified Files:
Changes MANIFEST README
Added Files:
TODO
Log Message:
Preparation for release, more test cases
--- NEW FILE: TODO ---
TODO HTTP::WebTest::Plugin::DateTest
In no particular order:
o Add plugin parameter "time_zone" for date calculations
This could be useful for other plugins as well, maybe
o Use core param "ignore_case" for matching start/end markers
If it's available, why not use it?
o Add regex support for matching start/end markers
More flexibility, also to match start or end of
line or file
o Add test cases for more Date::Language::*
Keeping up with released versions of TimeDate seems
reasonable, especially if the test is skipped on
a platform where these languages are missing.
o Think long and hard about character encoding issues
The modules that come with Date::Language seem not to
agree on one single encoding:
- Roman languages seem to be encoded in ISO-8859-1
- Greek is encoded in UTF-8
Web servers sometimes set the encoding correctly in the
HTTP headers, a html document may override this in a
specific <meta ...> element and then the user agent may
assume some default. What a mess!
Index: Changes
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-DateTest/Changes,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Changes 9 Oct 2002 22:15:16 -0000 1.2
--- Changes 31 Dec 2002 15:46:12 -0000 1.3
***************
*** 1,4 ****
--- 1,15 ----
Revision history for Perl extension DateTest.
+ 1.00 Tue Dec 31 13:57:47 CET 2002
+ - improved human readable result output
+ - added TODO list
+ - prepared for release on CPAN
+
+ 0.99 Mon Dec 30 18:49:36 CET 2002
+ - compatibility with HTTP::WebTest 2.00 (IlyaM)
+ - API change from 1.XX, be sure to upgrade!
+ - fixed time zone issues in testcases (IlyaM)
+ - fixed behaviour for empty date string
+
0.91 Thu Oct 10 00:02:49 CEST 2002
- use same time units as test spec for return value
Index: MANIFEST
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-DateTest/MANIFEST,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** MANIFEST 12 Sep 2002 13:11:01 -0000 1.1.1.1
--- MANIFEST 31 Dec 2002 15:46:12 -0000 1.2
***************
*** 4,14 ****
--- 4,17 ----
Makefile.PL
README
+ TODO
lib/HTTP/WebTest/Plugin/DateTest.pm
t/01_basic.t
t/02_dateparsing.t
t/03_timeunits.t
+ t/dyn.txt
t/in.html
t/lib/HTTP/WebTest/Plugin/Cookies.pm
t/lib/HTTP/WebTest/Plugin/FileRequest.pm
t/test.out/basic
+ t/test.out/dyn.txt
t/utils.pl
Index: README
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-DateTest/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** README 30 Dec 2002 17:22:19 -0000 1.3
--- README 31 Dec 2002 15:46:12 -0000 1.4
***************
*** 1,3 ****
! DateTest version 0.99
=====================
--- 1,3 ----
! DateTest version 1.00
=====================
***************
*** 30,34 ****
DEPENDENCIES
! This module requires these other modules and libraries:
HTTP::WebTest (version 2.00 or newer)
--- 30,34 ----
DEPENDENCIES
! This module requires the following other modules and libraries:
HTTP::WebTest (version 2.00 or newer)
|