Author: mir3x
Date: Mon Jul 11 07:13:04 2016
New Revision: 33212

URL: http://svn.gna.org/viewcvs/freeciv?rev=33212&view=rev
Log:
Use toHtmlEscaped() to convert html tags.

Reported by Jacob Nevins <jtn>

See bug #24829


Modified:
    branches/S2_6/client/gui-qt/chatline.cpp
    branches/S2_6/client/gui-qt/chatline.h

Modified: branches/S2_6/client/gui-qt/chatline.cpp
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_6/client/gui-qt/chatline.cpp?rev=33212&r1=33211&r2=33212&view=diff
==============================================================================
--- branches/S2_6/client/gui-qt/chatline.cpp    (original)
+++ branches/S2_6/client/gui-qt/chatline.cpp    Mon Jul 11 07:13:04 2016
@@ -35,7 +35,6 @@
 #include "chatline.h"
 
 static bool is_plain_public_message(QString s);
-static QString replace_signs(QString str);
 /***************************************************************************
   Constructor for chatwdg
 ***************************************************************************/
@@ -301,38 +300,6 @@
   chat_line->setFocus();
 }
 
-/***************************************************************************
-  increases tag start or stop if there are converted sings < and > by 
-  replace signs function
-***************************************************************************/
-int increase_tags(QString str, int i)
-{
-  int j = 0;
-  int k, l, m;
-  int count = 0;
-
-  j = 0;
-  while (1) {
-    m = str.indexOf("&gt;", j);
-    l = str.indexOf("&lt;", j);
-    if ( m != -1 && l != -1) {
-      k = qMin(m, l);
-    } else if (l == -1 && m != -1) {
-      k = m;
-    } else if (l != -1 && m == -1) {
-      k = l;
-    } else {
-      k = -1;
-    }
-    if (i <= k || k == -1) {
-      break;
-    }
-    i = i + 3;
-    j = k + 3;
-    count++;
-  }
-  return count * 3;
-}
 
 /***************************************************************************
   Applies tags to text
@@ -340,29 +307,26 @@
 QString apply_tags(QString str, const struct text_tag_list *tags,
                    bool colors_change)
 {
-  QByteArray qba;
-  int start, stop;
+  int start, stop, last_i;
   QString str_col;
   QString color;
+  QString final_string;
   QColor qc;
   QMultiMap <int, QString> mm;
-  qba = str.toUtf8();
   if (tags == NULL) {
     return str;
   }
   text_tag_list_iterate(tags, ptag) {
     if ((text_tag_stop_offset(ptag) == FT_OFFSET_UNSET)) {
-      stop = qba.count();
+      stop = str.count();
     } else {
       stop = text_tag_stop_offset(ptag);
-      stop = stop + increase_tags(str, stop);
     }
 
     if ((text_tag_start_offset(ptag) == FT_OFFSET_UNSET)) {
       start = 0;
     } else {
       start = text_tag_start_offset(ptag);
-      start = start + increase_tags(str, start);
     }
     switch (text_tag_type(ptag)) {
     case TTT_BOLD:
@@ -437,44 +401,24 @@
   } text_tag_list_iterate_end;
 
   /* insert html starting from last items */
+  last_i = str.count();
   QMultiMap<int, QString>::const_iterator i = mm.constEnd();
   while (i != mm.constBegin()) {
     --i;
-    qba.insert(i.key(), i.value());
-  }
-  return QString(qba);
-}
-
-/**************************************************************************
-  Replace signs < and > with &lt; and &gt; or they would be treated
-  as html
-**************************************************************************/
-static QString replace_signs(QString str)
-{
-  QString s, s2;
-  QStringList allowed_tags;
-  int i, j;
-
-  j = 0;
-  while (1) {
-    i = str.indexOf('<', j);
-    if (i == -1) {
-      break;
-    }
-   str.replace(i, 1 , "&lt;");
-   j++;
-  }
-  j = 0;
-  while (1) {
-    i = str.indexOf('>', j);
-    if (i == -1) {
-      break;
-    }
-   str.replace(i, 1 , "&gt;");
-   j++;
-  }
-  return str;
-}
+    if (i.key() < last_i) {
+      final_string = final_string.prepend(str.mid(i.key(), last_i - i.key())
+                                             .toHtmlEscaped());
+    }
+    last_i = i.key();
+    final_string = final_string.prepend(i.value());
+  }
+  if (last_i == str.count()) {
+    return str;
+  }
+
+  return final_string;
+}
+
 
 /**************************************************************************
   Helper function to determine if a given client input line is intended as
@@ -540,7 +484,6 @@
   gui()->set_status_bar(str);
   gui()->update_completer();
 
-  str = replace_signs(str);
   wakeup = gui_options.gui_qt_wakeup_text;
 
   /* Format wakeup string if needed */

Modified: branches/S2_6/client/gui-qt/chatline.h
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_6/client/gui-qt/chatline.h?rev=33212&r1=33211&r2=33212&view=diff
==============================================================================
--- branches/S2_6/client/gui-qt/chatline.h      (original)
+++ branches/S2_6/client/gui-qt/chatline.h      Mon Jul 11 07:13:04 2016
@@ -31,7 +31,6 @@
 
 QString apply_tags(QString str, const struct text_tag_list *tags,
                    bool colors_change);
-int increase_tags(QString str, int i);
 /***************************************************************************
   Class for chat widget
 ***************************************************************************/


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to