- Feb 25, 2003
-
-
Jeff Trawick authored
compiler for AIX (and probably HP-UX and Tru64 as well, since they tend to be picky too) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98792 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98791 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 24, 2003
-
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98788 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
have a "curl" before trying to use it. If caching has been turned off then the curl variable will be NULL. This fixes a problem where LDAP caching would fault when caching was disabled. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98785 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
It fixes the misunderstandings between local URL paths and local system paths. Note that mod_rewrite handles _both_. Fixed also some comments to make the explanations more clear. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98783 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
It fixes the prefix_stat function. (which does a stat call on the first path segment). This function was still tailored for unix systems only. It should work on other systems as well now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98782 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
for better understanding, what I'm doing there. This is part one. mod_rewrite appears to be very broken in several cases, especially on non-unix systems. However, let's start with fixing the path handling, since it's _the_ major PITA, e.g. on win32. This part removes _unused_ code. The condition is never true, because "A local rewrite in per-directory context" was caught much earlier. I'd guess this piece of code was c&p accidentally... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98781 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
redirected. PR: 15423 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98778 13f79535-47bb-0310-9956-ffa450edef68
-
Lars Eilebrecht authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98777 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 23, 2003
-
-
William A. Rowe Jr authored
Someone (I need to refer back) asked that we do the same skip for the utf-8 win32 prefix when testing for shebang lines. Here's just such a test with some bad sizeof(buffer) v.s. bytes read assumptions fixed, and the code made generally a little more legible. Please review and comment to consider this patch for backporting to 2.0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98775 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
theoretical case, maybe ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98773 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
matter what. We now allow for the full range of APR mutex locking mechanims to be used, while maintaining backwards compatibility. PR: 8122 Obtained from: Submitted by: Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98771 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98769 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 22, 2003
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98768 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
update transformations of recent changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98767 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98764 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
to the output of httpd -V git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98753 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98749 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 21, 2003
-
-
Madhusudan Mathihalli authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98747 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98746 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 20, 2003
-
-
William A. Rowe Jr authored
After consultations on the APR list, it was decided that /map files are fairly redundant when you retain rich .pdb debugging symbol files. We have rarely used them, and generally .dbg and .pdb files prove much more useful for the cases we have. While eliminating /map files, we are also shrinking the size of the .dbg files by stripping 'private' symbol information. Really this means less rich diagnostics from Dr. Watson on NT or Win9x when they query the .dbg symbols in creating a DrWatson log file. But it's more than compensated for on newer OS'es where Dr. Watson will query the .pdb symbols, on all Win32 flavors when WinDbg is used with the .pdb symbols, and the fact that the distribution of binary symbols will use less bandwidth when less information is duplicated from the .pdb format into the .dbg files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98744 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
After consultations on the APR list, it was decided that /map files are fairly redundant when you retain rich .pdb debugging symbol files. We have rarely used them, and generally .dbg and .pdb files prove much more useful for the cases we have. While eliminating /map files, we are also shrinking the size of the .dbg files by stripping 'private' symbol information. Really this means less rich diagnostics from Dr. Watson on NT or Win9x when they query the .dbg symbols in creating a DrWatson log file. But it's more than compensated for on newer OS'es where Dr. Watson will query the .pdb symbols, on all Win32 flavors when WinDbg is used with the .pdb symbols, and the fact that the distribution of binary symbols will use less bandwidth when less information is duplicated from the .pdb format into the .dbg files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98743 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98741 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 19, 2003
-
-
Andre Malo authored
immediately after startup. PR: 2790, 10449 Submitted by: Jeff Stewart <jws@purdue.edu> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98738 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98735 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Fix Sebastian's observed failure of the Win32 Debug _install target. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98734 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Also catch the case that the substitution may fail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98730 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
cases in the PR are ridiculously hard to follow.) These tend to be primarily in caching/proxy, but some are in the core. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98729 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
line. (Previously, we'd count the unread part of the line towards the chunk.) PR: 15857 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98727 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
PR: 16908 Submitted by: Andrew Gapon <agapon@telcordia.com> Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98726 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
PR: 9012 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98721 13f79535-47bb-0310-9956-ffa450edef68
-
Stas Bekman authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98720 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
PR: 17108 Submitted by: Eric S. Raymond <esr@thyrsus.com> Reviewed by: Jeff Trawick (who fixed a couple of mispellings of "probably") git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98717 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 18, 2003
-
-
Erik Abele authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98715 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
directives for establishing an SSL connection and the addition of the Novell LDAP SDK. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98714 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
foo.dbgmark turned out to be the same 8.3 name as foo.dbg itself, which was badness. Twist this puppy to .dbr, the only name I could invent that doesn't look like any database file extension I recall. It stands for .dbg rebased. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98712 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98710 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98708 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
mod_rewrite proxied URLs will not be escaped accidentally by mod_proxy's fixup. PR: 16368 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98707 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
Submitted by: jmc <jmc@prioris.mini.pw.edu.pl> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98704 13f79535-47bb-0310-9956-ffa450edef68
-