- Nov 05, 1997
-
-
dgaudet authored
sources as Unix. Submitted by: Brian Havard <brianh@kheldar.apana.org.au> Reviewed by: Dean Gaudet, Paul Sutton, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79513 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
PR: Obtained from: Submitted by: Rasmus Lerdorf Reviewed by: Dean Gaudet, Paul Sutton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79512 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
PR: 1342 Submitted by: Paul Eggert <eggert@twinsun.com> Reviewed by: Dean Gaudet, Marc Slemko, Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79511 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79510 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 04, 1997
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79509 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79508 13f79535-47bb-0310-9956-ffa450edef68
-
Roy T. Fielding authored
needs to be kept around where we can find it. Whether or not we should distribute this code is an open question. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79507 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Hopefully (!) this will ease some of the confusion about 1.3 features described therein that people think apply to 1.2.. Reviewed by: Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79504 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 03, 1997
-
-
brian authored
Remove broken link, improve context of existing one git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79502 13f79535-47bb-0310-9956-ffa450edef68
-
Sameer Parekh authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79499 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
up after a SIGTERM. PR: 1211 Reviewed by: Marc Slemko, Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79498 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
Submitted by: Lars Eilebrecht Reviewed by: Martin Kraemer, Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79497 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 02, 1997
-
-
Ben Laurie authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79496 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 01, 1997
-
-
Martin Kraemer authored
The patch is an update to what Ronald Tschalaer <Ronald.Tschalaer@psi.xch> sent. PR: 1329 Submitted by: Ronald Tschalaer <Ronald.Tschalaer@psi.ch> Reviewed by: Martin +1, Dean +1, Paul +1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79495 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
char[], and explain.c includes httpd.h now. Paul is right, however: explain.c ought to be eliminated and replaced by aplog_error(). Reviewed by: Martin +1, Dean +1, Paul +1 (see commit msg) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79494 13f79535-47bb-0310-9956-ffa450edef68
-
Ben Laurie authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79493 13f79535-47bb-0310-9956-ffa450edef68
-
Marc Slemko authored
unbuffering in 1.3. PR: 1316 Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79492 13f79535-47bb-0310-9956-ffa450edef68
-
Marc Slemko authored
PR: 968 Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79490 13f79535-47bb-0310-9956-ffa450edef68
-
Marc Slemko authored
unlike many other directives. PR: 570 Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79488 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 30, 1997
-
-
dgaudet authored
- gzip -cdq requires at least 4k of a partial gzipped file, we were sending it only 1k, and it wouldn't produce any output. But raising HOWMANY to 4k has implications on the performance of the (lame) ascmagic() code. So ascmagic() cheats and only looks at 1k (the previous HOWMANY setting) - use spawn_child() interface to avoid a resource leak (zombie child); I don't think even worked on WIN32 before, but it might now... I special case and use spawnvp() on WIN32. - use pfopen()/popenf() to avoid resource leaks Cleanups: - no need to test return from palloc since it never returns NULL - ensure all log messages include the module name - Some cases were assuming that aplog_error was a never returning function. Deal gracefully by propagating an error code back up the call chain. - remove some useless code in fsmagic() -- we don't use lstat(), we use stat() so the only possibility where we'll get S_IFLNK is if it's a broken symlink. - for various errors just DECLINE rather than cause the phase to abort early (a lesson we're learning from all the M_PUT changes we've had recently) PR: 1205 Obtained from: Submitted by: Reviewed by: Jim Jagielski, Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79486 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
PR: 1317 Obtained from: Submitted by: David Schuler <schuld@btv.ibm.com> Reviewed by: Dean Gaudet, Jim Jagielski, Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79485 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
PR: 1293 Reviewed by: Martin Kraemer, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79484 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79483 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 28, 1997
-
-
Doug MacEachern authored
PR: Obtained from: Submitted by: Doug MacEachern Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79482 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79481 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 27, 1997
-
-
Sameer Parekh authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79480 13f79535-47bb-0310-9956-ffa450edef68
-
Sameer Parekh authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79479 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
Reviewed by: Ralf Engelschall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79478 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79477 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
demands it. PR: 467 Obtained from: Submitted by: Reviewed by: Paul Sutton, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79476 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79475 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
from stdin/out. Submitted by: Paul Sutton Reviewed by: Dean Gaudet, Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79474 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
Reviewed by: Paul Sutton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79473 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
(needed for pcfg_openfile()). Noted by bhyde@gensym.com (Ben Hyde) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79472 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 26, 1997
-
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79471 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
coding style. Fix it up. (There's no code changes in this rev.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79470 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79469 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
reading. Add "custom" hook to use config file cfg_getline() on something which is not a FILE Reviewed by: Paul +1, Dean +1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79468 13f79535-47bb-0310-9956-ffa450edef68
-
Ben Laurie authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79467 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 25, 1997
-
-
dgaudet authored
PR: 1321 Submitted by: John Line <jml4@cam.ac.uk> Reviewed by: Lars Eilebrecht, Marc Slemko, Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@79466 13f79535-47bb-0310-9956-ffa450edef68
-