bokutin
bokutin
Hi. I wrote a command like the one below. . . use MyApp::Cmd::Command::IDS; ... sub command_names { 'IDS' } ... The lower line seems to force lowercase letters. diff --git...
https://github.com/monitoring-plugins/monitoring-plugin-perl/blob/3035ed03d86da7f36ba873e0027d7d3a30504256/lib/Monitoring/Plugin/Functions.pm#L122 Isn't the intention below? /\A\s*\n/mxs; or /^\S/;
https://github.com/gshank/html-formhandler/blob/b0325394b2c93fb79e81ea7067996297affbcc01/lib/HTML/FormHandler/Field.pm#L1017 Specifying "has_field field_name => ( tags => { no_wrapper_id => 1 } )" does not make it false because this line evaluates to $self->has_flag('is_compound') && not (exists $attr->{id} &&...
This is a continuation of #18 cookie_file saving is now working. If you implement cookies per session according to https://github.com/detro/ghostdriver/issues/170 , it might be like the following. # lib/WWW/Mechanize/PhantomJS.pm:222 $options{...
Hi. Although cookie_file => $ filename, cookie_file is no longer saved. Until 0.21 was saved. It is affected by ghostdriver updating to v2.1.0. The cause is this. https://github.com/detro/ghostdriver/pull/547
Hello. I think to try a little better output of DBIx::Class::Schema::Loader. It is used in the schema loader Data::Dump::dump() is. https://github.com/dbsrgits/dbix-class-schema-loader/blob/master/lib/DBIx/Class/Schema/Loader/Base.pm#L2868 .pm file to be output contains the "use utf8"...
I noticed this when using plugins/munin_update. https://github.com/munin-monitoring/munin/blob/091c8e612c77e99718bc4dc282a0168b3cafa7a5/plugins/node.d/munin_update#L107 clean_fieldname 4thhost -> _thhost clean_fieldname 5thhost -> _thhost This does not work. https://github.com/munin-monitoring/munin/blob/091c8e612c77e99718bc4dc282a0168b3cafa7a5/plugins/plugin.sh#L13 We feel the following should be done even if it...