https://github.com/alphagov/spotlight/compare/release_785...release_788
- Set longer cache control headers on all pages
https://github.com/alphagov/spotlight/compare/release_788...release_798
| [ | |
| { | |
| "data-set": "tax_disc_application_type", | |
| "seconds-out-of-date": 121212, | |
| "last-updated": "2014-01-01T12:13:14+00:00", | |
| "expected": "2014-05-01T12:13:14+00:00" | |
| } | |
| ] |
| Data set name: lpa_volumes | |
| Data group: lasting-power-of-attorney | |
| Data type: volumes | |
| Upload format: excel | |
| Upload filters: backdrop.core.upload.filters.first_sheet_filter |
| Date Total pageviews Pageviews that 503'd * "Downtime" | |
| 23 Jul 6038047 41 0.0006% | |
| 22 Jul 6381255 17 0.0002% | |
| 21 Jul 6985471 9 0.0001% | |
| 20 Jul 3390299 3 0.00009% | |
| 19 Jul 3162768 7 0.0002% | |
| 18 Jul 5099756 5 0.0001% | |
| 17 Jul 5955733 41 0.0007% |
| curl -X POST https://stagecraft.preview.performance.service.gov.uk/dashboard --header "Authorization: Bearer $NAYEEMA_TOKEN" --header "Content-type: application/json" --data @dashboard.json | |
| curl -X POST https://stagecraft.preview.performance.service.gov.uk/module-type --header "Authorization: Bearer $NAYEEMA_TOKEN" --header "Content-type: application/json" --data @module_type.json | |
| curl -X POST https://stagecraft.preview.performance.service.gov.uk/dashboard/UPDATE_THIS/module --header "Authorization: Bearer $NAYEEMA_TOKEN" --header "Content-type: application/json" --data @module.json |
| def select_modules(dictionary): | |
| return {k: v for k, v in mydict.items() if k.startswith('modules-')} | |
| def module_key(item): | |
| return item[0].split('-')[1] | |
| def sort_modules(modules): | |
| return sorted(modules.iteritems(), key=module_key) | |
| def group_modules(modules): |
| {:timestamp=>"2014-09-17T14:37:09.249000+0000", :message=>"ATTENTION: THIS PLUGIN WILL BE REMOVED IN LOGSTASH 1.2.0. YOU MAY CONTINUE USING IT. WHEN REMOVED, TO LEARN HOW TO REPLACE THIS PLUGIN, SEE THIS URL: http://cookbook.logstash.net/recipes/syslog-pri/", :level=>:warn} |
| <div class="col-sm-12"> | |
| <div class="pull-right"> | |
| {% if loop.index0 > 0 %} | |
| <button type="submit" class="btn btn-default" name="move_module_up_{{ loop.index0 }}"> | |
| <span class="glyphicon glyphicon-arrow-up"></span> Move module up | |
| </button> | |
| {% endif %} | |
| {% if form.modules|length > loop.index %} | |
| <button type="submit" class="btn btn-default" name="move_module_down_{{ loop.index0 }}"> | |
| <span class="glyphicon glyphicon-arrow-down"></span> Move module down |
https://github.com/alphagov/spotlight/compare/release_785...release_788
https://github.com/alphagov/spotlight/compare/release_788...release_798
| diff --git a/Vagrantfile b/Vagrantfile | |
| index 88c7485..0118176 100644 | |
| --- a/Vagrantfile | |
| +++ b/Vagrantfile | |
| @@ -115,6 +115,9 @@ Vagrant.configure("2") do |config| | |
| modifyvm_args << "--memory" << "1024" | |
| end | |
| vb.customize(modifyvm_args) | |
| + file_to_disk = './tmp/large_disk.vdi' | |
| + vb.customize ['createhd', '--filename', file_to_disk, '--size', 512] |