stas2003/02/23 16:02:44
Modified:src/modules/perl modperl_apache_includes.h
Log:
include apr_version.h so we can use the defines
APR_MINOR_VERSION/APR_PATCH_VERSION
Revision ChangesPath
1.20 +1 -0 modperl-2.0/src/modules/perl/modperl_apache_includes.h
stas2003/02/23 18:08:31
Modified:lib/ModPerl WrapXS.pm .cvsignore
.Changes
Log:
implement a new helper module ModPerl::MethodLookup to help figure out
which module should be loaded when a certain method is reported to be
missing
Revision Changes
stas2003/02/24 14:13:02
Modified:src/docs/1.0/guide config.pod
Log:
PerlFreshRestart On|Off, not No
Submitted by: William McKee <[EMAIL PROTECTED]>
Revision ChangesPath
1.16 +1 -1 modperl-docs/src/docs/1.0/guide/config.pod
Index: conf
stas2003/02/24 14:18:46
Modified:src/docs/1.0/guide troubleshooting.pod
Log:
a little rephrasing to aid the search engines to find the PerlFreshRestart section
Submitted by: William McKee <[EMAIL PROTECTED]>
Revision ChangesPath
1.19 +15 -10modper
stas2003/02/26 21:12:59
Modified:src/docs/1.0/guide getwet.pod
Log:
now that we have mp2, we should be more specific about what versions should be used
for
mp1
Revision ChangesPath
1.10 +20 -17modperl-docs/src/docs/1.0/guide/getwet.pod
Index
stas2003/02/28 22:49:21
Modified:src/docs/2.0/devel/debug c.pod
src/docs/2.0/devel/debug/code .debug-modperl-init
.debug-modperl-register .debug-modperl-xs
Log:
add a note about preloading libpthread lib's symbols in order to be able
stas2003/02/28 23:06:48
Modified:src/docs/2.0/devel/debug c.pod
Log:
more various debug notes
Revision ChangesPath
1.6 +51 -0 modperl-docs/src/docs/2.0/devel/debug/c.pod
Index: c.pod
stas2003/02/28 23:07:59
Modified:src/docs/2.0/devel/debug c.pod
Log:
fix typo
Revision ChangesPath
1.7 +1 -1 modperl-docs/src/docs/2.0/devel/debug/c.pod
Index: c.pod
===
RCS file
stas2003/02/28 16:53:20
Modified:lib/ModPerl Code.pm
.Changes
Log:
fix the code that autogenerates modperl_largefiles.h not to define
macros matching m/^-/ (was a problem on aix-4.3.3)
Revision ChangesPath
1.93 +1 -0 modperl-2.0/lib
stas2003/03/02 02:30:56
Modified:src/modules/perl modperl_filter.c
.Changes
Added: t/filter in_str_declined.t
t/filter/TestFilter in_str_declined.pm
Log:
fix the input filters handling of DECLINED handlers (consume the data,
on
stas2003/03/02 02:35:39
Modified:t/filter/TestFilter in_str_declined.pm
Log:
comment fix
Revision ChangesPath
1.2 +4 -4 modperl-2.0/t/filter/TestFilter/in_str_declined.pm
Index: in_str_declined.pm
stas2003/03/02 03:36:16
Modified:t/filter/TestFilter in_str_declined.pm out_bbs_ctx.pm
Log:
minor tweaks
Revision ChangesPath
1.3 +3 -0 modperl-2.0/t/filter/TestFilter/in_str_declined.pm
Index: in_str_declined.pm
stas2003/03/02 04:16:10
Modified:src/modules/perl mod_perl.c
.Changes
Log:
make sure that the non-tied STDOUT is buffered before calling the perl
response handler.
Revision ChangesPath
1.152 +10 -3 modperl-2.0/src/modules/perl
stas2003/03/02 04:23:01
Modified:t/response/TestAPI rutil.pm
Log:
this test needs unbuffered stdout to work
Revision ChangesPath
1.5 +2 -0 modperl-2.0/t/response/TestAPI/rutil.pm
Index: rutil.pm
stas2003/03/02 05:24:44
Modified:src/docs/2.0/user/handlers filters.pod
Log:
new filters material covering recent changes and revelations: work in
progress
Revision ChangesPath
1.12 +184 -6modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index
stas2003/03/02 05:26:25
Modified:src/modules/perl mod_perl.c
.Changes
Log:
back out the last change to unbuffer STDOUT, exposing perl context has
opened a big pandora box. will look at it later.
Revision ChangesPath
1.153 +3 -10
stas2003/03/02 05:28:14
Modified:xs/tables/current/ModPerl FunctionTable.pm
xs/maps modperl_functions.map apache_functions.map
xs/Apache/RequestIO Apache__RequestIO.h
.Changes
Log:
$r->rflush has to flush internal modp
stas2003/03/02 05:29:40
Modified:src/docs/2.0/user/handlers filters.pod
Log:
can't call seen_eos, if the data wasn't read in the filter
Revision ChangesPath
1.13 +1 -3 modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index: f
stas2003/03/02 05:32:26
Modified:xs/Apache/RequestIO Apache__RequestIO.h
Log:
copy-n-paste fix
Revision ChangesPath
1.35 +1 -1 modperl-2.0/xs/Apache/RequestIO/Apache__RequestIO.h
Index: Apache__RequestIO.h
stas2003/03/02 18:41:15
Modified:t/response/TestAPI rutil.pm
Log:
backoff the last change, after reverting the 'modperl' handler's behavior
Revision ChangesPath
1.6 +0 -2 modperl-2.0/t/response/TestAPI/rutil.pm
stas2003/03/02 19:36:17
Modified:.STATUS
Log:
log the issue with 'SetHandler modperl' not resetting $| => performance
hit
Revision ChangesPath
1.36 +12 -1 modperl-2.0/STATUS
stas2003/03/02 19:39:07
Modified:xs/Apache/RequestIO Apache__RequestIO.h
xs/Apache/SubRequest Apache__SubRequest.h
src/modules/perl mod_perl.c modperl_filter.c
modperl_filter.h
xs/tables/current/ModPerl
stas2003/03/02 19:42:06
Added: t/filter out_str_declined.t
t/filter/TestFilter out_str_declined.pm
Log:
add a test testing how the declined is handled in the output filters,
plus it also verifies that rflush and unbuffered print are handled
correctly (by
stas2003/03/02 14:42:45
Modified:src/docs/2.0/user/handlers general.pod
Log:
s/$f->connection/$f->c/
Submitted by: Matt J. Avitable <[EMAIL PROTECTED]>
Reviewed by: stas
Revision ChangesPath
1.2 +1 -1 modperl-docs/src/docs/2.0/u
stas2003/03/02 14:47:20
Modified:.Changes
ModPerl-Registry/lib/ModPerl RegistryCooker.pm
RegistryLoader.pm
Log:
move ModPerl::RegistryCooker to use a hash as object (similar to mp1),
to make it easier to subclass.
Submitted by
stas2003/03/02 15:01:09
Modified:src/help isps.html
Log:
add more isps supporting mod_perl
Submitted by: Oleg Shaikhatarov <[EMAIL PROTECTED]>, Charlie Garrison
<[EMAIL PROTECTED]>, Jonathan M. Hollin <[EMAIL PROTECTED]>
Revision ChangesPath
stas2003/03/02 15:23:57
Modified:ModPerl-Registry/lib/ModPerl RegistryCooker.pm
Log:
good bye tabs
Revision ChangesPath
1.33 +18 -18modperl-2.0/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm
Index: RegistryCooker.pm
stas2003/03/02 19:50:55
Modified:.STATUS
Log:
log the issue with ${^TAINT} returning -1 with blead-perl-ithreads
Revision ChangesPath
1.37 +15 -1 modperl-2.0/STATUS
Index: STATUS
stas2003/03/03 15:03:05
Modified:todo possible_new_features.txt
Log:
a nice to have an alias $f->connection in addition to $f->c
Revision ChangesPath
1.17 +3 -0 modperl-2.0/todo/possible_new_features.txt
Index: possible_new_featur
stas2003/03/03 16:01:22
Modified:src/help isps.html
Log:
add http://www.upnix.com
Submitted by: Fco. Valladolid <[EMAIL PROTECTED]>
Revision ChangesPath
1.12 +2 -1 modperl-docs/src/help/isps.html
Index: isp
stas2003/03/03 16:56:26
Modified:lib/Apache compat.pm
.Changes
Log:
support 1.0's Apache->push_handlers, Apache->set_handlers
and Apache->get_handlers
Revision ChangesPath
1.82 +15 -0 modperl-2.0/lib/Apache/compat
stas2003/03/03 17:01:24
Modified:src/docs/2.0/user/compat compat.pod
Log:
document Apache->push_handlers, Apache->set_handlers and
Apache->get_handlers
Revision ChangesPath
1.50 +21 -1 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: c
stas2003/03/03 17:03:19
Modified:src/docs/2.0/user/compat compat.pod
Log:
update
Revision ChangesPath
1.51 +15 -3 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/03 17:29:40
Modified:src/help isps.html
Log:
add mediatemple.net
Submitted by: David Emery <[EMAIL PROTECTED]>
Revision ChangesPath
1.13 +3 -0 modperl-docs/src/help/isps.html
Index: isp
stas2003/03/03 18:12:11
Modified:src/docs/2.0/user/handlers filters.pod protocols.pod
Log:
xref bb's and add reasons why one have to understand how they work
Revision ChangesPath
1.14 +25 -6 modperl-docs/src/docs/2.0/user/handlers/filters.pod
stas2003/03/03 23:37:00
Added: src/docs/2.0/user/handlers out_filter_stream.dia
out_filter_stream.gif out_filter_stream.png
in_filter_stream.dia in_filter_stream.gif
in_filter_stream.png filter_logic.dia
stas2003/03/03 23:42:20
Modified:src/docs/2.0/user/handlers filters.pod
Log:
filter flow: work in progress
Revision ChangesPath
1.15 +119 -22 modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index: filters.pod
stas2003/03/04 14:32:38
Modified:src/outstanding sites.html
Log:
fix wording
Submitted by: Philip M. Gollucci <[EMAIL PROTECTED]>
Revision ChangesPath
1.14 +8 -8 modperl-docs/src/outstanding/sites.html
Index: site
stas2003/03/04 20:21:21
Modified:src/docs/2.0/user/handlers protocols.pod
Added: src/docs/2.0/user/handlers connection_cycle_time.dia
connection_cycle_time.gif connection_cycle_time.png
Log:
a new diagram
Revision ChangesPath
1.6
stas2003/03/04 15:46:53
Modified:.README.SITE
src/download docs.pod
Log:
s/5:30/3:30/ for a long update job
Revision ChangesPath
1.7 +1 -1 modperl-docs/README.SITE
Index: README.SITE
stas2003/03/04 23:35:40
Modified:.STATUS
Log:
log the issue with the filter handler configuration and loading
Revision ChangesPath
1.39 +14 -1 modperl-2.0/STATUS
Index: STATUS
stas2003/03/05 01:13:18
Modified:t/filter out_str_reverse.t
t/filter/TestFilter out_str_reverse.pm
Log:
the reverse filter is now resistant to upstream filters splitting the data
in multiply chunks. (the test now exercises f->ctx and can be used as a
g
stas2003/03/05 01:44:52
Modified:src/docs/2.0/user/handlers filters.pod
Log:
complete the filters tutorial fixing pass. we still need more examples,
but at least it's up to date now
Revision ChangesPath
1.16 +383 -129 modperl-docs/src/docs/2.0/user/han
stas2003/03/05 01:50:12
Modified:src/docs/2.0/user/handlers filters.pod
Log:
markup fix
Revision ChangesPath
1.17 +2 -2 modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index: filters.pod
stas2003/03/05 01:52:45
Modified:src/docs/2.0/user/handlers filters.pod
Log:
doh! another markup fix
Revision ChangesPath
1.18 +1 -1 modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index: filters.pod
stas2003/03/05 20:08:02
Modified:.STATUS
Log:
a docs confusion to resolve
Revision ChangesPath
1.40 +11 -1 modperl-2.0/STATUS
Index: STATUS
===
RCS file: /home/cvs/modperl-2.0
stas2003/03/05 20:12:28
Modified:todo possible_new_features.txt
Log:
log the nice-to-have new cleanup handlers
Revision ChangesPath
1.18 +11 -1 modperl-2.0/todo/possible_new_features.txt
Index: possible_new_features.txt
stas2003/03/05 20:32:06
Modified:src/docs/2.0/user/handlers http.pod http_cycle.dia
http_cycle.gif http_cycle.png server.pod
Log:
note that if any of the phases aborts the HTTP cycle Apache skips to the
logging phase (update the diagram as well
stas2003/03/05 21:55:40
Modified:src/docs/2.0/user/handlers filters.pod
Log:
various minor tweaks
Revision ChangesPath
1.19 +21 -18modperl-docs/src/docs/2.0/user/handlers/filters.pod
Index: filters.pod
stas2003/03/05 22:34:56
Modified:src/docs/2.0/user/config config.pod
Log:
make ModPerl::MethodLookup::preload_all_modules easier to find, by putting
an example to startup.pl (though commented out)
Revision ChangesPath
1.37 +4 -0 modperl-docs/src/docs/2.0
stas2003/03/06 20:20:24
Modified:src/docs/2.0/user/intro start_fast.pod
Log:
finish startup.pl with 1;
Revision ChangesPath
1.12 +1 -0 modperl-docs/src/docs/2.0/user/intro/start_fast.pod
Index: start_fast.pod
stas2003/03/06 20:29:59
Modified:src/docs/offsite books.pod
src/docs/1.0/guide porting.pod
Log:
minor tweaks
Revision ChangesPath
1.8 +1 -1 modperl-docs/src/docs/offsite/books.pod
Index: books.pod
stas2003/03/06 20:40:03
Modified:src/docs/2.0/user/compat compat.pod
Log:
add PerlOptions +ParseHeaders
Revision ChangesPath
1.52 +2 -1 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/06 21:14:42
Modified:src/docs/2.0/user/compat compat.pod
Log:
finish off the registry porting section
Revision ChangesPath
1.53 +21 -7 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/07 00:31:39
Modified:src/docs/2.0/api/Apache compat.pod
src/docs/2.0/api/ModPerl MethodLookup.pod
src/docs/2.0/devel/porting porting.pod
src/docs/2.0/user/compat compat.pod
Log:
- add a help section on how to port the 1.0
stas2003/03/07 18:25:43
Modified:src/docs/2.0/devel/debug c.pod
Log:
should look later at the new directive CoreDumpDirectory
Revision ChangesPath
1.8 +3 -0 modperl-docs/src/docs/2.0/devel/debug/c.pod
Index: c.pod
stas2003/03/07 19:20:36
Modified:ModPerl-Registry/t basic.t
Log:
restore the tests, committed by mistake before ;(
Revision ChangesPath
1.10 +44 -45modperl-2.0/ModPerl-Registry/t/basic.t
Index: basic.t
stas2003/03/08 00:54:04
Modified:t/apache scanhdrs.t
Log:
convert the test to use t_cmp, so undefs are automatically handled, rather
then having the script die
Revision ChangesPath
1.4 +7 -4 modperl-2.0/t/apache/scanhdrs.t
Index: scanhdrs.t
stas2003/03/08 00:56:19
Modified:t/response/TestModperl current_callback.pm
Log:
comment out debug prints
Revision ChangesPath
1.2 +2 -7 modperl-2.0/t/response/TestModperl/current_callback.pm
Index: current_callback.pm
stas2003/03/08 01:15:16
Modified:lib/Apache compat.pm
lib/ModPerl Code.pm
src/modules/perl mod_perl.c modperl_filter.c
xs/Apache/RequestRec Apache__RequestRec.h
.Changes
Log:
When PerlOptions +ParseHeaders is an
stas2003/03/08 01:47:00
Modified:ModPerl-Registry/t basic.t
Added: ModPerl-Registry/t/cgi-bin send_headers.html
Log:
test that files with .html extension, which are configured to run as
scripts get the headerparse stage working: the default mime handler sets
$r
stas2003/03/08 01:49:26
Modified:src/modules/perl mod_perl.c
.Changes
Log:
remove the limitation of having $r->content_type affecting the cgi header
parsing to header_parser and higher phase. now any phase before and
including the response phase
stas2003/03/07 19:58:59
Modified:ModPerl-Registry/t/conf modperl_extra_startup.pl
ModPerl-Registry/lib/ModPerl RegistryCooker.pm
.Changes
Added: ModPerl-Registry/t bad_scripts.t
ModPerl-Registry/t/cgi-bin r_inherited.pl
stas2003/03/07 20:11:09
Modified:lib/Apache PerlRun.pm
.Changes
Log:
don't use $r variable in Apache::PerlRun::compile(), so the script
won't use use inherited $r by mistake
Revision ChangesPath
1.41 +6 -4 modperl/
stas2003/03/08 16:16:26
Modified:ModPerl-Registry/t basic.t
Log:
add the missing use Apache::TestConfig
Revision ChangesPath
1.13 +1 -0 modperl-2.0/ModPerl-Registry/t/basic.t
Index: basic.t
stas2003/03/08 22:06:46
Modified:src/docs/2.0/devel/debug c.pod
Log:
need to look at -DDEBUG_LEAKING_SCALARS perl build option
Revision ChangesPath
1.9 +6 -0 modperl-docs/src/docs/2.0/devel/debug/c.pod
Index: c.pod
stas2003/03/09 00:57:55
Modified:.Changes
lib/Apache compat.pm
t/response/TestAPI uri.pm
xs/APR/URI APR__URI.h
Added: t/response/TestCompat apache_uri.pm
Log:
- fixes for apr_uri_unparse, which has the segfault
stas2003/03/09 16:17:18
Modified:src/docs/2.0/devel/porting porting.pod
Log:
fix pod
Submitted by: Nick Tonkin
Revision ChangesPath
1.9 +1 -1 modperl-docs/src/docs/2.0/devel/porting/porting.pod
Index: porting.pod
stas2003/03/09 17:24:11
Modified:src/docs/2.0/user/compat compat.pod
Log:
document the issues with $r->unparse()
Revision ChangesPath
1.55 +35 -3 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.
stas2003/03/09 17:25:26
Modified:t/response/TestCompat apache_uri.pm
Log:
don't use 2.0 api in compat tests
Revision ChangesPath
1.2 +2 -2 modperl-2.0/t/response/TestCompat/apache_uri.pm
Index: apache_u
stas2003/03/10 19:10:23
Modified:src/docs/2.0/user/coding coding.pod
Log:
it certainly makes sense to add a pointer to ModPerl::MethodLookup in the
normal 2.0 docs and not only porting docs
Revision ChangesPath
1.18 +25 -7 modperl-docs/src/docs/2.0/user
stas2003/03/10 19:11:01
Modified:src/docs/2.0/user/compat compat.pod
Log:
$ENV{GATEWAY_INTERFACE} is deprecated
Revision ChangesPath
1.56 +15 -0 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/10 19:12:14
Modified:src/docs/1.0/guide performance.pod
Log:
tidy up
Revision ChangesPath
1.24 +1 -1 modperl-docs/src/docs/1.0/guide/performance.pod
Index: performance.pod
stas2003/03/10 20:38:45
Modified:src/docs/1.0/guide performance.pod
Log:
C-L header is not needed in the recent Apache 1.3 versions to maintain a
KeepAlive connection
Submitted by: Andrew Ho <[EMAIL PROTECTED]>
Revision ChangesPath
1.25 +0 -6 m
stas2003/03/10 22:15:37
Modified:.STATUS
Log:
the issue with ${^TAINT} is a bug in blead-perl (perl_clone wasn't cloning
PL_taint_warn). Patch posted to p5p, nothing should be done on behalf of
mod_perl.
Revision ChangesPath
1.41 +1 -15 mo
stas2003/03/10 22:21:20
Modified:.ROADMAP
Log:
remove items that were implemented
Revision ChangesPath
1.4 +6 -27 modperl-2.0/ROADMAP
Index: ROADMAP
===
RCS file: /home/cvs
stas2003/03/10 22:31:44
Modified:src/docs/2.0/user/handlers filters.pod
Log:
add a note that filters modifying their data's size should unset the C-L
header
Revision ChangesPath
1.20 +10 -1 modperl-docs/src/docs/2.0/user/handlers/filters.pod
stas2003/03/10 23:33:53
Modified:src/docs/2.0/api config.cfg
Added: src/docs/2.0/api/ModPerl Util.pod
Log:
start the manpage for ModPerl::Util, now having only the SYNOPSIS
Revision ChangesPath
1.1 modperl-docs/src/docs/2.0/api/ModPerl
stas2003/03/10 23:47:54
Modified:todo filters.txt
Log:
add the issues with filters
Revision ChangesPath
1.2 +10 -0 modperl-2.0/todo/filters.txt
Index: filters.txt
===
RCS file
stas2003/03/11 22:35:28
modperl-docs/src/docs/2.0/user/performance - New directory
stas2003/03/11 22:37:07
Modified:src/docs/2.0/user config.cfg
src/docs/2.0/user/compat compat.pod
Added: src/docs/2.0/user/performance prevent.pod
Log:
- issues with server_root_relative and pools
- start the performance group
- start the preventing
stas2003/03/11 16:17:39
Modified:src/docs/2.0/devel/porting porting.pod
Log:
the object is the second arg to method_lookup, not the first.
Submitted by: Nick Tonkin
Revision ChangesPath
1.10 +1 -1 modperl-docs/src/docs/2.0/devel/porting/porting.pod
stas2003/03/12 19:02:46
Added: t/response/TestModperl perl.pm
Log:
- start a test for perl functions with workarounds in mod_perl
- test crypt
Revision ChangesPath
1.1 modperl-2.0/t/response/TestModperl/perl.pm
Index: perl.pm
stas2003/03/12 16:26:40
Modified:src/docs/2.0/user/compat compat.pod
Log:
move the env vars issues together
Revision ChangesPath
1.58 +17 -15modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/12 16:47:54
Modified:lib/ModPerl WrapXS.pm
Log:
a workaround for ap_sub_req_* functions
Revision ChangesPath
1.49 +5 -0 modperl-2.0/lib/ModPerl/WrapXS.pm
Index: WrapXS.pm
stas2003/03/12 17:05:33
Modified:src/docs/2.0/api/Apache RequestRec.pod RequestUtil.pod
Log:
document $r->main/ add an xref to is_initial_req
Revision ChangesPath
1.3 +13 -7 modperl-docs/src/docs/2.0/api/Apache/RequestRec.pod
Index: RequestRec.
stas2003/03/12 17:14:37
Modified:src/docs/2.0/user/compat compat.pod
Log:
- drop entries for functions which are the same, but live in different
package (should use MethodLookup instead, or otherwise we end up having
the whole API in that doc)
- a few corrections for other
stas2003/03/12 18:12:49
Modified:t/response/TestCompat apache_util.pm
Log:
rework the test to actually run the sub-test for validate_password on
platforms that we know C crypt() works on
Revision ChangesPath
1.2 +13 -8 modperl-2.0/t/response/TestCompat
stas2003/03/13 14:46:52
Modified:src/docs/2.0/user/compat compat.pod
Log:
a minor language fix
Revision ChangesPath
1.60 +4 -3 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
stas2003/03/13 16:05:00
Modified:tmpl/custom/html left_box
Added: tmpl/custom/html menu_short_cuts
Removed: tmpl/custom/html short_cuts
Log:
s/short_cuts/menu_short_cuts/ for consistency
Revision ChangesPath
1.5 +1 -1 modperl-docs/tmpl/custom
stas2003/03/13 16:09:55
Modified:tmpl/custom/html menu_short_cuts
Log:
- add a shortcut to the migrating doc
- point to the 1.0 and 2.0 source, instead of just 1.0
Revision ChangesPath
1.2 +3 -2 modperl-docs/tmpl/custom/html/menu_short_cuts
Index
stas2003/03/13 16:11:32
Modified:tmpl/custom/html menu_short_cuts
Log:
minor spacing tweaks, no content change
Revision ChangesPath
1.3 +3 -3 modperl-docs/tmpl/custom/html/menu_short_cuts
Index: menu_short_cuts
stas2003/03/13 17:51:50
Modified:lib/ModPerl MM.pm
Log:
add a temp workaround for mod_perl's fresh install, when -MApache2 fails, since it's
not
installed yet.
Revision ChangesPath
1.23 +9 -2 modperl-2.0/lib/ModPerl/MM.pm
In
stas2003/03/13 18:23:56
Modified:todo utils.txt
Log:
log the idea of modperl2doc
Revision ChangesPath
1.3 +9 -0 modperl-2.0/todo/utils.txt
Index: utils.txt
===
RCS file: /home/cvs
stas2003/03/12 22:10:46
Modified:.Makefile.PL Changes
lib/Apache Build.pm
Log:
'make install' now installs mod_perl*h files under httpd's include tree
Revision ChangesPath
1.92 +20 -8 modperl-2.0/Makefile.PL
Ind
stas2003/03/13 21:33:19
Modified:src/modules/perl modperl_util.h modperl_filter.c
xs/Apache/RequestIO Apache__RequestIO.h
.Changes
Log:
move the check that print/printf/puts/write/etc are called in the
response phase into the functions
stas2003/03/13 21:34:24
Modified:src/modules/perl modperl_util.h
xs/Apache/RequestRec Apache__RequestRec.h
Log:
add a macro MP_CGI_HEADER_PARSER_OFF so we can re-use it other places
Revision ChangesPath
1.41 +11 -0 modperl-2.0/src/modules/perl
stas2003/03/13 21:36:48
Modified:xs/Apache/Response Apache__Response.h
.Changes
Added: t/response/TestApache send_cgi_header.pm
t/apache send_cgi_header.t
Log:
send_cgi_header now turns the header parsing off and can send any data
stas2003/03/13 21:50:31
Modified:src/modules/perl modperl_util.h
Log:
add a whitespace in the macro concatenation
Revision ChangesPath
1.42 +1 -1 modperl-2.0/src/modules/perl/modperl_util.h
Index: modperl_util.h
stas2003/03/13 22:51:58
Modified:tTEST
Log:
perl 5.005_03 wants the args to be quoted
Revision ChangesPath
1.12 +1 -1 modperl/t/TEST
Index: TEST
===
RCS file: /home/cvs/modperl
1 - 100 of 1664 matches
Mail list logo