compress.methods
上传用户:lampled
上传日期:2007-01-07
资源大小:94k
文件大小:1k
源码类别:

Web服务器

开发平台:

Unix_Linux

  1. # Copyright (C) 1995, 1996 by Sven Berkvens (sven@stack.nl)
  2. #
  3. # This file lists the possible compression types that are understood by the
  4. # WWW server. It works very simply: if somebody asks for (for example)
  5. # index.html, and this file does not exist, but index.html.gz does exist,
  6. # then index.html will be 'generated' out of index.html.gz using the method
  7. # specified with .gz. Note that this process does not actually create
  8. # index.html in that same directory. It creates a file in the temporary
  9. # directory which is removed immediately after usage.
  10. #
  11. # If somebody asks directly for index.html.gz, he will get it in the
  12. # compressed format. This way, nice things like the following can be done:
  13. #
  14. # Get <A HREF="xshttpd.tar">the uncompressed tar</A>, or get the
  15. # <A HREF="xshttpd.tar.gz">the compressed tar</A>.
  16. #
  17. # The user only has to have the compressed version, because if somebody
  18. # asks for the uncompressed version, the server will uncompress it on the
  19. # fly for that user.
  20. #
  21. # Note that only one compression type per file is possible. Of course, you
  22. # can make frontends for types that require multiple filters. In that case,
  23. # it can be helpful to know that the list is traversed as displayed here,
  24. # from top to bottom. Also, no arguments can be passed to the uncompressor.
  25. # It MUST be a filter: accept its input from standard input and produce
  26. # its output on standard output.
  27. /usr/bin/gunzip .gz