- Mar 14, 2001
-
-
Jeff Trawick authored
PR: 7404 (which had a patch for the hostname lookup core dump which was already fixed as well as this typo) Submitted by: Kunihiro Tanaka <tanaka@apache.or.jp> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88516 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 13, 2001
-
-
Ken Coar authored
Improve customisability of rotatelogs' behaviour. Allow the logfile name to be formatted according to strftime(3), and let the user specify an offset from UTC. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88510 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
The first correction is not important, only removes a redundant line, the ap_pstrdup(a, "127.0.0.1") is done anyway at the end of the function. The second correction is really a bug the p-> can be NULL. Submitted by: "Roca Carrio, Ignasi" <Ignasi.Roca@fujitsu-siemens.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88509 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 12, 2001
-
-
Greg Ames authored
Submitted by: David McCreedy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88507 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Make it more clear that the error occurs at run-time, not compile-time. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88502 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Even though I don't run AIX, I was reading BUILD.NOTES and went to the URL specified in the AIX section about the PTFs to find the URL does not work anymore, I have found this URL to find the PTFs at http://techsupport.services.ibm.com/rs6k/fixdb.html Submitted by: brad@openbsd.org git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88496 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 09, 2001
-
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88481 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
> I've update the text files in os/tpf/samples, in part due to these ebcdic > patches. > I'd like to > > - remove os/tpf/samples/linkdll.jcl > - add os/tpf/samples/linkhttp.jcl Submitted by: "David McCreedy" <mccreedy@us.ibm.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88480 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
because conversion is a base feature, this looked like the only sensible place to me. Other basic features like Resource limits live there too. * make EBCDIC conversion truly configurable. Up to know, there was a hardwired assumption that only files of MIME type text/* (and a few exceptions) could be EBCDIC files; and everything else HAD TO BE binary. This assumption breaks (again and again) for MIME types like application/postscript, model/vrml, application/x-javascript and others, which can never be stored as EBCDIC text files. I now implemented two new directives for defining the conversion based on MIME type or file extension. The conversion can be set for upload and download independently, on or off, for any file. * make EBCDIC conversion symmetric. Up to now, there was no clean way to deal with uploaded content (POST with Content-Type:, PUT with Content-Type:) because a) there was no MIME checker attached to the header-reader, and b) you could not actually define a conversion based on MIME type. Both deficiencies have now been addressed (the ap_checkconv_in() routine is called upon parsing of an uploaded Content-Type: line, and it can set a flag which is different from the download conversion flag. Also, its change is triggered at a different phase in the request handling: the upload conversion is set as soon as a Content-Type: for an uploaded document is detected, but the download conversion is only set when the response is about to be returned). All this was impossible in the past. * unify the EBCDIC tables to be in a single common file src/ap/ap_ebcdic.c (and src/include/ap_ebcdic.h) instead of having redundant copies under src/os/{tpf,bs2000,os390}/ebcdic.{c,h} The common file will have the correct translation table conditionally compiled based on #ifdef TPF/OS390/_OSD_POSIX. Up to now, each EBCDIC had its own copy, cloned and slightly adapted. * Also, put the conversion checker ap_checkconv() to http_core, because is is an essential central cog in the whole conversion clockwork. Until now, three almost incompatible copies were spread throughout the EBCDIC platforms' os.c files. Reviewed by: "David McCreedy" <mccreedy@us.ibm.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88479 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 08, 2001
-
-
Ken Coar authored
Add -V option to suexec, to list compile-time settings with which it was built. Only usable by root and the HTTPD_USER. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88475 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 02, 2001
-
-
Martin Kraemer authored
ap_slack() and make_sock() guarantee that the returned fd >= 0 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88436 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88435 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
This caused neither to work unless both are loaded. Submitted by: "Brad Nicholes" <BNICHOLES@novell.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88434 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Both mod_ssl and KAME-ipv6 patch sets are adding the if (fd >= 0) in the FD_SET(fd, &listenfds) on http_main.c. I think this patch doesn't concert neither to mod_ssl nor to IPv6. I agree, and I think it avoids a potential core dump too. Submitted by: "Roca Carrio, Ignasi" <Ignasi.Roca@fujitsu-siemens.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88421 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88419 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88418 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Microsoft spells it 'Millennium' Submitted by: Robert M. Dickau <robertd@installshield.com> Reviewed by: Will Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88407 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 28, 2001
-
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88392 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Submitted by: jean-frederic clere <jfrederic.clere@fujitsu-siemens.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88385 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 27, 2001
-
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88369 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88368 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
One more notable exception to escape. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88366 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Add the Win32 service 'description', of our running server_version. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88365 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
module symbols before it shuts down. void ap_os_dso_unsym(void *handle, const char *symname) This is necessary so that Apache on NetWare can shutdown cleanly in an error condition such as a failure while reading the .CONF file. Submitted by: Brad Nicholes <BNICHOLES@novell.com> Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88364 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 26, 2001
-
-
William A. Rowe Jr authored
Clean up this mess ... stripped out all the bogus absolute paths from win32 the .mak structure. Our immunity has been that our master makefile.win doesn't recurse the .mak projects, and we simply build all .mak targets in the order we choose. Use src/helpers/fixwin32mak.pl when exporting these .mak files to keep up with it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88360 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
A little bit of Win32 magic to eliminate absolute paths from .mak output of the Developer Studio - export .mak files result. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88359 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Introduce NUL device pipes for stdin and stdout for the parent Win32 service process. This solves bugs such as PR7198 that report "dup2(stdin) failed" when trying to use piped logs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88358 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88357 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88356 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88354 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88353 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88352 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Submitted by: "Jeffrey W. Baker" <jwbaker@acm.org> Reviewed by: Martin Kraemer, William A. Rowe, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88351 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88350 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88349 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88348 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
I have fixed the problem described in bug report 7114 regarding the missing WWW-Authenticate header in responses to directory URL's, while using the DirectoryIndex directive. PR: 7114 Submitted by: Gertjan van Wingerde <gwingerde@home.nl> Reviewed by: William A. Rowe, Jim Jagielski, Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88347 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 24, 2001
-
-
Jim Jagielski authored
document that tmpnam() warnings on later Linuxes with recent gnu toolchain installed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88301 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
board. See msgid: <Pine.LNX.4.33.0102231235031.11699-100000@twinlark.arctic.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88297 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 23, 2001
-
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88293 13f79535-47bb-0310-9956-ffa450edef68
-