GitMonitor.js
[gitlive] / FixBug.js
index c448502..813382c 100644 (file)
--- a/FixBug.js
+++ b/FixBug.js
@@ -459,13 +459,18 @@ FixBug=new XObject({
                                                         
                                                     },
                                                     show : function(p) {
-                                                         var line =    '[' + p.status_name + '] <b>'   + 
-                                                                 GLib.markup_escape_text(p.summary, p.summary.length)  + "</b>\n"  +
-                                                                 '<span color="#666">' + 
-                                                                 GLib.markup_escape_text(p.description,p.description.length).split("\n").slice(0,3).join("\n") +
-                                                                 '</span>';
+                                                         var line =  [
+                                                                'Status : ' +   p.status_name,
+                                                                'ID : ' +   p.id,
+                                                                '',
+                                                                'Summary :  ' +  p.summary,
+                                                                 '' + 
+                                                                 p.description,
+                                                             ].join("\n")   ;
                                                              print(line);
                                                              
+                                                             
+                                                             // can not do rich text due to so many missing features..
                                                               this.el.get_buffer().set_text(line, line.length);
                                                      
                                                     },