xmltv/grab/zz_sdjson_sqlite tv_grab_zz_sdjson_sqlite, 1.2, 1.3
Gary Buhrmaster <[email protected]> Mon, 26 Sep 2016 15:39:21 +0000
| Newsgroups | gmane.comp.tv.xmltv.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/xmltv/xmltv/grab/zz_sdjson_sqlite
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13224
Modified Files:
tv_grab_zz_sdjson_sqlite
Log Message:
Update to master version v1.24 after soak
Includes fixes:
Improve (correct) cast mappings per @jpoet
Remove experimental decl
Index: tv_grab_zz_sdjson_sqlite
===================================================================
RCS file: /cvsroot/xmltv/xmltv/grab/zz_sdjson_sqlite/tv_grab_zz_sdjson_sqlite,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tv_grab_zz_sdjson_sqlite 28 Aug 2016 23:48:19 -0000 1.2
--- tv_grab_zz_sdjson_sqlite 26 Sep 2016 15:39:19 -0000 1.3
***************
*** 45,48 ****
--- 45,50 ----
# Version history:
#
+ # 2016/09/10 - 1.24 - change (improve) cast mapping
+ # 2016/09/10 - 1.23 - remove use warning nonfatal experimental decl
# 2016/08/25 - 1.22 - no warning messages for malformed SD data if quiet
# 2016/08/25 - 1.21 - additional error checking of SD data
***************
*** 77,81 ****
use strict;
use warnings FATAL => 'all';
! use warnings NONFATAL => qw(exec recursion internal malloc newline experimental deprecated portable);
no warnings 'once';
--- 79,83 ----
use strict;
use warnings FATAL => 'all';
! use warnings NONFATAL => qw(exec recursion internal malloc newline deprecated portable);
no warnings 'once';
***************
*** 893,898 ****
{
'Actor' => 'actor',
! 'Guest Star' => 'actor',
! 'Guest Voice' => 'actor',
'Voice' => 'actor',
'Correspondent' => 'guest',
--- 895,900 ----
{
'Actor' => 'actor',
! 'Guest Star' => 'guest',
! 'Guest Voice' => 'guest',
'Voice' => 'actor',
'Correspondent' => 'guest',
------------------------------------------------------------------------------