Ignore:
Timestamp:
2003-01-13T20:09:15+13:00 (21 years ago)
Author:
jrm21
Message:

tidied up to make sure all textout << "string" commands go through the
outconverter so we have the right charset for the output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/vlistbrowserclass.cpp

    r3543 r3666  
    7373
    7474  if (use_table || colnumber > 0) {
    75     textout << "<table><tr valign=top>";
     75    textout << outconvert << "<table><tr valign=top>";
    7676    // get tab size
    7777    text_t tab; int itab;
     
    8888                   link, icon, highlight, logout);
    8989 
    90   if (use_table  || colnumber > 0) textout << "</tr></table>\n";
     90  if (use_table  || colnumber > 0) textout << outconvert << "</tr></table>\n";
    9191
    9292  return 1;
     
    109109
    110110  if (colnumber > 0) {
    111     textout << "<table><tr valign=top>";
     111    textout << outconvert << "<table><tr valign=top>";
    112112    // get tab size
    113113    text_t tab; int itab;
     
    117117                   << "<td><img src=\"_httpimg_/space.gif\" width="
    118118                   << (itab*colnumber) << "></td>";
    119     textout << "<td>";
    120   }
    121   if (use_table) textout << "<table>\n";
     119    textout << outconvert << "<td>";
     120  }
     121  if (use_table) textout << outconvert << "<table>\n";
    122122
    123123  ResultDocInfo_tarray::iterator thissection = sections.docInfo.begin();
     
    150150
    151151    if ((item == 1 && use_table) || colnumber > 0 )
    152       textout << "<tr valign=top>\n";
     152      textout << outconvert << "<tr valign=top>\n";
    153153
    154154    textout << outconvert << disp
     
    157157
    158158    if ((item >= perline && use_table) || colnumber > 0) {
    159       textout << "\n</tr>";
     159      textout << outconvert << "\n</tr>";
    160160      item = 0;
    161161    }
    162     textout << "\n";
     162    textout << outconvert << "\n";
    163163    thissection ++;
    164164  }
    165165
    166   if (use_table) textout << "</table>\n";
    167   if (colnumber > 0) textout << "</table></td></tr></table>\n";
     166  if (use_table) textout << outconvert << "</table>\n";
     167  if (colnumber > 0) textout << outconvert << "</table></td></tr></table>\n";
    168168
    169169  return 1;
Note: See TracChangeset for help on using the changeset viewer.