I hereby claim:
- I am freshjones on github.
- I am williamjones (https://keybase.io/williamjones) on keybase.
- I have a public key ASCMRA-xCcSqkU-PwzyHVx5GdoGS5hsHElD24GcLUs7UZAo
To claim this, I am signing this object:
| #!/bin/sh | |
| docker events --filter 'event=start' --filter 'event=stop' | while read event | |
| do | |
| container_id=`echo $event | sed 's/.*Z\ \(.*\):\ .*/\1/'` | |
| echo $container_id |
| git branch | |
| * master | |
| portfolio_updates | |
| git checkout portfolio_updates <the_file_path(s)> | |
| git status | |
| git reset HEAD . | |
| git status |
| //stop service | |
| sudo launchctl unload /Library/LaunchDaemons/org.macports.dnsmasq.plist | |
| //stop service through reboots | |
| sudo launchctl unload -w /Library/LaunchDaemons/org.macports.dnsmasq.plist | |
| //start service | |
| sudo port load dnsmasq | |
| //reload through reboots |
| git log --pretty=format:"%ad: %s" --after="2019-10-31" --until="2019-12-01" --reverse --date=format:'%Y-%m-%d' |
I hereby claim:
To claim this, I am signing this object:
| diff --git a/workbench_scheduler.module b/workbench_scheduler.module | |
| index 50a1e19..65f18ba 100644 | |
| --- a/workbench_scheduler.module | |
| +++ b/workbench_scheduler.module | |
| @@ -1146,6 +1146,32 @@ function workbench_scheduler_schedules_exist() { | |
| } | |
| /** | |
| + * Check for the existence of a transition from one state to another. | |
| + * |
| /* | |
| * version 0.0.1 | |
| */ | |
| (function( $, undefined ) { | |
| $.widget("ui.dragslider", $.ui.slider, { | |
| options: $.extend({},$.ui.slider.prototype.options,{rangeDrag:false}), | |
| _create: function() { |
| /* Full Version */ | |
| $view->set_display($display_id); | |
| $view->init_handlers(); | |
| $view->set_exposed_input($exposed_filters); | |
| $exposed_form_state = array( | |
| 'view' => &$view, | |
| 'display' => &$view->display[$display_id], | |
| 'exposed_form_plugin' => $view->display_handler->get_plugin('exposed_form'), |
| try | |
| { | |
| } | |
| catch(EntityMetadataWrapperException $exc) | |
| { | |
| watchdog( | |
| 'MODULE_NAME', | |
| 'See ' . __FUNCTION__ . '() <pre>' . $exc->getTraceAsString() . '</pre>', | |
| NULL, WATCHDOG_ERROR |
| diff --git a/superfish.module b/superfish.module | |
| index f994eaa..d884ed2 100644 | |
| --- a/superfish.module | |
| +++ b/superfish.module | |
| @@ -1753,6 +1753,18 @@ function theme_superfish($variables) { | |
| $menu = i18n_menu_localize_tree($menu); | |
| } | |
| + if(module_exists('og')) | |
| + { |