1. 09 Mar, 2001 3 commits
    • Martin Kraemer's avatar
      These files are now obsoleted by ap_ebcdic.c · b4785032
      Martin Kraemer authored
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88481 13f79535-47bb-0310-9956-ffa450edef68
      b4785032
    • Martin Kraemer's avatar
      David McCreedy writes: · 25f69195
      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
      25f69195
    • Martin Kraemer's avatar
      I added configurable EBCDIC configuration functionality to http_core.c; · 5b616118
      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
      5b616118
  2. 08 Mar, 2001 1 commit
  3. 02 Mar, 2001 7 commits
  4. 28 Feb, 2001 2 commits
  5. 27 Feb, 2001 5 commits
  6. 26 Feb, 2001 13 commits
  7. 24 Feb, 2001 2 commits
  8. 23 Feb, 2001 2 commits
  9. 22 Feb, 2001 2 commits
  10. 21 Feb, 2001 2 commits
    • William A. Rowe Jr's avatar
      · b95d384a
      William A. Rowe Jr authored
        Whoops ... have a new string, and forgot to remember it.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88254 13f79535-47bb-0310-9956-ffa450edef68
      b95d384a
    • William A. Rowe Jr's avatar
      · 7bc2b00e
      William A. Rowe Jr authored
        *) Fixed a potential bug in the 1.3.18 candidate that had the possibility
           of corrupting a module's string space if they replaced the r->hostname
           argument provided by the Apache core prior to http_vhost unescaping
           the hostname string.  [Greg Stein, William Rowe]
      
        *) Fixed system shutdown on Windows 2000 to assure that the modules have
           an opportunity to clean up.  Note there is a _very_ limited amount of
           time in which to execute all cleanups [see MSKB Q146092] so all of
           the modules may still not be given an opportunity to complete their
           cleanups if they require more than 20 seconds total.  [William Rowe]
      
        *) Tidied up os/win32/service.c adding several info level debugging
           messages that helped resolve the second bullet point, and eliminated
           the service_cd() function since we 'do the right thing' in main() and
           now get our serverroot from the module's path instead of the current
           directory on Win32.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88253 13f79535-47bb-0310-9956-ffa450edef68
      7bc2b00e
  11. 19 Feb, 2001 1 commit