Changeset 1801


Ignore:
Timestamp:
2000-12-18T12:29:56+13:00 (23 years ago)
Author:
sjboddie
Message:

* empty log message *

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/macros/collect.dm

    r1796 r1801  
    983983<ul>
    984984<li> Greenstone does not have permission to delete the _gsdlhome_/collect/_cgiargbc1dirname_
    985 directory.
     985directory.<br>
     986You may need to remove this directory manually to complete the removal of the _cgiargbc1dirname_
     987collection from this computer.
    986988</ul>
    987989_messagefoot_
  • trunk/gsdl/src/recpt/statusaction.cpp

    r1796 r1801  
    837837  logout << flush;
    838838
     839#ifdef GSDL_LOCAL_LIBRARY
     840  text_t gsdlsite_cfg = filename_cat (gsdlhome, "gsdlsite.cfg");
     841#else
     842  text_t gsdlsite_cfg = "gsdlsite.cfg";
     843#endif
     844
     845  char *gsdlsite_cfgc = gsdlsite_cfg.getcstr();
    839846#ifdef GSDL_USE_IOS_H
    840   ifstream gsdlsitein ("gsdlsite.cfg", ios::in | ios::nocreate);
     847  ifstream gsdlsitein (gsdlsite_cfgc, ios::in | ios::nocreate);
    841848#else
    842   ifstream gsdlsitein ("gsdlsite.cfg", ios::in);
     849  ifstream gsdlsitein (gsdlsite_cfgc, ios::in);
    843850#endif
     851
     852  delete gsdlsite_cfgc;
    844853
    845854  if (gsdlsitein) {
     
    875884      << "<h2>main.cfg</h2>\n"
    876885      << "<p>The main configuration file, "
    877       << maincfgfile << ", contains the following information:<br>\n\n"
     886      << dm_safe(maincfgfile) << ", contains the following information:<br>\n\n"
    878887      << "(Note that only users belonging to the \"administrator\" group "
    879888      << "may edit this file)<br>\n"
Note: See TracChangeset for help on using the changeset viewer.