maps://?q=LAT,LNG
geo:LAT,LNG
| url.query = function( url ) { | |
| var parsed = this.parse( url, true, false ), | |
| query = Object.keys( parsed.query ), | |
| result = {}; | |
| if( query.length > 0 ) { | |
| query.forEach(function(key){ | |
| if( key.match( /([^\[]+)\[([^\]]+)\]/g ) ) { | |
| key.replace( /([^\[]+)\[([^\]]+)\]/g, function( $0, $1, $2 ) { | |
| result[$1] = result[$1] || {}; | |
| result[$1][$2] = parsed.query[key]; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <script | |
| src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r68/three.min.js" | |
| ></script> | |
| <script | |
| src="https://rawgit.com/mrdoob/three.js/master/examples/js/controls/TrackballControls.js" | |
| ></script> |
| add_filter( 'wc_order_is_editable', 'wc_make_processing_orders_editable', 10, 2 ); | |
| function wc_make_processing_orders_editable( $is_editable, $order ) { | |
| if ( $order->get_status() == 'processing' ) { | |
| $is_editable = true; | |
| } | |
| return $is_editable; | |
| } |
| Possible values for ext-name: | |
| bcmath | |
| bz2 | |
| calendar | |
| ctype | |
| curl | |
| dba | |
| dom | |
| enchant |
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start