diff -Naur testman4trac.1.5.1/testman4trac/trunk/testmanager/wiki.py testman4trac.1.5.1_modified/testman4trac/trunk/testmanager/wiki.py --- testman4trac.1.5.1/testman4trac/trunk/testmanager/wiki.py 2012-08-09 13:10:04.000000000 -0700 +++ testman4trac.1.5.1_modified/testman4trac/trunk/testmanager/wiki.py 2012-09-13 13:06:07.000000000 -0700 @@ -387,7 +387,7 @@ def _get_testplan_properties_markup(self, planid, catid, page_name): tp = TestPlan(self.env, planid, catid, page_name) - result = '' + result = u'' result += _("Author")+': '+html_escape(tp['author'])+'
' result += _("Created")+': '+format_datetime(tp['time'])+'
' result += _("Contained Test Cases")+': '+(_("Contains selected Test Cases"), _("Contains all Test Cases"))[tp['contains_all']]+'
' @@ -417,7 +417,7 @@ is_edit = req.args.get('edit_custom', 'false') has_status = False - plan_name = '' + plan_name = u'' tc_id = tc_name.partition('_TC')[2] test_case = TestCase(self.env, tc_id, tc_name) @@ -593,7 +593,7 @@ if props is not None: obj_props = obj.get_values_as_string(props) - result = '' + result = u'' result += '' result += '' @@ -633,7 +633,7 @@ return HTML(result) def _get_testplan_dialog_markup(self, req, cat_name): - result = """ + result = u"""
' text += '' @@ -724,7 +724,7 @@ return HTML(text) def _get_import_dialog_markup(self, req, cat_name): - result = """ + result = u"""
'+_("Timestamp")+''+_("Author")+''+_("Property")+''+_("Previous Value")+''+_("New Value")+'
' + result = u'
' result += '' result += '' @@ -1188,7 +1188,7 @@ else: display_breadcrumb = 'block' - text = '' % display_breadcrumb + text = u'' % display_breadcrumb path_len = len(breadcrumb) for i, x in enumerate(breadcrumb): if i == 0: @@ -1211,7 +1211,7 @@ # Render the subtree def _render_subtree(self, planid, component, ind, level): data = component - text = '' + text = u'' if (level == 0): data = component['childrenC'] text +='
'+_("Plan Name")+''+_("Author")+''+_("Timestamp")+''+_("Contained Test Cases")+''+_("Test Case Versions")+'