Changeset 331 for trunk/ext/http11/http11_parser.rl
- Timestamp:
- 08/16/06 16:51:38 (2 years ago)
- Files:
-
- trunk/ext/http11/http11_parser.rl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ext/http11/http11_parser.rl
r312 r331 90 90 91 91 path = (pchar+ ( "/" pchar* )*) ; 92 query = ( uchar | reserved )* >start_query%query_string ;92 query = ( uchar | reserved )* %query_string ; 93 93 param = ( pchar | "/" )* ; 94 94 params = (param ( ";" param )*) ; 95 rel_path = (path? %request_path (";" params)?) ("?" query)?;95 rel_path = (path? %request_path (";" params)?) ("?" %start_query query)?; 96 96 absolute_path = ("/"+ rel_path); 97 97
