a47e8c7cb0e21ee8a38b27d1e2e96c0ad5b0676c
max
  Thu Dec 22 08:01:22 2011 -0800
fixed word breaking in t2g tables, updated track desc
diff --git src/hg/hgc/t2g.c src/hg/hgc/t2g.c
index 791d9ee..36d61c4 100644
--- src/hg/hgc/t2g.c
+++ src/hg/hgc/t2g.c
@@ -138,33 +138,33 @@
 
         // only display this sequence if we're in the right section
         if (clickedSeqs!=NULL && ((hashLookup(clickedSeqs, annotId)!=0) != isClickedSection)) {
             foundSkippedRows = TRUE;
             continue;
         }
 
         if (fasta)
         {
             printf("<TT>>%s<BR>%s<BR></TT>", annotId, seq);
         }
         else
         {
             printf("<TR style=\"background-color: #%s\">\n", HG_COL_LOCAL_TABLE);
             if (showDesc)
-                printf("<TD style=\"word-break: normal\">%s\n", fileDesc);
+                printf("<TD style=\"word-break: break-all\">%s\n", fileDesc);
             //printf("<TD><I>%s</I></TD>\n", snippet); 
-            printf("<TD style=\"word-break: normal\"><I>%s</I></TD>\n", snippet); 
+            printf("<TD style=\"word-break: break-all\"><I>%s</I></TD>\n", snippet); 
             if (t2gDebug) 
             {
                 printf("<TD>article %s, file %s, seq %s, annotId %s", artId, fileId, seqId, annotId);
             }
 
             // print links to locations 
             if (!isClickedSection && !t2gDebug) {
                 struct slName *locs;
                 // format: hg19/chr1:300-400,mm9/chr1:60006-23234
                 // split on "," then split on "/"
                 locs = charSepToSlNames(locList, ',');
                 printf("<TD>");
                 if (locs==NULL)
                     printf("No matches");
                 for ( ; locs!=NULL; locs = locs->next)