Changeset 2418


Ignore:
Timestamp:
2001-05-15T12:20:38+12:00 (23 years ago)
Author:
sjboddie
Message:

some more small changes to the collector interface

Location:
trunk/gsdl
Files:
2 edited

Legend:

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

    r2407 r2418  
    4242
    4343_imagemore_ {<a href="javascript:more()" onMouseover="roll('more',1);" onMouseOut="roll('more',0);"><img
    44 name="more" src="_httpimg_/moreof.gif" onLoad="gbutton(this,'_httpimg_/moreon.gif');" border=0 alt="more"></a>}
     44name="more" src="_httpimg_/moreof.gif" onLoad="gbutton(this,'_httpimg_/moreon.gif');" border=0 alt="more"
     45align=top></a>}
    4546_imagemore_ [v=1] {more}
    4647
     
    500501_srcebadsources_ {
    501502<p>One or more of the input sources you specified is unavailable (marked
    502 &quot;X&quot; below).
     503_iconcross_ below).
    503504
    504505<p>This might be because
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r2407 r2418  
    228228  arg_ainfo.longname = "collector specific";
    229229  arg_ainfo.multiplechar = false;
     230  arg_ainfo.multiplevalue = false;
    230231  arg_ainfo.defaultstatus = cgiarginfo::weak;
    231232  arg_ainfo.argdefault = "0";
     
    326327      current_page != "bildframe1" && current_page != "new") {
    327328    // update arguments that were saved to the harddrive
    328     enum source_t {default_arg, compressed_arg, cgi_arg, program_arg};
    329329    text_tmap saved_args;
    330330    saved_args["bc1fullname"] = "";
     
    342342    text_tmap::iterator end = saved_args.end();
    343343    while (here != end) {
    344       if (args.lookupcgiarg((*here).first).source != default_arg) {
     344      if (args.lookupcgiarg((*here).first).source != cgiarg_t::default_arg) {
    345345    (*here).second = args[(*here).first];
    346346      }
     
    921921    }
    922922    if (i+1 == numboxes) {
    923       rv += "_imagemore_</nobr>";
     923      if (!badsources) rv += "_iconblank_";
     924      rv += "_imagemore_</nobr><br>";
    924925    } else {
    925       rv += "</nobr>\n";
     926      rv += "</nobr><br>\n";
    926927    }
    927928  }
     
    18531854  // this relies on filenames/URLs not being able to contain
    18541855  // commas
     1856  char *tmp = args["bc1input"].getcstr();
    18551857  splitchar (args["bc1input"].begin(), args["bc1input"].end(), ',', inputvalues);
    18561858
Note: See TracChangeset for help on using the changeset viewer.