Changeset 4268


Ignore:
Timestamp:
2003-05-12T15:54:54+12:00 (21 years ago)
Author:
kjdon
Message:

changed to use archivedir instead of assocfilepath for image location

Location:
trunk/gsdl3/src/java/org/greenstone/gsdl3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/action/DocumentAction.java

    r4257 r4268  
    192192    doc_meta_param_list.appendChild(doc_param);
    193193    doc_param.setAttribute(GSXML.NAME_ATT, "metadata");
    194     doc_param.setAttribute(GSXML.VALUE_ATT, "assocfilepath");
     194    doc_param.setAttribute(GSXML.VALUE_ATT, "archivedir");
    195195
    196196    // create the doc node list for the metadata request
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/service/GS2Retrieve.java

    r4260 r4268  
    693693    String top_doc_id = OID.getTop(doc_id);
    694694    DBInfo info = gdbm_src_.getInfo(top_doc_id);
    695     String assocfilepath = info.getInfo("assocfilepath");
    696     String image_dir  = site_http_address_ + "/collect/"+cluster_name_+"/index/assoc/"+assocfilepath;
     695    String archivedir = info.getInfo("archivedir");
     696    String image_dir  = site_http_address_ + "/collect/"+cluster_name_+"/index/assoc/"+archivedir;
    697697
    698698    // Resolve all "_httpdocimg_"s
Note: See TracChangeset for help on using the changeset viewer.