Branch: Tag:

2001-06-06

2001-06-06 21:04:49 by Per Hedbor <ph@opera.com>

New option to the start script (unix only, always on on NT): --strip-backslash, causes all \ in the URL to be transformed to /. Useful for compatibility reasons on unix, quite nessesary for security reasons on NT.

Rev: server/base_server/configuration.pike:1.433
Rev: server/start:1.161

1:   #!/bin/sh   # - # $Id: start,v 1.160 2001/05/17 01:20:52 mast Exp $ + # $Id: start,v 1.161 2001/06/06 21:04:49 per Exp $      ### If --silent-start is given as the first argument,   ### nothing will be printed to stdout by the script.
181:    '--fd-debug'|'--with-fd-debug'|'--enable-fd-debug')    DEFINES="-DFD_DEBUG $DEFINES"    ;; +  '--strip-backslash'|'--without-backslash'|'--strip-back-slash') +  DEFINES="-DSTRIP_BSLASH $DEFINES" +  ;;    '--without-ram-cache'|'--disable-ram-cache')    DEFINES="`echo $DEFINES | sed -e 's/-DRAM_CACHE//g'`"    ;;
309:    .B--silent-startB.: Inhibits output to stdout. If used,    this argument must be the first one.    +  .B--strip-backslashB.: Replace all \\ characters in URIs with / +     .B--without-ram-cacheB.: Do not use an in-RAM cache to speed    things up. Saves RAM at the cost of speed.