Commit c50cc9d8448095fcb7db61ea6a04bdf89ef9748c
1 parent
3c064b17
Exists in
master
and in
2 other branches
Continue fixing.
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
web/run.py
... | ... | @@ -194,6 +194,7 @@ def retrieve_data(orbiter, what, started_at, stopped_at): |
194 | 194 | startTime=started_at.isoformat(), |
195 | 195 | stopTime=stopped_at.isoformat() |
196 | 196 | ) |
197 | + log.info("Fetching remote gzip files list at '%s'." % url) | |
197 | 198 | retries = 0 |
198 | 199 | success = False |
199 | 200 | remote_gzip_files = [] | ... | ... |
web/view/home.html.jinja2
... | ... | @@ -30,13 +30,13 @@ |
30 | 30 | <div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer"> |
31 | 31 | |
32 | 32 | <div class="mdl-layout__drawer"> |
33 | - <span class="mdl-layout-title">Time Interval</span> | |
33 | + <span class="mdl-layout-title" title="Two years maximum.">Time Interval</span> | |
34 | 34 | <form id="form_time_interval" action="#"> |
35 | 35 | <div class="mdl-textfield mdl-js-textfield"> |
36 | 36 | <input type="date" id="started_at" name="started_at" title="The date of the beginning of the interval to observe." class="mdl-textfield__input"> |
37 | 37 | <input type="date" id="stopped_at" name="stopped_at" title="The date of the end of the interval to observe. (exclusive)" class="mdl-textfield__input"> |
38 | 38 | </div> |
39 | - <input type="submit" id="apply_new_interval" value="Load new interval" title="This may take a while if you request a bigger interval." class="mdl-button mdl-js-button mdl-js-ripple-effect"> | |
39 | + <input type="submit" id="apply_new_interval" value="Load new interval" title="Two years maximum. This may take a while if you request a bigger interval." class="mdl-button mdl-js-button mdl-js-ripple-effect"> | |
40 | 40 | </form> |
41 | 41 | |
42 | 42 | <br> | ... | ... |