Ignore:
Timestamp:
2010-05-07T21:11:22+12:00 (14 years ago)
Author:
ak19
Message:
  1. More changes to makefiles: rm JDBMWrapper.jar and jdbm.jar on clean. 2. DB files (argdb, users, key, history) now not only for gdbm but to work with other db types like jdbm, sqlite and mssql.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/recpt/wizardaction.cpp

    r21877 r22067  
    127127    }
    128128     
    129     text_t argfile = filename_cat(gsdlhome, "tmp", args[macro_prefix+"tmp"], "argdb.gdb");
    130     argdb *args_on_disk = new argdb(argfile);
     129    argdb *args_on_disk = new argdb(gsdlhome,args[macro_prefix+"tmp"]);
    131130    if (!args_on_disk->update_args(saved_args)) {
    132131      // error
    133       logout << "wizardaction: argdb::update_args failed (" << argfile << ")\n";
     132      logout << "wizardaction: argdb::update_args failed\n";
    134133    }
    135134   
     
    138137    if (!args_on_disk->get_args(saved_args)) {
    139138      // error
    140       logout << "wizardaction: argdb::get_args failed (" << argfile << ")\n";
     139      logout << "wizardaction: argdb::get_args failed\n";
    141140    }
    142141    delete args_on_disk;
Note: See TracChangeset for help on using the changeset viewer.