Ignore:
Timestamp:
2000-04-14T16:45:19+12:00 (24 years ago)
Author:
sjboddie
Message:

Modified the English of the debug output slightly

File:
1 edited

Legend:

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

    r1090 r1097  
    2828/*
    2929   $Log$
     30   Revision 1.25  2000/04/14 04:45:19  sjboddie
     31   Modified the English of the debug output slightly
     32
    3033   Revision 1.24  2000/04/14 03:10:35  sjboddie
    3134   tidied up a few issues concerning the new debug info which showed
     
    399402  bool colspec = false;
    400403  if (configinfo.collection.empty()) {
    401     cout << "Receptionist is running in general mode.\n";
     404    cout << "Receptionist is running in \"general\" (i.e. not \"collection\n"
     405     << "specific\") mode.\n";
    402406  } else {
    403407    cout << text_t2ascii
    404      << "Receptionist is running in collection specific mode.\n"
     408     << "Receptionist is running in \"collection specific\" mode.\n"
    405409     << "  collection=" << configinfo.collection << "\n"
    406410     << "  collection directory=" << configinfo.collectdir << "\n";
     
    415419  cout << text_t2ascii << "gwcgi=" << configinfo.gwcgi << "\n"
    416420       << "  Note that unless gwcgi has been set from a configuration\n"
    417        << "  file it is dependant on environment variables set by your\n"
    418        << "  webserver. It may not therefore be the same value when run\n"
     421       << "  file it is dependent on environment variables set by your\n"
     422       << "  webserver. Therefore it may not have the same value when run\n"
    419423       << "  from the command line as it would be when run from your\n"
    420424       << "  web server.\n";
     
    471475       << "Collections:\n"
    472476       << "------------\n"
    473        << "  Note that collections will only appear as being built if\n"
     477       << "  Note that collections will only appear as \"running\" if\n"
    474478       << "  their build.cfg files exist, are readable, contain a valid\n"
    475479       << "  builddate field (i.e. > 0), and are in the collection's\n"
     
    505509        else cout << "private";
    506510
    507         if (cinfo.buildDate > 0) cout << "   built            ";
    508         else cout << "   requires building";
     511        if (cinfo.buildDate > 0) cout << "   running    ";
     512        else cout << "   not running";
    509513      }
    510514
     
    581585  }
    582586
    583   if (debug) cout << "Configuring Greenstone...\n";
    584 
     587  if (debug) {
     588    cout << "Configuring Greenstone...\n";
     589    cout << flush;
     590  }
    585591
    586592  // init stuff - we can't output error pages directly with
     
    616622
    617623    // initialise the library software
    618     if (debug) cout << "Initializing...\n";
     624    if (debug) {
     625      cout << "Initializing...\n";
     626      cout << flush;
     627    }
    619628
    620629    text_t init_file = filename_cat (gsdlhome, "etc", "initout.txt");
Note: See TracChangeset for help on using the changeset viewer.