Changeset 201 for trunk/gsdl/src/recpt


Ignore:
Timestamp:
1999-03-11T14:26:02+13:00 (25 years ago)
Author:
rjmcnab
Message:

Fixed a few small formatting things.

File:
1 edited

Legend:

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

    r200 r201  
    1212/*
    1313   $Log$
     14   Revision 1.9  1999/03/11 01:26:02  rjmcnab
     15   Fixed a few small formatting things.
     16
    1417   Revision 1.8  1999/03/11 00:12:30  rjmcnab
    1518   Started using status.dm to handle the bulky text. Made the status
     
    413416          << "\"</td></tr>\n"
    414417
    415           << "<tr><th>is public?</th><td>\"";
     418          << "<tr><th>is public?</th><td>";
    416419      if (collectinfo.isPublic) textout << outconvert << "true";
    417420      else textout << outconvert << "false";
    418421      textout << outconvert
    419           << "\"</td></tr>\n"
    420 
    421           << "<tr><th>is beta?</th><td>\"";
     422          << "</td></tr>\n"
     423
     424          << "<tr><th>is beta?</th><td>";
    422425      if (collectinfo.isBeta) textout << outconvert << "true";
    423426      else textout << outconvert << "false";
    424427      textout << outconvert
    425           << "\"</td></tr>\n"
     428          << "</td></tr>\n"
    426429
    427430          << "<tr><th>build date</th><td>\""
     
    525528          << "\"</td>\n"
    526529
    527           << "<td>\"";
     530          << "<td>";
    528531      text_t type_string;
    529532      switch ((*filteropt_here).second.type) {
     
    531534      case FilterOption_t::integert: type_string = "integer"; break;
    532535      case FilterOption_t::enumeratedt: type_string = "enumerated"; break;
    533       case FilterOption_t::stringt: type_string = "stringt"; break;
     536      case FilterOption_t::stringt: type_string = "string"; break;
    534537      }
    535538      textout << outconvert
    536539          << type_string
    537           << "\"</td>\n"
     540          << "</td>\n"
    538541       
    539           << "<td>\"";
     542          << "<td>";
    540543      text_t repeat_string;
    541544      switch ((*filteropt_here).second.repeatable) {
     
    546549      textout << outconvert
    547550          << repeat_string
    548           << "\"</td>\n"
     551          << "</td>\n"
    549552       
    550553          << "<td>\""
Note: See TracChangeset for help on using the changeset viewer.