Ticket #29649: changes.diff

File changes.diff, 13.1 KB (added by ci42, 13 years ago)
  • yaws/applications/chat/include.mk

    diff -ur old/yaws/applications/chat/include.mk new/yaws/applications/chat/include.mk
    old new  
    3333
    3434
    3535# Hmm, don't know if you are supposed to like this better... ;-)
    36 APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, $$vsn\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
     36APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, "$$vsn"\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
    3737
    3838# Targets
    3939
  • yaws/applications/mail/include.mk

    diff -ur old/yaws/applications/mail/include.mk new/yaws/applications/mail/include.mk
    old new  
    3333
    3434
    3535# Hmm, don't know if you are supposed to like this better... ;-)
    36 APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, $$vsn\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
     36APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, "$$vsn"\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
    3737
    3838# Targets
    3939
  • yaws/applications/wiki/include.mk

    diff -ur old/yaws/applications/wiki/include.mk new/yaws/applications/wiki/include.mk
    old new  
    3333
    3434
    3535# Hmm, don't know if you are supposed to like this better... ;-)
    36 APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, $$vsn\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
     36APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, "$$vsn"\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
    3737
    3838# Targets
    3939
  • yaws/include.mk.in

    diff -ur old/yaws/include.mk.in new/yaws/include.mk.in
    old new  
    9191
    9292
    9393# Hmm, don't know if you are supposed to like this better... ;-)
    94 APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, $$vsn\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
     94APPSCRIPT = '$$vsn=shift; $$mods=""; while(@ARGV){ $$_=shift; s/^([A-Z].*)$$/\'\''$$1\'\''/; $$mods.=", " if $$mods; $$mods .= $$_; } while(<>) { s/\{vsn, git\}/\{vsn, "$$vsn"\}/; s/\{modules,\[\]\}/\{modules,\[$$mods\]\}/; print; }'
    9595
    9696# Targets
    9797
  • yaws/man/yaws.1

    diff -ur old/yaws/man/yaws.1 new/yaws/man/yaws.1
    old new  
    199199
    200200.TP
    201201\fB--wait-started[=T] [--id ID] \fR
    202 Waits at most 5 seconds for the server to start. Exits with 0 if
     202Waits at most 30 seconds for the server to start. Exits with 0 if
    203203server is running, 1 otherwise. Typically useful in test scripts. The
    204 default 5 seconds can be modified by appending \fI=T\fR to the option,
     204default 30 seconds can be modified by appending \fI=T\fR to the option,
    205205where \fIT\fR is the desired number of seconds to wait for the server
    206206to start.
    207207
  • yaws/scripts/regular-install

    diff -ur old/yaws/scripts/regular-install new/yaws/scripts/regular-install
    old new  
    77
    88set -e
    99
    10 ./Install ${PREFIX} ${ERL} ${WERL} ${ETCDIR}/ ${VARDIR}/ ${ERLBINDIR}/ ${DESTDIR}
     10./Install "${PREFIX}" "${ERL}" "${WERL}" "${ETCDIR}/" \
     11    "${VARDIR}/" "${ERLBINDIR}/" "${DESTDIR}"
    1112
    1213conffile="${DESTDIR}${ETCDIR}/yaws/yaws.conf"
    1314if [ -f "$conffile" ]; then
  • yaws/scripts/yaws.template

    diff -ur old/yaws/scripts/yaws.template new/yaws/scripts/yaws.template
    old new  
    168168          daemon=" -detached ";;
    169169      --wait-started=*)
    170170          call_wait_started=`echo $arg | sed -e 's/--wait-started=//'`
    171           num=`expr "$call_wait_started" : "([0-9]*)"`
     171          num=`expr "$call_wait_started" : "\([0-9]*\)"`
    172172          if [ "$num" != "$call_wait_started" ]; then
    173173              echo error: argument to --wait-started is $call_wait_started, not a number
    174174              exit 1
    175175          fi;;
    176176      --wait-started)
    177           call_wait_started=6;;
     177          call_wait_started=30;;
    178178      -d|--debug)
    179179          debug=" -boot start_sasl -yaws debug ";;
    180180      --nodebug)
  • yaws/src/yaws_ctl.erl

    diff -ur old/yaws/src/yaws_ctl.erl new/yaws/src/yaws_ctl.erl
    old new  
    408408        {error, eacces} ->
    409409            io:format("Another user is using the yaws sid <~p>, ~n"
    410410                      "You are not allowd to read the file <~s>, ~n"
    411                       "specify by <-I id> which yaws system you want "
     411                      "specify by <-I id> which yaws system you want"
    412412                      " to control~n",
    413413                      [SID, yaws:ctl_file(SID)]),
    414414            timer:sleep(10),
     
    420420        {error, Reason} ->
    421421            io:format("You failed to read the ctlfile ~s~n"
    422422                      "error was: <~p>~n"
    423                       "specify by <-I id> which yaws system you want "
     423                      "specify by <-I id> which yaws system you want"
    424424                      " to control~n",
    425425                      [yaws:ctl_file(SID), Reason]),
    426426            timer:sleep(10),
  • yaws/src/yaws_server.erl

    diff -ur old/yaws/src/yaws_server.erl new/yaws/src/yaws_server.erl
    old new  
    16961696                _ ->
    16971697                    ARG2 = ARG1
    16981698            end,
    1699             handle_ut(CliSock, ARG2, UT, N);
     1699
     1700            %% In case of delayed redirect, we must handle the
     1701            %% request as a dynamic one.
     1702            UT2 = case erase(is_delayed_redirect) of
     1703                      true when UT#urltype.type =:= regular ->
     1704                          UT#urltype{type=delayed_regular};
     1705                      true when UT#urltype.type =:= directory ->
     1706                          UT#urltype{type=delayed_directory};
     1707                      _ ->
     1708                          UT
     1709                  end,
     1710
     1711            handle_ut(CliSock, ARG2, UT2, N);
    17001712        false_403 ->
    17011713            deliver_403(CliSock, ARG1#arg.req);
    17021714        {false, AuthMethods, Realm} ->
  • yaws/www/contributors.txt

    diff -ur old/yaws/www/contributors.txt new/yaws/www/contributors.txt
    old new  
    1 Jean-Sébastien Pédro
    2 Christopher Faulet
    3 James Lee
    4 Nicolas Thauvin
    5 Fabian Linzberger
     1Tomas Abrahamsson
     2Manuel Durán Aguete
     3Fabian Alenius
     4Jason Andersson
    65Per Andersson
     6Joe Armstrong
     7Michael Arnoldus
     8Oleg Avdeev
     9Tuncer Ayaz
     10Stu Bailey
     11Kuzma Bartosz
     12Eric Baur
     13Johan Bevemyr
     14Martin Björklund
    715Dominique Boucher
    8 Christian Hennig
    9 Hans-Christian Esperer
    10 Alexander Simonov
    11 Brady McCary
    12 Thomas O'Dowd
    13 Andrei Soroker
    14 TBBle
    15 Colm Dougan
    16 Matt Stancliff
     16Adam Bozanich
     17Richard Bucker
     18Yinso Chen
     19Gaspar Chilingarov
     20Mats Cronqvist
    1721Anders Dahlin
    18 Praveen Ray
     22Robert David
     23Willem de Jong
     24François de Metz
     25doccarcass
     26dnz@bk.ru
     27Colm Dougan
     28Hans-Christian Esperer
     29Daniel Fabian
     30Christopher Faulet
     31John Fessenden
     32Michael Fig
     33Bruce Fitzsimmons
     34Magnus Fröberg
     35Olivier Girondel
     36Sergei Golovan
     37Luke Gorrie
     38Igor Goryachev
     39Joakim Grebenö
     40Paul Hampson
    1941Per Hedeland
    20 Bruno Rijsman
     42Christian Hennig
     43Sean Hinde
     44hun@n-dimensional.de
     45Wes James
     46jcortner@cvol.net
    2147joe_e_e
    22 Fabian Alenius
     48Phanikar.K
     49Dimitriy Kargapolov
     50Mikael Karlsson
     51Bengt Kleberg
     52Petter Larsson
     53James Lee
     54Peter Lemenkov
     55Michael Leonhard
     56Eric Liang
     57Fredrik Linder
     58Fabian Linzberger
     59Daniel Luna
     60Paul Mahon
     61Davide Marquês
     62Brady McCary
    2363Tom McNulty
    24 Joseph Wayen Norton
    25 Liu Yubao
    26 Olivier Girondel
    27 Davide Marques
    28 Phanikar.K
    29 Haobu Yu
     64Chandru Mullaparthi
    3065Hans Ulrich Niedermann
    31 Stu Bailey
    32 Michael Slaski
    33 John Fessenden
    34 Oleg Avdeev
    35 Vance Shipley
    36 Bill Robertsson
    37 Robert David
    38 Steve Vinoski
    39 Willem de Jong
    40 Adam Boz
    41 Richard Bucker
    42 John Webb
    43 Igor goryachev.
    44 Brian Templeton
     66Chris Newcombe
    4567Julian Noble
    46 Daniel Luna
    47 Michael Fig
    48 Jason Andersson
    49 Michael Leonhard
    50 Chris NewCombe
    51 Matthew Reilley
     68Joseph Wayne Norton
    5269Anders Nygren
    53 Kuzma Bartosz
    54 Bengt Kleberg
    55 Sergei Golovan
    56 yariv sedan
    57 Gaspar Chilingarov
    58 Mats Cronquist.
    59 Sebasitian Strollo
    60 doccarcass
    61 Karel Ostrovsky
    62 Daniel Fabian
    63 Michael Arnoldus
     70Thomas O'Dowd
     71Jimmy Olgeni
    6472Lennart Ostman
     73Karel Ostrovsky
     74Erik Pearson
     75Jean-Sébastien Pédron
     76Yurii Rashkovskii
     77Praveen Ray
     78Matthew Reilly
     79Mickael Remond
     80Bruno Rijsman
     81Bill Robertsson
    6582Jouni Ryno
    66 Mikael Karlsson
    67 Martin Björklund
    68 Paul Mahon
    69 Fredrik Linder
    70 David Welton
    71 Jimmy Olgeni
    72 Tomas Abrahamsson
    73 Chandru
    74 Hal Snyder
    75 Joakim Grebenö
    76 Magnus Fröberg
     83Yariv Sadan
     84Kostis Sagonas
    7785Rob Schmersel
    78 Leon Smith
    79 Eric Baur
    8086Carsten Schultz
     87Yariv Sedan
     88Vance Shipley
     89Alexander Simonov
     90Michael Slaski
     91Leon Smith
     92Hal Snyder
     93Andrei Soroker
     94Matt Stancliff
     95Sebastian Stroll
    8196Taavi Talvik
    82 Erik Pearson
    83 jcortner@cvol.net
    84 Sean Hinde
    85 Johan Bevemyr
    86 Joe Armstrong.
     97Brian Templeton
     98Nicolas Thauvin
     99Fredrik Thulin
    87100Torbjörn Törnqvist
     101Steve Vinoski
     102Lev Walkin
     103wde
     104John Webb
     105David Welton
    88106Claes Wikström
     107Dan Willemsen
     108Haobu Yu
     109Liu Yubao
  • yaws/www/news

    diff -ur old/yaws/www/news new/yaws/www/news
    old new  
    11Tue May 24 21:25:00 CEST 2011  Yaws 1.90
    2 Highlights in this release are the capflam patchset, a really long list of general improvements by Jean-Sebastien Pedron  and Christopher Faulet. Also rebar support has been added by Steve and Tuncur. Finally, Steve has added JSON 2.0 support. Thus this is a major release. Lot's of new little features and also lot's of bug fixes.
     2Highlights in this release are the capflam patchset, a really long list of general improvements by Jean-Sebastien Pedron  and Christopher Faulet. Also rebar support has been added by Steve and Tuncer. Finally, Steve has added JSON 2.0 support. Thus this is a major release. Lot's of new little features and also lot's of bug fixes.
    33always store a tuple in #headers.authorization (Jean-Sebastien Pedron)
    4 improve daemon status output (capflam)
    5 allow Server header customization (capflam)
    6 add shaper directive to control access (capflam)
    7 allow conf file pathname config with app env var (capflam)
    8 soft yaws shutdown (capflam)
    9 arg_rewrite mods can now return HTTP responses (capflam)
    10 support external handler to interpret php scripts (capflam)
    11 add status option to page options (capflam)
    12 allow multiple listen directives per server (capflam)
    13 server-specific logger_mod and auth_mod (capflam)
    14 support parsing of literal IPv6 addresses (capflam)
    15 allow hard reload of conf without stopping (capflam)
    16 add control for "Expires" and "Cache-Control" response headers (capflam) Christopher Faulet
    17 add "application/javascript" as a compressible mime type (capflam)
    18 use "partial_post_size" for chunked requests (capflam) Christopher Faulet
     4improve daemon status output (capflam) (Christopher Faulet)
     5allow Server header customization (capflam) (Christopher Faulet)
     6add shaper directive to control access (capflam) (Christopher Faulet)
     7allow conf file pathname config with app env var (capflam) (Christopher Faulet)
     8soft yaws shutdown (capflam) (Christopher Faulet)
     9arg_rewrite mods can now return HTTP responses (capflam) (Christopher Faulet)
     10support external handler to interpret php scripts (capflam) (Christopher Faulet)
     11add status option to page options (capflam) (Christopher Faulet)
     12allow multiple listen directives per server (capflam) (Christopher Faulet)
     13server-specific logger_mod and auth_mod (capflam) (Christopher Faulet)
     14support parsing of literal IPv6 addresses (capflam) (Christopher Faulet)
     15allow hard reload of conf without stopping (capflam) (Christopher Faulet)
     16add control for "Expires" and "Cache-Control" response headers (capflam) (Christopher Faulet)
     17add "application/javascript" as a compressible mime type (capflam) (Christopher Faulet)
     18use "partial_post_size" for chunked requests (capflam) (Christopher Faulet)
    1919authorization improvements, including ACLs like apache mod_access (capflam) (Christopher Faulet)
    2020Yaws can now be built with rebar (Tuncer Ayaz and Steve Vinoski)
    2121Updated Yaws JSON-RPC support to version 2.0 (Steve Vinoski)