[mythtv-users] Adding canned searches to MythWeb

Jerome Yuzyk jerome at supernet.ab.ca
Wed Feb 28 23:14:11 UTC 2007


On Wednesday 28 February 2007 15:41, Jerome Yuzyk wrote:
> On Wednesday 28 February 2007 13:35, Michael Lynch wrote:
> > On 2/28/07, Jerome Yuzyk <jerome at supernet.ab.ca> wrote:
> > > I have a few things I search for regularly, like sports events, that
> > > I'd like to add to the "Searches" list in MythWeb. How would I do that?
> >
> > With .20-fixes you can just edit
> >
> > /path/to/mythweb/modules/tv/canned_searches.conf.php
> >
> > You should be able to build your search based on the ones already there.
>
> OK I tried this:
>
>     t('NHL Hockey')
>         => 'program.title LIKE "NHL Hockey%"',
>
> and while it works, it shows     !!NoTrans: NHL Hockey!!    in the listing.
>
> What's that?

... after a little Googling ...

The t() function does language translations, and if the argument text isn't in

    /var/www/html/mythweb/modules/_shared/lang/English.lang

then I guess !!NoTrans ....!! is wrapped around the string. So, removing the 
function, like:

     'NHL Hockey'
         => 'program.title LIKE "NHL Hockey%"',

makes the menu entry OK. 


More information about the mythtv-users mailing list