lib_3.0_1.fix
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:2k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. ===================================================================
  2. RCS file: /afs/w3.org/hypertext/WWW/Library/Repository/Implementation/HTTP.c,v
  3. retrieving revision 1.79
  4. diff -c -r1.79 HTTP.c
  5. *** 1.79 1995/03/21 20:44:20
  6. --- /Library/Implementation/HTTP.c 1995/07/10 03:19:05
  7. ***************
  8. *** 492,498 ****
  9.         req->output_format, req->output_stream);
  10.        PUTBLOCK(me->buffer, me->cnt);
  11.    } else {
  12. !      if (req->output_format == WWW_SOURCE) {
  13.    me->target = HTMIMEConvert(req, NULL, WWW_MIME,
  14.       req->output_format,
  15.       req->output_stream);
  16. --- 492,521 ----
  17.         req->output_format, req->output_stream);
  18.        PUTBLOCK(me->buffer, me->cnt);
  19.    } else {
  20. !      if (me->status==200) {
  21. !  HTStream *s;
  22. !  if (req->output_format == WWW_SOURCE) {
  23. !      me->target = HTMIMEConvert(req, NULL, WWW_MIME,
  24. !         req->output_format,
  25. !         req->output_stream);
  26. !  } else {
  27. !      me->target = HTStreamStack(WWW_MIME, req->output_format,
  28. !         req->output_stream, req, NO);
  29. !      
  30. !      if (req->method==METHOD_GET && HTCacheDir &&
  31. !  (s = HTCacheWriter(req, NULL, WWW_MIME,
  32. !     req->output_format,
  33. !     req->output_stream))) {
  34. !  me->target = HTTee(me->target, s);
  35. !      }
  36. !  }
  37. !      } else {
  38. !  me->target = HTMIMEConvert(req,NULL, WWW_MIME, WWW_SOURCE,
  39. !     req->output_flush);
  40. !      }
  41. ! #if 0
  42. !     if (req->output_format == WWW_SOURCE) {
  43.    me->target = HTMIMEConvert(req, NULL, WWW_MIME,
  44.       req->output_format,
  45.       req->output_stream);
  46. ***************
  47. *** 516,521 ****
  48. --- 539,545 ----
  49.       WWW_SOURCE, req->output_flush ?
  50.       req->output_flush : HTBlackHole());
  51.        }
  52. + #endif
  53.        if (!me->target)
  54.    me->target = HTBlackHole(); /* What else */
  55.    }