Author: duncan
Date: Wed Nov 21 11:55:02 2007
New Revision: 10151

Log:
[ 1835454 ] Errror when accessing Help plugin list
Fix applied


Modified:
   branches/rel-1-7/freevo/src/www/htdocs/help/plugins.rpy
   branches/rel-1/freevo/src/www/htdocs/help/plugins.rpy

Modified: branches/rel-1-7/freevo/src/www/htdocs/help/plugins.rpy
==============================================================================
--- branches/rel-1-7/freevo/src/www/htdocs/help/plugins.rpy     (original)
+++ branches/rel-1-7/freevo/src/www/htdocs/help/plugins.rpy     Wed Nov 21 
11:55:02 2007
@@ -34,7 +34,7 @@
 import util, config
 
 from helpers.plugins import parse_plugins
-from helpers.plugins import info_html
+from helpers.plugins import html_info
 
 TRUE = 1
 FALSE = 0
@@ -85,7 +85,7 @@
                 for p in all_plugins:
                     if not p[0][:p[0].find('.')] in special_plugins:
                         fv.res +=  '<a name="%s"></a>' % p[0]
-                        fv.res += info_html(p[0], [p])
+                        fv.res += html_info(p[0], [p])
                         fv.res += '[&nbsp;<a 
href="#top">'+_('top')+'</a>&nbsp;|&nbsp;'
                         fv.res += '<a 
href="plugins.rpy">'+_('index')+'</a>&nbsp;|&nbsp\n'
                         fv.res += '<a 
href="/pluginconfig.rpy?expAll#%s">configure</a>]<hr>\n' % p[0]
@@ -93,7 +93,7 @@
                 for p in all_plugins:
                     if p[0][:p[0].find('.')] == type:
                         fv.res +=  '<a name="%s"></a>' % p[0]
-                        fv.res += info_html(p[0], [p])
+                        fv.res += html_info(p[0], [p])
                         fv.res += '[&nbsp;<a 
href="#top">'+_('top')+'</a>&nbsp;|&nbsp;'
                         fv.res += '<a 
href="plugins.rpy">'+_('index')+'</a>&nbsp;|&nbsp\n'
                         fv.res += '<a 
href="/pluginconfig.rpy?expAll#%s">configure</a>]<hr>\n' % p[0]

Modified: branches/rel-1/freevo/src/www/htdocs/help/plugins.rpy
==============================================================================
--- branches/rel-1/freevo/src/www/htdocs/help/plugins.rpy       (original)
+++ branches/rel-1/freevo/src/www/htdocs/help/plugins.rpy       Wed Nov 21 
11:55:02 2007
@@ -34,7 +34,7 @@
 import util, config
 
 from helpers.plugins import parse_plugins
-from helpers.plugins import info_html
+from helpers.plugins import html_info
 
 TRUE = 1
 FALSE = 0
@@ -85,7 +85,7 @@
                 for p in all_plugins:
                     if not p[0][:p[0].find('.')] in special_plugins:
                         fv.res +=  '<a name="%s"></a>' % p[0]
-                        fv.res += info_html(p[0], [p])
+                        fv.res += html_info(p[0], [p])
                         fv.res += '[&nbsp;<a 
href="#top">'+_('top')+'</a>&nbsp;|&nbsp;'
                         fv.res += '<a 
href="plugins.rpy">'+_('index')+'</a>&nbsp;|&nbsp\n'
                         fv.res += '<a 
href="/pluginconfig.rpy?expAll#%s">configure</a>]<hr>\n' % p[0]
@@ -93,7 +93,7 @@
                 for p in all_plugins:
                     if p[0][:p[0].find('.')] == type:
                         fv.res +=  '<a name="%s"></a>' % p[0]
-                        fv.res += info_html(p[0], [p])
+                        fv.res += html_info(p[0], [p])
                         fv.res += '[&nbsp;<a 
href="#top">'+_('top')+'</a>&nbsp;|&nbsp;'
                         fv.res += '<a 
href="plugins.rpy">'+_('index')+'</a>&nbsp;|&nbsp\n'
                         fv.res += '<a 
href="/pluginconfig.rpy?expAll#%s">configure</a>]<hr>\n' % p[0]

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to