Overview
| Comment: | correct etag name |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b67d2538b2c99a7f4183b9ad0b2d897c |
| User & Date: | arcade@b1t.name on 2012-08-09 11:30:01.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2013-01-29
| ||
| 14:33 | capitilize header correctly check-in: a2857db2b5 user: arcade@b1t.name tags: master, trunk | |
|
2012-08-09
| ||
| 11:30 | correct etag name check-in: b67d2538b2 user: arcade@b1t.name tags: master, trunk | |
| 11:23 | header fixes, header name fixes check-in: 44aa59eb58 user: arcade@b1t.name tags: master, trunk | |
Changes
Modified samesite.py
from [bcbeab4897]
to [e64c01bd7e].
| ︙ | ︙ | |||
95 96 97 98 99 100 101 | # _time - last time the file was checked # everything else is just the headers index = bsddb3.dbshelve.open(config_host['dir'] + os.sep + '.index') desc_fields = const_desc_fields.copy() ignore_fields = const_ignore_fields.copy() if config_host['noetag'] == 'no': | | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# _time - last time the file was checked
# everything else is just the headers
index = bsddb3.dbshelve.open(config_host['dir'] + os.sep + '.index')
desc_fields = const_desc_fields.copy()
ignore_fields = const_ignore_fields.copy()
if config_host['noetag'] == 'no':
desc_fields.add('ETag')
else:
ignore_fields.add('ETag')
proxy_ignored = set([
'Accept', 'Accept-Charset', 'Accept-Encoding', 'Accept-Language',
'Cache-Control', 'Connection', 'Content-Length', 'Cookie',
'Host',
'If-Modified-Since', 'If-Unmodified-Since',
'Referer',
|
| ︙ | ︙ |