Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-05-30 Thread John Molohan
On 30/05/2010 15:38, Matthias Reichl wrote:
> On Sun, May 30, 2010 at 12:44:50AM +0100, John Molohan wrote:
>
>> On 22/05/2010 12:54, Matthias Reichl wrote:
>>  
>>> I modified the Panorama skin so that it displays the userdate (if
>>> available), otherwise it displays the year (if available). This
>>> works with IMDB fxds, old recordserver fxds (which set "year") and
>>> new recordserver fxds (setting "userdate").
>>>
>>> Here's a patch (just Panorama skin for now), what do you think
>>> about it?
>>>
>>> so long,
>>>
>>> Hias
>>>
>>>
>> Sorry for the delay in replying. The patch seems reasonable to me if you
>> want to submit it to the bug tracker?
>> http://sourceforge.net/tracker/?atid=446895&group_id=46652
>>  
> I cleaned up the patch a little bit and also fixed the other skins:
> https://sourceforge.net/tracker/?func=detail&aid=3009193&group_id=46652&atid=446895
>
> so long,
>
> Hias
>
Excellent, thanks Hias.

John

--

___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-05-30 Thread Matthias Reichl
On Sun, May 30, 2010 at 12:44:50AM +0100, John Molohan wrote:
> On 22/05/2010 12:54, Matthias Reichl wrote:
>> I modified the Panorama skin so that it displays the userdate (if
>> available), otherwise it displays the year (if available). This
>> works with IMDB fxds, old recordserver fxds (which set "year") and
>> new recordserver fxds (setting "userdate").
>>
>> Here's a patch (just Panorama skin for now), what do you think
>> about it?
>>
>> so long,
>>
>> Hias
>>
> Sorry for the delay in replying. The patch seems reasonable to me if you  
> want to submit it to the bug tracker?  
> http://sourceforge.net/tracker/?atid=446895&group_id=46652

I cleaned up the patch a little bit and also fixed the other skins:
https://sourceforge.net/tracker/?func=detail&aid=3009193&group_id=46652&atid=446895

so long,

Hias

--

___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-05-29 Thread John Molohan
On 22/05/2010 12:54, Matthias Reichl wrote:
> On Wed, Feb 10, 2010 at 09:45:55AM +, John Molohan wrote:
>
>> On 08/02/2010 10:40, Paul Sijben wrote:
>>  
>>> I (re) inserted the line
>>>
>>>   fxd.info['year'] = time.strftime('%m-%d ' + config.TV_TIME_FORMAT,
>>> time.localtime(rec_prog.start))
>>>
>>> in recordserver create_fxd (around line 1395) (I am imprecise because of
>>> my own changes to the file for multiple concurrent recording.)
>>>
>>> It looks as if this line was removed because the info goes into
>>> userdate. But that is not shown in the listings.
>>>
>>>
>> Thanks for the update. If you have time it would probably be better to
>> change the skin to use the userdate instead and submit a patch if you could.
>>  
> I just had a look at this issue (I'm using freevo 1.9.0 here), but
> I'm not sure what would be the best approach to fix it:
>
> The IMDB fxd files contain a "year" entry, but not a "userdate".
> fxd files created by the recordserver contain the "userdate" entry
> plus an empty "year" entry.
>
> I modified the Panorama skin so that it displays the userdate (if
> available), otherwise it displays the year (if available). This
> works with IMDB fxds, old recordserver fxds (which set "year") and
> new recordserver fxds (setting "userdate").
>
> Here's a patch (just Panorama skin for now), what do you think
> about it?
>
> so long,
>
> Hias
>
Sorry for the delay in replying. The patch seems reasonable to me if you 
want to submit it to the bug tracker? 
http://sourceforge.net/tracker/?atid=446895&group_id=46652

John

-- 
John Molohan
IT Manager

Griffith College Dublin
South Circular Road
Dublin 8
Ireland

Phone: +353 1 4163366
Web: www.it.gcd.ie www.gcd.ie

Disclaimer:
This E-mail is from Griffith College Dublin.
The E-mail and any files transmitted with it are confidential and may be 
privileged and are intended solely for the use of the individual or entity to 
whom they are addressed. If you are not the addressee you are prohibited from 
disclosing its content, copying it or distributing it otherwise than to the 
addressee. If you have received this e-mail in error, please immediately notify 
the sender by replying to this e-mail and delete the e-mail from your computer.

Bellerophon Ltd, trades as Griffith College (registered in Ireland No. 60469) 
with its registered address as Griffith College Campus, South Circular Road, 
Dublin 8, Ireland.



--

___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-05-22 Thread Matthias Reichl
On Wed, Feb 10, 2010 at 09:45:55AM +, John Molohan wrote:
> On 08/02/2010 10:40, Paul Sijben wrote:
> > I (re) inserted the line
> >
> >  fxd.info['year'] = time.strftime('%m-%d ' + config.TV_TIME_FORMAT,
> > time.localtime(rec_prog.start))
> >
> > in recordserver create_fxd (around line 1395) (I am imprecise because of
> > my own changes to the file for multiple concurrent recording.)
> >
> > It looks as if this line was removed because the info goes into
> > userdate. But that is not shown in the listings.
> >
> Thanks for the update. If you have time it would probably be better to 
> change the skin to use the userdate instead and submit a patch if you could.

I just had a look at this issue (I'm using freevo 1.9.0 here), but
I'm not sure what would be the best approach to fix it:

The IMDB fxd files contain a "year" entry, but not a "userdate".
fxd files created by the recordserver contain the "userdate" entry
plus an empty "year" entry.

I modified the Panorama skin so that it displays the userdate (if
available), otherwise it displays the year (if available). This
works with IMDB fxds, old recordserver fxds (which set "year") and
new recordserver fxds (setting "userdate").

Here's a patch (just Panorama skin for now), what do you think
about it?

so long,

Hias
Index: freevo/share/skins/main/Panorama.fxd
===
--- freevo/share/skins/main/Panorama.fxd	(revision 11576)
+++ freevo/share/skins/main/Panorama.fxd	(working copy)
@@ -136,11 +136,18 @@
 
 
 
-
+
 (
-
+
 )
 
+
+
+(
+
+)
+
+
 
 
 
--

___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-02-07 Thread Paul Sijben
it seems that the info used to be yn the  field and it is
no longer there.

I'll compare the code that is writing the fxd files.

Paul

John Molohan wrote:
> Paul Sijben wrote:
>   
>> In moving to freevo 1.9 from 1.6 I seem to have lost the date and time
>> in the fxd files for the recorded shows.
>>
>> What should I do to get that back, is there some setting I forgot to set?
>>
>> any help would be greatly appreciated.
>>
>> Paul
>>   
>> 
> Have you checked the fxd's to see if the info is still there? If so it 
> could be a change to the skin, 1.6 to 1.9 has seen a lot change. If the 
> info is still in the files try a couple of other skins to see if they 
> display the info, if so you can probably add the code back to the skin 
> of your choice.
>
> John
>
> --
> The Planet: dedicated and managed hosting, cloud storage, colocation
> Stay online with enterprise data centers and the best network in the business
> Choose flexible plans and management services without long-term contracts
> Personal 24x7 support from experience hosting pros just a phone call away.
> http://p.sf.net/sfu/theplanet-com
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>   

-- 
Paul Sijben mailto:p...@sijben.net
Amersfoort  http://www.sijben.net

--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-02-07 Thread John Molohan
Paul Sijben wrote:
> In moving to freevo 1.9 from 1.6 I seem to have lost the date and time
> in the fxd files for the recorded shows.
>
> What should I do to get that back, is there some setting I forgot to set?
>
> any help would be greatly appreciated.
>
> Paul
>   
Have you checked the fxd's to see if the info is still there? If so it 
could be a change to the skin, 1.6 to 1.9 has seen a lot change. If the 
info is still in the files try a couple of other skins to see if they 
display the info, if so you can probably add the code back to the skin 
of your choice.

John

--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] how to (re) enable the recording time & date in directorylisting?

2010-02-07 Thread Paul Sijben
In moving to freevo 1.9 from 1.6 I seem to have lost the date and time
in the fxd files for the recorded shows.

What should I do to get that back, is there some setting I forgot to set?

any help would be greatly appreciated.

Paul

-- 
Paul Sijben
tel 0334557522


--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users