Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin
In directory usw-pr-cvs1:/tmp/cvs-serv6771/lib/HTTP/WebTest/Plugin
Modified Files:
TextMatchTest.pm StatusTest.pm ResponseTimeTest.pm Loader.pm
Hooks.pm HarnessReport.pm DefaultReport.pm Cookies.pm
ContentSizeTest.pm Click.pm Apache.pm
Log Message:
Minor POD docs tweaks
Index: TextMatchTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/TextMatchTest.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TextMatchTest.pm 15 Feb 2002 23:59:44 -0000 1.3
--- TextMatchTest.pm 12 May 2002 13:35:35 -0000 1.4
***************
*** 14,18 ****
This plugin provides test parameters which allow to check response
! body. It supports regexps and literal string searches.
=cut
--- 14,18 ----
This plugin provides test parameters which allow to check response
! body. It supports regexps and literal string searches.
=cut
***************
*** 146,152 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 146,152 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: StatusTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/StatusTest.pm,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** StatusTest.pm 24 Jan 2002 12:26:29 -0000 1.1.1.1
--- StatusTest.pm 12 May 2002 13:35:35 -0000 1.2
***************
*** 43,49 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 43,49 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: ResponseTimeTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/ResponseTimeTest.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ResponseTimeTest.pm 2 Feb 2002 04:08:19 -0000 1.2
--- ResponseTimeTest.pm 12 May 2002 13:35:35 -0000 1.3
***************
*** 96,102 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 96,102 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: Loader.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Loader.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Loader.pm 2 Feb 2002 04:08:19 -0000 1.2
--- Loader.pm 12 May 2002 13:35:35 -0000 1.3
***************
*** 32,38 ****
I<GLOBAL PARAMETER>
! A list of module names. Loads these modules and registers them as
! L<HTTP::WebTest|HTTP::WebTest> plugins. If name of plugin starts with
! C<::> prepends it with C<HTTP::WebTest::Plugin>. So
plugins = ( ::ValidateHTML )
--- 32,38 ----
I<GLOBAL PARAMETER>
! A list of module names. Loads these modules and registers them as
! L<HTTP::WebTest|HTTP::WebTest> plugins. If name of plugin starts with
! C<::> prepends it with C<HTTP::WebTest::Plugin>. So
plugins = ( ::ValidateHTML )
***************
*** 70,74 ****
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 70,74 ----
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: Hooks.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Hooks.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Hooks.pm 16 Feb 2002 00:44:14 -0000 1.4
--- Hooks.pm 12 May 2002 13:35:35 -0000 1.5
***************
*** 32,36 ****
This plugin module adds test parameters which values are evaluated at
! specific time of L<HTTP::WebTest> test run. It can be used to do some
initialization before doing test request, to do some finalization when
test response is received or to implement user defined tests without
--- 32,36 ----
This plugin module adds test parameters which values are evaluated at
! specific time of L<HTTP::WebTest> test run. It can be used to do some
initialization before doing test request, to do some finalization when
test response is received or to implement user defined tests without
***************
*** 48,59 ****
=head2 on_request
! Value of this test parameter is ignored. However it is evaluted before
! L<HTTP::WebTest> does a request to web page so it is useful to do some
! initalization before the request.
=head2 on_response
! This is list parameter which is treated as test result. It is evaluted
! when L<HTTP::WebTest> gets a response for the test request.
It can be useful to define custom tests without writting new plugins
--- 48,59 ----
=head2 on_request
! Value of this test parameter is ignored. However it is evaluted
! before L<HTTP::WebTest> does a request to web page so it is useful to
! do some initalization before the request.
=head2 on_response
! This is list parameter which is treated as test result. It is
! evaluted when L<HTTP::WebTest> gets a response for the test request.
It can be useful to define custom tests without writting new plugins
***************
*** 68,73 ****
YESNON, COMMENTN )
! Here C<YESNO>, C<COMMENT> - is a test result. C<YESNO> - is either
! C<yes> if test is successful or C<no> if it is not. C<COMMENT> is a
text of comment associated with this test.
--- 68,73 ----
YESNON, COMMENTN )
! Here C<YESNO>, C<COMMENT> - is a test result. C<YESNO> - is either
! C<yes> if test is successful or C<no> if it is not. C<COMMENT> is a
text of comment associated with this test.
***************
*** 134,138 ****
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 134,138 ----
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: HarnessReport.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/HarnessReport.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** HarnessReport.pm 8 Apr 2002 06:50:26 -0000 1.4
--- HarnessReport.pm 12 May 2002 13:35:35 -0000 1.5
***************
*** 15,24 ****
This plugin creates L<Test::Harness|Test::Harness> compatible test
! reports. This plugin is not loaded by default by
! L<HTTP::WebTest|HTTP::WebTest>. To load it use global test parameter
C<plugins>.
Unless you want to get mix of outputs from default and this report
! plugins default report plugin should disabled. See parameter
C<default_report> (value C<no>).
--- 15,24 ----
This plugin creates L<Test::Harness|Test::Harness> compatible test
! reports. This plugin is not loaded by default by
! L<HTTP::WebTest|HTTP::WebTest>. To load it use global test parameter
C<plugins>.
Unless you want to get mix of outputs from default and this report
! plugins default report plugin should disabled. See parameter
C<default_report> (value C<no>).
***************
*** 90,94 ****
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 90,94 ----
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: DefaultReport.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/DefaultReport.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** DefaultReport.pm 12 Feb 2002 12:47:10 -0000 1.4
--- DefaultReport.pm 12 May 2002 13:35:35 -0000 1.5
***************
*** 13,17 ****
=head1 DESCRIPTION
! This plugin is default test report plugin. Builds simple plain text
report.
--- 13,17 ----
=head1 DESCRIPTION
! This plugin is default test report plugin. Builds simple plain text
report.
***************
*** 32,41 ****
This parameter defines if default report plugin should be used for
! test report creation. Value C<yes> means that default report plugin
! should be used, value C<no> means that it should not. It can be useful
! if it is desired to use another non-default report for creation of
! test report. It can be used to disable any output at all also (i.e. if
! this parameter has value C<no> and no other report plugins are
! loaded).
=head3 Allowed values
--- 32,41 ----
This parameter defines if default report plugin should be used for
! test report creation. Value C<yes> means that default report plugin
! should be used, value C<no> means that it should not. It can be
! useful if it is desired to use another non-default report for creation
! of test report. It can be used to disable any output at all also
! (i.e. if this parameter has value C<no> and no other report plugins
! are loaded).
=head3 Allowed values
***************
*** 315,321 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 315,321 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: Cookies.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Cookies.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Cookies.pm 2 Feb 2002 04:08:19 -0000 1.2
--- Cookies.pm 12 May 2002 13:35:35 -0000 1.3
***************
*** 33,38 ****
These cookies exist only while the program is executing and do not
! affect subsequent runs. These cookies do not affect your browser or
! any software other than the test program. These cookies are only
accessible to other tests executed during test sequence execution.
--- 33,38 ----
These cookies exist only while the program is executing and do not
! affect subsequent runs. These cookies do not affect your browser or
! any software other than the test program. These cookies are only
accessible to other tests executed during test sequence execution.
***************
*** 49,58 ****
=head2 send_cookies
! Option to send cookies to web server. This applies to cookies received
! from the web server or cookies specified using the C<cookies> test
! parameter.
This does NOT give the web server(s) access to cookies created with a
! browser or any user agent software other than this program. The
cookies created while this program is running are only accessible to
other tests in the same test sequence.
--- 49,58 ----
=head2 send_cookies
! Option to send cookies to web server. This applies to cookies
! received from the web server or cookies specified using the C<cookies>
! test parameter.
This does NOT give the web server(s) access to cookies created with a
! browser or any user agent software other than this program. The
cookies created while this program is running are only accessible to
other tests in the same test sequence.
***************
*** 107,111 ****
=item * name (REQUIRED)
! Name of cookie. Cannot begin with a $ character.
=item * value (REQUIRED)
--- 107,111 ----
=item * name (REQUIRED)
! Name of cookie. Cannot begin with a $ character.
=item * value (REQUIRED)
***************
*** 115,124 ****
=item * path (REQUIRED)
! URL path name for which this cookie applies. Must begin with a /
character. See also path_spec.
=item * domain (REQUIRED)
! Domain for which cookie is valid. (REQUIRED). Should begin with a
period. Must either contain two periods or be equal to C<.local>.
--- 115,124 ----
=item * path (REQUIRED)
! URL path name for which this cookie applies. Must begin with a /
character. See also path_spec.
=item * domain (REQUIRED)
! Domain for which cookie is valid. (REQUIRED). Should begin with a
period. Must either contain two periods or be equal to C<.local>.
***************
*** 170,175 ****
=item * discard
! Option to discard cookie when the program finishes. Default 0. (The
! cookie will be discarded regardless of the value of this element.)
=over 4
--- 170,176 ----
=item * discard
! Option to discard cookie when the program finishes. Default is 0.
! (The cookie will be discarded regardless of the value of this
! element.)
=over 4
***************
*** 187,191 ****
=item * name/value
! Zero, one or several name/value pairs may be specified. The name
parameters are words such as Comment or CommentURL and the value
parameters are strings that may contain embedded blanks.
--- 188,192 ----
=item * name/value
! Zero, one or several name/value pairs may be specified. The name
parameters are words such as Comment or CommentURL and the value
parameters are strings that may contain embedded blanks.
***************
*** 301,307 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 302,308 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: ContentSizeTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/ContentSizeTest.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ContentSizeTest.pm 15 Feb 2002 23:37:38 -0000 1.4
--- ContentSizeTest.pm 12 May 2002 13:35:35 -0000 1.5
***************
*** 96,102 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 96,102 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: Click.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Click.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Click.pm 27 Apr 2002 22:01:26 -0000 1.4
--- Click.pm 12 May 2002 13:35:35 -0000 1.5
***************
*** 201,205 ****
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 201,205 ----
=head1 COPYRIGHT
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
Index: Apache.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Apache.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Apache.pm 2 Feb 2002 04:08:19 -0000 1.3
--- Apache.pm 12 May 2002 13:35:35 -0000 1.4
***************
*** 13,18 ****
=head1 DESCRIPTION
! This plugin provides support for local web file test mode. Apache must
! be installed to run tests in this mode.
=for pod_merge copy apache
--- 13,18 ----
=head1 DESCRIPTION
! This plugin provides support for local web file test mode. Apache
! must be installed to run tests in this mode.
=for pod_merge copy apache
***************
*** 24,37 ****
The C<apache_dir> parameter must be set to the name of a directory
! that contains the subdirectories C<conf>, C<logs> and C<htdocs>. The
! C<conf> subdirectory must contain a file named C<httpd.conf-dist>. The
! C<htdocs> subdirectory must contain a subdirectory named C<webtest>
! that contains a file named C<is_apache_responding.html>. If your
! installation of Apache has the Perl module L<Apache::ASP|Apache::ASP>
! configured, the C<apache_dir> directory must also contain a
! subdirectory named C<asp_tmp>.
The file C<httpd.conf-dist> is used as template for the Apache config
! file. It contains tags which are replaced with the values needed by
the Apache server that the program starts at runtime.
--- 24,37 ----
The C<apache_dir> parameter must be set to the name of a directory
! that contains the subdirectories C<conf>, C<logs> and C<htdocs>. The
! C<conf> subdirectory must contain a file named C<httpd.conf-dist>.
! The C<htdocs> subdirectory must contain a subdirectory named
! C<webtest> that contains a file named C<is_apache_responding.html>.
! If your installation of Apache has the Perl module
! L<Apache::ASP|Apache::ASP> configured, the C<apache_dir> directory
! must also contain a subdirectory named C<asp_tmp>.
The file C<httpd.conf-dist> is used as template for the Apache config
! file. It contains tags which are replaced with the values needed by
the Apache server that the program starts at runtime.
***************
*** 84,91 ****
I<GLOBAL PARAMETER>
! Absolute or relative path name of directory containing
! Apache files. See the
! L<APACHE DIRECTORY AND FILES|/"APACHE DIRECTORY AND FILES"> section.
! This parameter is ignored unless the C<file_path> parameter is specified.
=head3 Default value
--- 84,91 ----
I<GLOBAL PARAMETER>
! Absolute or relative path name of directory containing Apache files.
! See the L<APACHE DIRECTORY AND FILES|/"APACHE DIRECTORY AND FILES">
! section. This parameter is ignored unless the C<file_path> parameter
! is specified.
=head3 Default value
***************
*** 97,103 ****
I<GLOBAL PARAMETER>
! Absolute or relative path name of Apache executable. This command can
! be in your C<$PATH>. This parameter is ignored unless the C<file_path>
! parameter is specified.
=head3 Default value
--- 97,103 ----
I<GLOBAL PARAMETER>
! Absolute or relative path name of Apache executable. This command can
! be in your C<$PATH>. This parameter is ignored unless the
! C<file_path> parameter is specified.
=head3 Default value
***************
*** 109,116 ****
I<GLOBAL PARAMETER>
! Apache logging level. If you use a level less than C<warn> (i.e.,
C<debug>, C<info>, or C<notice>), the program may generate irrelevant
! errors. This parameter is ignored unless the C<file_path> parameter is
! specified. See also the C<ignore_error_log> parameter.
=head3 Allowed values
--- 109,116 ----
I<GLOBAL PARAMETER>
! Apache logging level. If you use a level less than C<warn> (i.e.,
C<debug>, C<info>, or C<notice>), the program may generate irrelevant
! errors. This parameter is ignored unless the C<file_path> parameter
! is specified. See also the C<ignore_error_log> parameter.
=head3 Allowed values
***************
*** 127,131 ****
I<GLOBAL PARAMETER>
! Maximum number of seconds to wait for Apache to start. This parameter
is ignored unless the C<file_path> parameter is specified.
--- 127,131 ----
I<GLOBAL PARAMETER>
! Maximum number of seconds to wait for Apache to start. This parameter
is ignored unless the C<file_path> parameter is specified.
***************
*** 138,145 ****
I<GLOBAL PARAMETER>
! Additional Apache command line options. Many of the options cause
Apache to exit immediately after starting, so the web page tests will
! not run. This parameter is ignored unless the C<file_path> parameter is
! specified.
=head3 Allowed values
--- 138,145 ----
I<GLOBAL PARAMETER>
! Additional Apache command line options. Many of the options cause
Apache to exit immediately after starting, so the web page tests will
! not run. This parameter is ignored unless the C<file_path> parameter
! is specified.
=head3 Allowed values
***************
*** 151,167 ****
I<GLOBAL PARAMETER>
! The pathname of a local web server error log. The module counts the
! number of lines in the error log before and after each request. If the
! number of lines increases, an error is counted and the additional
! lines are listed in the report. This argument should be used only when
! the local web server is running in single-process mode. Otherwise,
! requests generated by other processes/users may add lines to the error
! log that are not related to the requests generated by this module. See
! also parameter C<ignore_error_log>.
=head2 file_path
If L<HTTP::WebTest|HTTP::WebTest> encounters parameter C<file_path> it
! switches in local web file test mode. In local web file test mode it
launches an instance of Apache daemon, copies local test file(s) under
DocumentRoot of this Apache and performs test checks against it.
--- 151,167 ----
I<GLOBAL PARAMETER>
! The pathname of a local web server error log. The module counts the
! number of lines in the error log before and after each request. If
! the number of lines increases, an error is counted and the additional
! lines are listed in the report. This argument should be used only
! when the local web server is running in single-process mode.
! Otherwise, requests generated by other processes/users may add lines
! to the error log that are not related to the requests generated by
! this module. See also parameter C<ignore_error_log>.
=head2 file_path
If L<HTTP::WebTest|HTTP::WebTest> encounters parameter C<file_path> it
! switches in local web file test mode. In local web file test mode it
launches an instance of Apache daemon, copies local test file(s) under
DocumentRoot of this Apache and performs test checks against it.
***************
*** 169,186 ****
=head3 Allowed values
! Two-element list. First element is the file to test, either an
! absolute or a relative pathname. Second element is the subdirectory
pathname, relative to the Apache htdocs directory, to copy the file
! to. The copied file will have the same basename as the first element
! and the relative pathname of the second element. To copy the file
directly to the htdocs directory, use a pathname of C<.> or C<./.>.
=head2 ignore_error_log
! Option to ignore any errors found in the Apache error log. The default
! behavior is to flag an error if the fetch causes any errors to be
! added to the error log and echo the errors to the program output. This
! check is available only if C<error_log> parameter is specified. See also
! the C<apache_loglevel> parameter.
=head3 Allowed values
--- 169,186 ----
=head3 Allowed values
! Two-element list. First element is the file to test, either an
! absolute or a relative pathname. Second element is the subdirectory
pathname, relative to the Apache htdocs directory, to copy the file
! to. The copied file will have the same basename as the first element
! and the relative pathname of the second element. To copy the file
directly to the htdocs directory, use a pathname of C<.> or C<./.>.
=head2 ignore_error_log
! Option to ignore any errors found in the Apache error log. The
! default behavior is to flag an error if the fetch causes any errors to
! be added to the error log and echo the errors to the program output.
! This check is available only if C<error_log> parameter is specified.
! See also the C<apache_loglevel> parameter.
=head3 Allowed values
***************
*** 194,203 ****
=head2 include_file_path
! List with an even number of elements. Odd-numbered elements are files
to copy to the the temporary Apache directory before running the
! tests. These files can be specified using either an absolute or a
! relative pathname. Even-numbered elements are the subdirectory
pathname, relative to the Apache ServerRoot directory, to copy the
! corresponding file to. The copied file will have the same basename as
the odd-numbered element and the relative pathname of the
corresponding even-numbered element. To copy the file directly to the
--- 194,203 ----
=head2 include_file_path
! List with an even number of elements. Odd-numbered elements are files
to copy to the the temporary Apache directory before running the
! tests. These files can be specified using either an absolute or a
! relative pathname. Even-numbered elements are the subdirectory
pathname, relative to the Apache ServerRoot directory, to copy the
! corresponding file to. The copied file will have the same basename as
the odd-numbered element and the relative pathname of the
corresponding even-numbered element. To copy the file directly to the
***************
*** 210,216 ****
will copy the file to htdocs/includes/header.inc.
! This parameter is also useful for adding Perl modules that are
! needed by the web page specified by the file_path parameter. For
! example:
include_file_path = ( ../apps/myapp/DBconn.pm => lib/perl/apps )
--- 210,215 ----
will copy the file to htdocs/includes/header.inc.
! This parameter is also useful for adding Perl modules that are needed
! by the web page specified by the file_path parameter. For example:
include_file_path = ( ../apps/myapp/DBconn.pm => lib/perl/apps )
***************
*** 389,393 ****
# forks a child process that starts Apache in on a random
! # private/dynamic port number. Verifies that Apache has started by
# fetching a test page and searching the fetched page for a tag line.
sub start_apache {
--- 388,392 ----
# forks a child process that starts Apache in on a random
! # private/dynamic port number. Verifies that Apache has started by
# fetching a test page and searching the fetched page for a tag line.
sub start_apache {
***************
*** 543,549 ****
# copy a file to a root directory concatenated with a relative
! # pathname, creating directories as needed. The basename of the file
! # is preserved. Returns pathname of file that was created, relative to
! # root directory
sub copy_file {
my $self = shift;
--- 542,548 ----
# copy a file to a root directory concatenated with a relative
! # pathname, creating directories as needed. The basename of the file
! # is preserved. Returns pathname of file that was created, relative
! # to root directory
sub copy_file {
my $self = shift;
***************
*** 593,599 ****
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
--- 592,598 ----
=head1 COPYRIGHT
! Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
! Copyright (c) 2001,2002 Ilya Martynov. All rights reserved.
This module is free software. It may be used, redistributed and/or
|