diff options
| author | Pav Lucistnik <pav@FreeBSD.org> | 2011-01-20 13:58:54 +0000 |
|---|---|---|
| committer | Pav Lucistnik <pav@FreeBSD.org> | 2011-01-20 13:58:54 +0000 |
| commit | 9330dffc5a0eab8173f5950539a547037091ef8c (patch) | |
| tree | 15521d184be76dbb7f3ff11e18ff66ebb598378d /multimedia/freevo/files/patch-src-www-htdocs-search.rpy | |
| parent | Turn BROKEN into ONLY_FOR_ARCHS, as java-1.4 is only available fori386 (diff) | |
Port was broken following recent python updates.
- remove dependency on python 2.5 version
- add additional patches needed due to python Twisted library updates
- fix rc.d script
PR: ports/152965
Submitted by: J.R. Oldroyd <fbsd@opal.com> (maintainer)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=268043
Diffstat (limited to 'multimedia/freevo/files/patch-src-www-htdocs-search.rpy')
| -rw-r--r-- | multimedia/freevo/files/patch-src-www-htdocs-search.rpy | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/multimedia/freevo/files/patch-src-www-htdocs-search.rpy b/multimedia/freevo/files/patch-src-www-htdocs-search.rpy new file mode 100644 index 000000000000..172e1d8e0e88 --- /dev/null +++ b/multimedia/freevo/files/patch-src-www-htdocs-search.rpy @@ -0,0 +1,24 @@ +--- src/www/htdocs/search.rpy.orig 2009-02-19 12:59:44.000000000 -0500 ++++ src/www/htdocs/search.rpy 2010-04-19 20:03:02.000000000 -0400 +@@ -113,17 +113,17 @@ + if not chan: chan = 'UNKNOWN' + fv.tableCell(chan, 'class="'+status+'" colspan="1"') + +- fv.tableCell(prog.title, 'class="'+status+'" colspan="1"') ++ fv.tableCell(unicode(prog.title, 'iso-8859-1'), 'class="'+status+'" colspan="1"') + if prog.sub_title: +- fv.tableCell(prog.sub_title, 'class="'+status+'" colspan="1"') ++ fv.tableCell(unicode(prog.sub_title, 'iso-8859-1'), 'class="'+status+'" colspan="1"') + else: + fv.tableCell(' ', 'class="'+status+'" colspan="1"') + + + if prog.desc == '': +- cell = _('Sorry, the program description for %s is unavailable.') % ('<b>'+prog.title+'</b>') ++ cell = _('Sorry, the program description for %s is unavailable.') % ('<b>'+unicode(prog.title, 'iso-8859-1')+'</b>') + else: +- cell = prog.desc ++ cell = unicode(prog.desc, 'iso-8859-1') + fv.tableCell(cell, 'class="'+status+'" colspan="1"') + + if status == 'scheduled': |
