]> granicus.if.org Git - apache/log
apache
21 years agoIntroduce "prefer-language" environment variable,
André Malo [Tue, 28 Jan 2003 02:31:27 +0000 (02:31 +0000)]
Introduce "prefer-language" environment variable,
which allows to influence the negotiation process on request basis
to prefer a certain language, e.g.:

SetEnvIf Request_URI ^/manual/foo/ prefer-language=foo

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98512 13f79535-47bb-0310-9956-ffa450edef68

21 years agoand add it to the racial memory
Ken Coar [Mon, 27 Jan 2003 17:50:43 +0000 (17:50 +0000)]
and add it to the racial memory

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98511 13f79535-47bb-0310-9956-ffa450edef68

21 years agodoh, forgot to add it here
Ken Coar [Mon, 27 Jan 2003 17:49:03 +0000 (17:49 +0000)]
doh, forgot to add it here

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98510 13f79535-47bb-0310-9956-ffa450edef68

21 years agoBe explicit about not creating redirect loops.
Joshua Slive [Mon, 27 Jan 2003 00:49:59 +0000 (00:49 +0000)]
Be explicit about not creating redirect loops.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98507 13f79535-47bb-0310-9956-ffa450edef68

21 years agoThe TRACE method cannotbe limited in 2.1, too ;-)
André Malo [Sun, 26 Jan 2003 21:08:36 +0000 (21:08 +0000)]
The TRACE method cannotbe limited in 2.1, too ;-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98504 13f79535-47bb-0310-9956-ffa450edef68

21 years agobe consistent...
André Malo [Sat, 25 Jan 2003 00:58:20 +0000 (00:58 +0000)]
be consistent...

(sorry, forgot to put it into the changes before)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98497 13f79535-47bb-0310-9956-ffa450edef68

21 years agod'oh! was originally against 2.0. yeah, that's it..
Ken Coar [Fri, 24 Jan 2003 19:27:22 +0000 (19:27 +0000)]
d'oh!  was originally against 2.0.  yeah, that's it..

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98492 13f79535-47bb-0310-9956-ffa450edef68

21 years agoreflect that a couple of fixes introduced in 2.1-dev were merged
Jeff Trawick [Fri, 24 Jan 2003 09:28:16 +0000 (09:28 +0000)]
reflect that a couple of fixes introduced in 2.1-dev were merged
back to 2.0.45-dev

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98486 13f79535-47bb-0310-9956-ffa450edef68

21 years ago here we go. add a directive that will keep %2f from being
Ken Coar [Thu, 23 Jan 2003 21:34:13 +0000 (21:34 +0000)]
here we go.  add a directive that will keep %2f from being
decoded into '/', allowing the *_walk to do their magic and
return 404 if it's in the path, and allowing it in the path-info.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98479 13f79535-47bb-0310-9956-ffa450edef68

21 years agodup the apr_mmap_t out of the request pool for sending down on the brigade
Bill Stoddard [Thu, 23 Jan 2003 21:01:08 +0000 (21:01 +0000)]
dup the apr_mmap_t out of the request pool for sending down on the brigade

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98478 13f79535-47bb-0310-9956-ffa450edef68

21 years agoMissed a word in a comment.
Justin Erenkrantz [Thu, 23 Jan 2003 18:03:33 +0000 (18:03 +0000)]
Missed a word in a comment.
Bah.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98475 13f79535-47bb-0310-9956-ffa450edef68

21 years agoCreate a subpool when we open the propdb, but we can't clear it until the rest
Justin Erenkrantz [Thu, 23 Jan 2003 17:59:20 +0000 (17:59 +0000)]
Create a subpool when we open the propdb, but we can't clear it until the rest
of the lifetime issues within mod_dav are straightened out.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98474 13f79535-47bb-0310-9956-ffa450edef68

21 years agoupdate transformations of recent changes.
André Malo [Thu, 23 Jan 2003 13:32:20 +0000 (13:32 +0000)]
update transformations of recent changes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98472 13f79535-47bb-0310-9956-ffa450edef68

21 years agoapxs: Include any special APR ld flags when linking the DSO.
Jeff Trawick [Thu, 23 Jan 2003 11:54:44 +0000 (11:54 +0000)]
apxs: Include any special APR ld flags when linking the DSO.
This resolves problems on AIX when building a DSO with apxs+gcc.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98469 13f79535-47bb-0310-9956-ffa450edef68

21 years agoFix a problem whereby multiple MMapFile directives would cause a segfault
Cliff Woolley [Thu, 23 Jan 2003 00:55:47 +0000 (00:55 +0000)]
Fix a problem whereby multiple MMapFile directives would cause a segfault
on startup.

mod_file_cache keeps a hash table in the cmd->pool and puts an entry in
that hash table for each of its files and mmaps, all of which are opened
into cmd->pool.  But it registered a cleanup on cmd->pool that would walk
the hash table and close each file and delete each mmap, even though by
the time that happened those things would have been done already anyway
by the files' and mmaps' own cleanups on cmd->pool.  So it was deleting
mmaps that were already cleaned up and closing files that were already
cleaned up in all cases.  This has never been valid... amazed it ever
worked.  But apparently the true bogosity wasn't revealed until the new
mmap cleanup code went into APR.

PR: 16313

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98463 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdd mod_ident to the NetWare build
Bradley Nicholes [Wed, 22 Jan 2003 23:25:37 +0000 (23:25 +0000)]
Add mod_ident to the NetWare build

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98462 13f79535-47bb-0310-9956-ffa450edef68

21 years agoUpdate the make file to be compatible with the latest Novell LDAP SDK
Bradley Nicholes [Wed, 22 Jan 2003 16:34:37 +0000 (16:34 +0000)]
Update the make file to be compatible with the latest Novell LDAP SDK

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98456 13f79535-47bb-0310-9956-ffa450edef68

21 years agoRemove rfc1413.c from the build
Bradley Nicholes [Wed, 22 Jan 2003 16:33:41 +0000 (16:33 +0000)]
Remove rfc1413.c from the build

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98455 13f79535-47bb-0310-9956-ffa450edef68

21 years agoCorrect quote usage in mod_auth_ldap docs
Graham Leggett [Wed, 22 Jan 2003 07:09:12 +0000 (07:09 +0000)]
Correct quote usage in mod_auth_ldap docs
PR: 16261
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98447 13f79535-47bb-0310-9956-ffa450edef68

21 years ago A fix from B. W. Fitzpatrick for the next docs regeneration.
William A. Rowe Jr [Wed, 22 Jan 2003 04:57:11 +0000 (04:57 +0000)]
  A fix from B. W. Fitzpatrick for the next docs regeneration.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98441 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Fix the resource link; submitted by B. W. Fitzpatrick.
William A. Rowe Jr [Wed, 22 Jan 2003 04:43:56 +0000 (04:43 +0000)]
  Fix the resource link; submitted by B. W. Fitzpatrick.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98438 13f79535-47bb-0310-9956-ffa450edef68

21 years agoComment out .gz etc. AddEncoding lines in our default configuration.
Justin Erenkrantz [Wed, 22 Jan 2003 04:29:56 +0000 (04:29 +0000)]
Comment out .gz etc. AddEncoding lines in our default configuration.

Current browsers have a tendency to decompress the data when no one really
wants it to do that.  If you want the old behavior that leads to transparent
decompression by modern browsers, uncomment these lines.  But, this
shouldn't be our default.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98436 13f79535-47bb-0310-9956-ffa450edef68

21 years agowell, it's voting time, isn't it?
André Malo [Tue, 21 Jan 2003 20:55:55 +0000 (20:55 +0000)]
well, it's voting time, isn't it?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98433 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Omitted the commit log message from the last commit, sorry;
William A. Rowe Jr [Tue, 21 Jan 2003 19:19:36 +0000 (19:19 +0000)]
  Omitted the commit log message from the last commit, sorry;

  Fix a nasty segfault, that there's a stack buffer we are trying to free!
  Revert this 'memory leak' patch from the 1.79 rev.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98430 13f79535-47bb-0310-9956-ffa450edef68

21 years ago*** empty log message ***
William A. Rowe Jr [Tue, 21 Jan 2003 19:19:01 +0000 (19:19 +0000)]
*** empty log message ***

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98429 13f79535-47bb-0310-9956-ffa450edef68

21 years agoThis has been backported to v2.0
Graham Leggett [Tue, 21 Jan 2003 15:56:19 +0000 (15:56 +0000)]
This has been backported to v2.0
PR: 8677
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98426 13f79535-47bb-0310-9956-ffa450edef68

21 years agoThis has been backported to v2.0
Graham Leggett [Tue, 21 Jan 2003 15:42:30 +0000 (15:42 +0000)]
This has been backported to v2.0
PR: 8677
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98424 13f79535-47bb-0310-9956-ffa450edef68

21 years agoEnsure LDAP version is set to v3 on every bind.
Graham Leggett [Tue, 21 Jan 2003 11:06:47 +0000 (11:06 +0000)]
Ensure LDAP version is set to v3 on every bind.
PR: 14235
Obtained from:
Submitted by: Sergey A. Lipnevich <sergeyli@pisem.net>
Reviewed by: Graham Leggett

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98420 13f79535-47bb-0310-9956-ffa450edef68

21 years agoUpdate the copyright dates
Graham Leggett [Tue, 21 Jan 2003 10:53:09 +0000 (10:53 +0000)]
Update the copyright dates
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98418 13f79535-47bb-0310-9956-ffa450edef68

21 years agoFix mod_ldap to open an existing shared memory file should one
Graham Leggett [Tue, 21 Jan 2003 10:46:57 +0000 (10:46 +0000)]
Fix mod_ldap to open an existing shared memory file should one
already exist.
PR: 12757
Obtained from:
Submitted by: Scooter Morris <scooter@gene.com>
Reviewed by: Graham Leggett

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98416 13f79535-47bb-0310-9956-ffa450edef68

21 years agoCopy mod_auth.h when installing includes.
Justin Erenkrantz [Tue, 21 Jan 2003 05:59:34 +0000 (05:59 +0000)]
Copy mod_auth.h when installing includes.
(Allows external auth providers DSOs)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98414 13f79535-47bb-0310-9956-ffa450edef68

21 years agomove a couple of entries from the 2.1 section to the 2.0.45
Jeff Trawick [Tue, 21 Jan 2003 00:42:53 +0000 (00:42 +0000)]
move a couple of entries from the 2.1 section to the 2.0.45
section, since the code was subsequently merged into the
stable branch

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98408 13f79535-47bb-0310-9956-ffa450edef68

21 years agoM-x untabify
Jeff Trawick [Mon, 20 Jan 2003 23:10:33 +0000 (23:10 +0000)]
M-x untabify

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98401 13f79535-47bb-0310-9956-ffa450edef68

21 years agoaccount for a mod_ext_filter fix which was just merged into
Jeff Trawick [Mon, 20 Jan 2003 23:04:48 +0000 (23:04 +0000)]
account for a mod_ext_filter fix which was just merged into
the stable 2.0 branch

get other 2.0.45 change entries back down in the 2.0.44
section since they were included in 2.0.44

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98400 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Add the missing /Fd"" option
William A. Rowe Jr [Mon, 20 Jan 2003 22:12:58 +0000 (22:12 +0000)]
  Add the missing /Fd"" option

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98395 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Add mod_ident to the BuildBin targets, and resort other targets into
William A. Rowe Jr [Mon, 20 Jan 2003 22:00:51 +0000 (22:00 +0000)]
  Add mod_ident to the BuildBin targets, and resort other targets into
  alpha order

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98391 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Taking a guess at what mod_ident.exp should look like for
William A. Rowe Jr [Mon, 20 Jan 2003 21:44:06 +0000 (21:44 +0000)]
  Taking a guess at what mod_ident.exp should look like for
  David Shane Holden's reorganization.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98388 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Win32 build project for David Shane Holden's mod_ident reorganization.
William A. Rowe Jr [Mon, 20 Jan 2003 21:42:54 +0000 (21:42 +0000)]
  Win32 build project for David Shane Holden's mod_ident reorganization.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98387 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Integrate mod_ident with the Win32 build.
William A. Rowe Jr [Mon, 20 Jan 2003 21:38:50 +0000 (21:38 +0000)]
  Integrate mod_ident with the Win32 build.
  Submitted by David Shane Holden <dpejesh@yahoo.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98386 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Correct misplaced # End Group marker.
William A. Rowe Jr [Mon, 20 Jan 2003 21:24:39 +0000 (21:24 +0000)]
  Correct misplaced # End Group marker.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98384 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Missing version tags [noted while rolling win32 binaries.]
William A. Rowe Jr [Mon, 20 Jan 2003 20:00:12 +0000 (20:00 +0000)]
  Missing version tags [noted while rolling win32 binaries.]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98382 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Catch up with the changes to apr/build/win32ver.awk and name all loadable
William A. Rowe Jr [Mon, 20 Jan 2003 19:52:30 +0000 (19:52 +0000)]
  Catch up with the changes to apr/build/win32ver.awk and name all loadable
  httpd modules as .so, internally.  Credit to Mladen Turk for identifing
  the issue.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98380 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Update libhttpd.dll filenames to reflect the .dll extension for the
William A. Rowe Jr [Mon, 20 Jan 2003 18:57:03 +0000 (18:57 +0000)]
  Update libhttpd.dll filenames to reflect the .dll extension for the
  newest apr/build/win32ver.awk script changes.  Submitted by Mladen Turk.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98378 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Update support utility filenames to reflect .exe extensions for the
William A. Rowe Jr [Mon, 20 Jan 2003 18:51:57 +0000 (18:51 +0000)]
  Update support utility filenames to reflect .exe extensions for the
  newest apr/build/win32ver.awk script changes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98376 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdd my votes.
Mads Toftum [Mon, 20 Jan 2003 13:20:06 +0000 (13:20 +0000)]
Add my votes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98373 13f79535-47bb-0310-9956-ffa450edef68

21 years agoThe correct syntax is <ProxyMatch> not <Proxy>.
David Shane Holden [Mon, 20 Jan 2003 02:22:30 +0000 (02:22 +0000)]
The correct syntax is <ProxyMatch> not <Proxy>.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98358 13f79535-47bb-0310-9956-ffa450edef68

21 years agoupdate transformation
André Malo [Sun, 19 Jan 2003 17:29:44 +0000 (17:29 +0000)]
update transformation

(I'm currently cleaning up my repository ;-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98354 13f79535-47bb-0310-9956-ffa450edef68

21 years agoFix some typos in the <default> and <syntax> and remove the
Joshua Slive [Sun, 19 Jan 2003 03:35:01 +0000 (03:35 +0000)]
Fix some typos in the <default> and <syntax> and remove the
<default>none</default>

Suggested by:  Mikhail Filimonov <mvf@uniyar.ac.ru>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98350 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Essentially a noop - just changing the order to keep the httpd-2.0/2.1-dev
William A. Rowe Jr [Sun, 19 Jan 2003 02:53:33 +0000 (02:53 +0000)]
  Essentially a noop - just changing the order to keep the httpd-2.0/2.1-dev
  files closer in sync

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98349 13f79535-47bb-0310-9956-ffa450edef68

21 years ago .dsw IDE builds were building mod_auth_ldap, while .mak builds were not.
William A. Rowe Jr [Sun, 19 Jan 2003 02:46:55 +0000 (02:46 +0000)]
  .dsw IDE builds were building mod_auth_ldap, while .mak builds were not.

  Corrected, and cleaned up redundant util_ldap dependency.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98346 13f79535-47bb-0310-9956-ffa450edef68

21 years agoupdate transformation
André Malo [Sat, 18 Jan 2003 20:29:53 +0000 (20:29 +0000)]
update transformation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98341 13f79535-47bb-0310-9956-ffa450edef68

21 years agoupdate transformations
Astrid Malo [Sat, 18 Jan 2003 20:28:17 +0000 (20:28 +0000)]
update transformations

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98340 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd mod_ident documentation
André Malo [Sat, 18 Jan 2003 20:24:33 +0000 (20:24 +0000)]
add mod_ident documentation

Reviewed by: Joshua Slive, Astrid Ke�ler

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98339 13f79535-47bb-0310-9956-ffa450edef68

21 years agolink german translation of core
Astrid Malo [Sat, 18 Jan 2003 20:21:51 +0000 (20:21 +0000)]
link german translation of core

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98338 13f79535-47bb-0310-9956-ffa450edef68

21 years agogerman translation
Astrid Malo [Sat, 18 Jan 2003 20:15:04 +0000 (20:15 +0000)]
german translation

Reviewed by: Michael Schroepl <Michael.Schroepl@telekurs.de>
             Andr� Malo <nd@perlig.de>
             Irmund Thum <i.t@ithum.de>
             Erik Abele <erik@codefaktor.de>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98337 13f79535-47bb-0310-9956-ffa450edef68

21 years ago- specify some mistakables discussed while reviewing the german translation
Astrid Malo [Sat, 18 Jan 2003 19:39:06 +0000 (19:39 +0000)]
- specify some mistakables discussed while reviewing the german translation
- set a link from AccessFileName to AllowOverride
- <Files> and <Location> sections and .htaccess files may be used for more
  then access control
- state an example more precisely

Thanks to Michael Schroepl <Michael.Schroepl@telekurs.de> and nd for their suggestions.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98336 13f79535-47bb-0310-9956-ffa450edef68

21 years agochange the changes ;-)
André Malo [Sat, 18 Jan 2003 03:46:51 +0000 (03:46 +0000)]
change the changes ;-)
note mod_ident.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98322 13f79535-47bb-0310-9956-ffa450edef68

21 years agomove rfc1413 code to a new module "metadata:mod_ident".
André Malo [Sat, 18 Jan 2003 03:37:55 +0000 (03:37 +0000)]
move rfc1413 code to a new module "metadata:mod_ident".
The rfc1413 code itself is mostly c&p, but can still bear
some rework ...

This patch removes the global ap_rfc1413 function and the
ap_rfc1413_timeout variable. It also introduces a new config
directive IdentityCheckTimeout (default 30 sec).

Reviewed by: Justin Erenkrantz

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98320 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Fix the last bit of build breakage from promoting ext_filter from
William A. Rowe Jr [Sat, 18 Jan 2003 02:26:45 +0000 (02:26 +0000)]
  Fix the last bit of build breakage from promoting ext_filter from
  experimental to filters.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98319 13f79535-47bb-0310-9956-ffa450edef68

21 years agoMissing an include path for build the dftables support utility
Bradley Nicholes [Sat, 18 Jan 2003 00:36:52 +0000 (00:36 +0000)]
Missing an include path for build the dftables support utility

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98316 13f79535-47bb-0310-9956-ffa450edef68

21 years agoFix the ulimit command used by apachectl on Tru64.
Jeff Trawick [Fri, 17 Jan 2003 14:46:50 +0000 (14:46 +0000)]
Fix the ulimit command used by apachectl on Tru64.

PR:           13609
Submitted by: Joseph Senulis <Joseph.Senulis@dnr.state.wi.us>, Jeff Trawick]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98309 13f79535-47bb-0310-9956-ffa450edef68

21 years agomention the apachectl ulimit fix for AIX
Jeff Trawick [Fri, 17 Jan 2003 14:29:53 +0000 (14:29 +0000)]
mention the apachectl ulimit fix for AIX

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98308 13f79535-47bb-0310-9956-ffa450edef68

21 years agoUse ap_strchr instead of strchr and get the constness right.
Roy T. Fielding [Fri, 17 Jan 2003 04:42:43 +0000 (04:42 +0000)]
Use ap_strchr instead of strchr and get the constness right.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98304 13f79535-47bb-0310-9956-ffa450edef68

21 years agoupdate transformation
Astrid Malo [Fri, 17 Jan 2003 02:14:33 +0000 (02:14 +0000)]
update transformation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98303 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd and update transformation of mod_authz_owner docs.
André Malo [Fri, 17 Jan 2003 01:58:23 +0000 (01:58 +0000)]
add and update transformation of mod_authz_owner docs.

Sorry, forgot to mention:
Reviewed by: Joshua Slive, Astrid Ke�ler

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98301 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd documentation for mod_authz_owner
André Malo [Fri, 17 Jan 2003 01:53:07 +0000 (01:53 +0000)]
add documentation for mod_authz_owner

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98300 13f79535-47bb-0310-9956-ffa450edef68

21 years agoReduce the number of parameters on the event callback to avoid a protected
Bradley Nicholes [Thu, 16 Jan 2003 23:31:35 +0000 (23:31 +0000)]
Reduce the number of parameters on the event callback to avoid a protected
mode issue

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98299 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdd mod_dav_lock to the NetWare build
Bradley Nicholes [Thu, 16 Jan 2003 23:23:47 +0000 (23:23 +0000)]
Add mod_dav_lock to the NetWare build

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98297 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdd my votes
Astrid Malo [Thu, 16 Jan 2003 03:55:42 +0000 (03:55 +0000)]
Add my votes

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98294 13f79535-47bb-0310-9956-ffa450edef68

21 years agomarkup improvement
Astrid Malo [Thu, 16 Jan 2003 03:47:27 +0000 (03:47 +0000)]
markup improvement

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98293 13f79535-47bb-0310-9956-ffa450edef68

21 years agoGot the lt and gt mixed up.
Rich Bowen [Thu, 16 Jan 2003 02:59:43 +0000 (02:59 +0000)]
Got the lt and gt mixed up.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98291 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd style rules for the new <transnote> element
Astrid Malo [Thu, 16 Jan 2003 02:37:07 +0000 (02:37 +0000)]
add style rules for the new <transnote> element

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98288 13f79535-47bb-0310-9956-ffa450edef68

21 years agonote mod_authz_owner
André Malo [Wed, 15 Jan 2003 22:25:19 +0000 (22:25 +0000)]
note mod_authz_owner

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98284 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd support for "Require file-group"
André Malo [Wed, 15 Jan 2003 22:14:45 +0000 (22:14 +0000)]
add support for "Require file-group"

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98283 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd support for "require file-group"
André Malo [Wed, 15 Jan 2003 22:12:36 +0000 (22:12 +0000)]
add support for "require file-group"

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98282 13f79535-47bb-0310-9956-ffa450edef68

21 years agoas announced and with no objections:
André Malo [Wed, 15 Jan 2003 22:08:54 +0000 (22:08 +0000)]
as announced and with no objections:
mod_authz_owner: forward port of require file-owner/file-group functionality

The goal of the module is to do all the neccessary file system work to
figure out username and groupname. "Require file-owner" is completely
resolved within the module. "file-group" is only determined there and the
groupname will be extracted from the stat call and stored within the
r->notes. Done that, the module will decline, so that the group database
modules (mod_authz_groupfile, mod_authz_dbm) can verify the groupname with
their lists.
Thus every group module that supports the file-group requirement must be
hooked after mod_authz_owner. They have to recognize "file-group" and read
the groupname from r->notes. (If there's no name stored, the modules should
ignore the file-group requirement). The backstopper module will do its work
in worst case.

not solved yet:
- the module doesn't work as one could expect if the file doesn't exist in
  the first request round (consider MultiViews) (the 1.3 version has the
  same problem). I played around with some subrequest techniques, but got
  no helpful result. Is there any magic to recognize the actual resulting
  filename (if there is)?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98281 13f79535-47bb-0310-9956-ffa450edef68

21 years ago It's up to apr-iconv to install it's own ces/ccs .pdb symbols.
William A. Rowe Jr [Wed, 15 Jan 2003 15:15:12 +0000 (15:15 +0000)]
  It's up to apr-iconv to install it's own ces/ccs .pdb symbols.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98279 13f79535-47bb-0310-9956-ffa450edef68

21 years agoChange the ulimit command used by apachectl on AIX so that it
Jeff Trawick [Wed, 15 Jan 2003 14:32:06 +0000 (14:32 +0000)]
Change the ulimit command used by apachectl on AIX so that it
works in all locales.

the standard command fails in a non-English locale if the hard
limit is unlimited since the display of the limit will translate
"unlimited", but ulimit only accepts English "unlimited" on input

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98277 13f79535-47bb-0310-9956-ffa450edef68

21 years agofix the type of the idlers field to match what apr_atomic_cas() expects
Jeff Trawick [Wed, 15 Jan 2003 13:43:58 +0000 (13:43 +0000)]
fix the type of the idlers field to match what apr_atomic_cas() expects

this fixes the compile when using the native compiler for AIX (and likely
other non-gcc compilers)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98272 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Fix a typo reported by Blair Zajac <blair@orcaware.com>
William A. Rowe Jr [Tue, 14 Jan 2003 18:34:14 +0000 (18:34 +0000)]
  Fix a typo reported by Blair Zajac <blair@orcaware.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98270 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Adapt to Brane's apr-iconv patch that provides for make install, and makes
William A. Rowe Jr [Tue, 14 Jan 2003 18:28:13 +0000 (18:28 +0000)]
  Adapt to Brane's apr-iconv patch that provides for make install, and makes
  httpd a little less intimate with apr internals.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98267 13f79535-47bb-0310-9956-ffa450edef68

21 years ago With the latest patch to config.c wildcards now work.
William A. Rowe Jr [Tue, 14 Jan 2003 17:01:32 +0000 (17:01 +0000)]
  With the latest patch to config.c wildcards now work.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98265 13f79535-47bb-0310-9956-ffa450edef68

21 years ago ap_server_root_relative never guarenteed that the resource exists, or
William A. Rowe Jr [Tue, 14 Jan 2003 16:56:16 +0000 (16:56 +0000)]
  ap_server_root_relative never guarenteed that the resource exists, or
  isn't a file pattern.  Correct the code to accept these cases (applied
  to both 2.0 and 2.1.)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98264 13f79535-47bb-0310-9956-ffa450edef68

21 years ago Once again, allow <Directory "C:\Users\*\html_files"> or other wildcard
William A. Rowe Jr [Tue, 14 Jan 2003 03:01:52 +0000 (03:01 +0000)]
  Once again, allow <Directory "C:\Users\*\html_files"> or other wildcard
  patterns in Directory blocks.  Note a similar problem with Includes *.conf

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98260 13f79535-47bb-0310-9956-ffa450edef68

21 years agomod_ext_filter: Fix a problem building argument lists which
Jeff Trawick [Mon, 13 Jan 2003 19:35:55 +0000 (19:35 +0000)]
mod_ext_filter: Fix a problem building argument lists which
occasionally caused exec to fail.

The argument array passed to apr_proc_create() needs to have
a NULL entry at the end.

PR: 15491

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98258 13f79535-47bb-0310-9956-ffa450edef68

21 years ago After introducing tests in the cmds, we lose the absolute authority
William A. Rowe Jr [Mon, 13 Jan 2003 17:10:42 +0000 (17:10 +0000)]
  After introducing tests in the cmds, we lose the absolute authority
  of the CRYPTO_malloc_init() which must happen the moment we load the
  module and prior to *any* ssl library fn invocation.

  Moved the CRYPTO_malloc_init() into the ssl_register_hooks() function,
  the absolute first call made into any loaded module.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98252 13f79535-47bb-0310-9956-ffa450edef68

21 years agoTypo: apache -> apache2
Erik Abele [Sun, 12 Jan 2003 21:14:29 +0000 (21:14 +0000)]
Typo: apache -> apache2

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98249 13f79535-47bb-0310-9956-ffa450edef68

21 years agoRemove now unnecessary paragraph (-S/-t -D DUMP_VHOST).
Erik Abele [Sun, 12 Jan 2003 20:59:40 +0000 (20:59 +0000)]
Remove now unnecessary paragraph (-S/-t -D DUMP_VHOST).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98247 13f79535-47bb-0310-9956-ffa450edef68

21 years agoUsing -S rather than -t -D DUMP_VHOSTS.
Erik Abele [Sun, 12 Jan 2003 20:56:26 +0000 (20:56 +0000)]
Using -S rather than -t -D DUMP_VHOSTS.

Submitted by: Thom May <thom@planetarytramp.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98245 13f79535-47bb-0310-9956-ffa450edef68

21 years agoUpdate documentation to match prototype for ap_register_input_filter and
Justin Erenkrantz [Sun, 12 Jan 2003 20:44:37 +0000 (20:44 +0000)]
Update documentation to match prototype for ap_register_input_filter and
ap_register_output_filter.

Submitted by: Stas Bekman <stas@stason.org>,
              Joe Schaefer <joe+apache@sunstarsys.com>
Reviewed by: Justin Erenkrantz

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98244 13f79535-47bb-0310-9956-ffa450edef68

21 years agoadd votes/comments
André Malo [Sat, 11 Jan 2003 22:48:07 +0000 (22:48 +0000)]
add votes/comments

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98241 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdded a required parameter to RegisterForEventNotification() to allow the
Bradley Nicholes [Fri, 10 Jan 2003 15:43:23 +0000 (15:43 +0000)]
Added a required parameter to RegisterForEventNotification() to allow the
function to be called in protected address space.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98237 13f79535-47bb-0310-9956-ffa450edef68

21 years agoSome words about the Wiki, PDF and some votes...
Erik Abele [Thu, 9 Jan 2003 23:50:01 +0000 (23:50 +0000)]
Some words about the Wiki, PDF and some votes...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98234 13f79535-47bb-0310-9956-ffa450edef68

21 years agoSome status updates. I removed a few things so as not to duplicate what
Joshua Slive [Thu, 9 Jan 2003 20:15:04 +0000 (20:15 +0000)]
Some status updates.  I removed a few things so as not to duplicate what
we already have on the docs-project website.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98233 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAccess.conf? Nope.
Joshua Slive [Thu, 9 Jan 2003 20:03:15 +0000 (20:03 +0000)]
Access.conf?  Nope.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98230 13f79535-47bb-0310-9956-ffa450edef68

21 years agoDon't require MMX
Bradley Nicholes [Thu, 9 Jan 2003 16:55:46 +0000 (16:55 +0000)]
Don't require MMX

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98224 13f79535-47bb-0310-9956-ffa450edef68

21 years agoAdd PR to the comment
Graham Leggett [Thu, 9 Jan 2003 12:33:12 +0000 (12:33 +0000)]
Add PR to the comment
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98221 13f79535-47bb-0310-9956-ffa450edef68

21 years agobe more specific on element ordering and allow <seealso> within
André Malo [Thu, 9 Jan 2003 04:34:26 +0000 (04:34 +0000)]
be more specific on element ordering and allow <seealso> within
the moduleindex

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98218 13f79535-47bb-0310-9956-ffa450edef68

21 years agofix xsl error (although xalan doesn't complain it).
André Malo [Thu, 9 Jan 2003 04:16:24 +0000 (04:16 +0000)]
fix xsl error (although xalan doesn't complain it).
according to the spec it's not allowed to bind the same
variable twice or more within the same scope.
(<http://www.w3.org/TR/xslt#local-variables>)

Reported by:  Michael Schr�pl <Michael.Schroepl@telekurs.de>
Submitted by: Astrid Ke�ler
Reviewed by:  /me ;-)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98216 13f79535-47bb-0310-9956-ffa450edef68

21 years ago update transformation.
André Malo [Thu, 9 Jan 2003 03:22:26 +0000 (03:22 +0000)]
  update transformation.
  - core, mod_deflate, mod_speling, mpm_common because of "compatibility"
    transformation change
  - quickreference.html.de because of the recent core changes

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98214 13f79535-47bb-0310-9956-ffa450edef68