comparison src/luan/modules/http/Http.luan @ 1371:4c5548a61d4f

add Request.originalPath
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 26 Jun 2019 19:14:13 -0600
parents 8d95711f6615
children a3d0d1c2ce89
comparison
equal deleted inserted replaced
1370:ba4fc39423a4 1371:4c5548a61d4f
53 else 53 else
54 this.java = java 54 this.java = java
55 this.raw_head = java.rawHead or error() 55 this.raw_head = java.rawHead or error()
56 this.method = java.method or error() 56 this.method = java.method or error()
57 this.raw_path = java.rawPath or error() 57 this.raw_path = java.rawPath or error()
58 this.original_path = java.originalPath or error()
58 this.path = java.path or error() 59 this.path = java.path or error()
59 this.protocol = java.protocol or error() 60 this.protocol = java.protocol or error()
60 this.scheme = java.scheme or error() 61 this.scheme = java.scheme or error()
61 this.headers = java_to_table_deep(java.headers) 62 this.headers = java_to_table_deep(java.headers)
62 this.parameters = java_to_table_deep(java.parameters,java_to_table_shallow) 63 this.parameters = java_to_table_deep(java.parameters,java_to_table_shallow)