Overview
Comment: | adding verbose support, i.e. silencing most of stuff |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
827033dd7e7d4c1f0c9ae7c656c9a0aa |
User & Date: | c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 on 2010-08-04 07:55:30.000 |
Other Links: | branch diff | manifest | tags |
Context
2010-08-20
| ||
14:09 | personal web server implemented: * can download, cache and serve data; * supports caching for partial requests. check-in: 80f8e3804a user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
2010-08-04
| ||
07:55 | adding verbose support, i.e. silencing most of stuff check-in: 827033dd7e user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
2010-07-26
| ||
09:38 | option to skip ETag processing, X-Powered-By ignored check-in: 38b25713eb user: c.kworr@b84a3442-36b4-a7b2-c7ad-07429f13c525 tags: master, trunk | |
Changes
Modified samesite.py
from [81ccd8c170]
to [f084a96edb].
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - + - + - + - + - + + + + + + | this_line = log_line.match(line.strip()) if this_line: unchecked_files.add(this_line.group(2)) for url in unchecked_files: reload = False recheck = False |
︙ | |||
143 144 145 146 147 148 149 | 148 149 150 151 152 153 154 155 156 157 158 159 160 | + - + | index.sync() except urllib.error.HTTPError as error: # in case of error we don't need to do anything actually, # if file download stalls or fails the file would not be moved to it's location print(error) if options.verbose: |