| 208 | | when modified_since && !last_response_time = Time.httpdate(modified_since) rescue nil : false |
|---|
| 209 | | when modified_since && last_response_time > Time.now : false |
|---|
| 210 | | when modified_since && mtime > last_response_time : false |
|---|
| 211 | | when none_match && none_match == '*' : false |
|---|
| 212 | | when none_match && !none_match.strip.split(/\s*,\s*/).include?(etag) : false |
|---|
| | 208 | when modified_since && !last_response_time = Time.httpdate(modified_since) rescue nil then false |
|---|
| | 209 | when modified_since && last_response_time > Time.now then false |
|---|
| | 210 | when modified_since && mtime > last_response_time then false |
|---|
| | 211 | when none_match && none_match == '*' then false |
|---|
| | 212 | when none_match && !none_match.strip.split(/\s*,\s*/).include?(etag) then false |
|---|