moonbridge

diff reference.txt @ 35:2d7e3028d993

Support iteration using pairs(...) on request.get_params, request.get_params_list, request.post_params, and request.post_params_list
author jbe
date Fri Feb 27 00:53:40 2015 +0100 (2015-02-27)
parents 59f485dc48ea
children f2efab1ba3d0
line diff
     1.1 --- a/reference.txt	Tue Feb 17 16:54:35 2015 +0100
     1.2 +++ b/reference.txt	Fri Feb 27 00:53:40 2015 +0100
     1.3 @@ -219,11 +219,17 @@
     1.4  A table that maps field names to their corresponding GET value. If there are
     1.5  several GET values with the given field name, then the first value is used.
     1.6  
     1.7 +Note: May be implemented through metamethods, but does support iteration
     1.8 +through pairs(...).
     1.9 +
    1.10  
    1.11  ### request.get_params_list
    1.12  
    1.13  A table that maps field names to a sequence of their corresponding GET values.
    1.14  
    1.15 +Note: May be implemented through metamethods, but does support iteration
    1.16 +through pairs(...).
    1.17 +
    1.18  
    1.19  ### request.headers
    1.20  
    1.21 @@ -297,11 +303,17 @@
    1.22  A table that maps field names to their corresponding POST value. If there are
    1.23  several POST values with the given field name, then the first value is used.
    1.24  
    1.25 +Note: May be implemented through metamethods, but does support iteration
    1.26 +through pairs(...).
    1.27 +
    1.28  
    1.29  ### request.post_params_list
    1.30  
    1.31  A table that maps field names to a sequence of their corresponding POST values.
    1.32  
    1.33 +Note: May be implemented through metamethods, but does support iteration
    1.34 +through pairs(...).
    1.35 +
    1.36  
    1.37  ### request.query
    1.38  

Impressum / About Us