[mythtv-commits] Ticket #103: Find daily/weekly rules do not set find* fiields when created in MythWeb

MythTV mythtv at cvs.mythtv.org
Wed Jul 13 14:45:51 EDT 2005


#103: Find daily/weekly rules do not set find* fiields when created in MythWeb
---------------------+------------------------------------------------------
       Id:  103      |      Status:  new                     
Component:  mythweb  |    Modified:  Wed Jul 13 18:45:50 2005
 Severity:  medium   |   Milestone:                          
 Priority:  minor    |     Version:                          
    Owner:  xris     |    Reporter:  bjm                     
---------------------+------------------------------------------------------
 kFindDaily and kFindWeekly rules rely on the 'findtime'and 'findday'
 fields in the 'mythconverg.record' table. However, these are set to empty
 defaults when one of these rules are created from MythWeb.

 To reproduce, from MythWeb chose a show that appears on several different
 days of the week and select a showing on any day other than Monday. I
 chose "Charlie Rose" on Wed. Choose "Find and record one showing of this
 title each week."

 The result should be to record this Wed (today in my test) and next Wed.
 The result was that it selected Friday, next Monday and the following
 Monday.
 This is becase the find* fields are empty:

 {{{
 mysql> select findtime,findday from record where title='Charlie Rose';
 +----------+---------+
 | findtime | findday |
 +----------+---------+
 | 00:00:00 |       0 |
 +----------+---------+
 1 row in set (0.01 sec)
 }}}

 If I create a similar rule for another show from within mythfrontend:

 {{{
 mysql> select findtime,findday from record where title='Zoom';
 +----------+---------+
 | findtime | findday |
 +----------+---------+
 | 15:30:00 |       4 |
 +----------+---------+
 1 row in set (0.01 sec)
 }}}

 This schedules the correct showings for this Wed and next Wed.

-- 
Ticket URL: <http://cvs.mythtv.org/trac/ticket/103>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list