Changeset 8829


Ignore:
Timestamp:
2004-12-16T15:29:17+13:00 (19 years ago)
Author:
kjdon
Message:

removed the print statements I committed by accident

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/service/GS2MGRetrieve.java

    r8828 r8829  
    3434 *
    3535 * @author <a href="mailto:[email protected]">Katherine Don</a>
    36  * @version $Revision$
     36 *
    3737 */
    3838
     
    9898    }
    9999    // Get the request content
    100     System.err.println("extlink = "+extlink);
    101100    Element query_doc_list = (Element) GSXML.getChildByTagName(request, GSXML.DOC_NODE_ELEM+GSXML.LIST_MODIFIER);
    102101    if (query_doc_list == null) {
     
    116115    this.mg_src.setIndex(indexpath);
    117116   
    118     System.err.println("getting the docs");
    119117    // Get the documents
    120118    String[] doc_ids = GSXML.getAttributeValuesFromList(query_doc_list,
     
    127125        doc_list.appendChild(doc);
    128126       
    129         System.err.println("doc id= "+doc_id);
    130127        if (extlink) {
    131128        if (OID.needsTranslating(doc_id)) {
     
    149146        }
    150147       
    151         System.err.println("remaining doc id = "+doc_id);
    152148        long doc_num = this.gdbm_src.OID2Docnum(doc_id);
    153149        if (doc_num == -1) {
     
    158154       
    159155        if (doc_content!=null) {
    160         System.err.println("got the content");
    161156        // remove any ctrl-c or ctrl-b (I hope these are the right codes)
    162         //System.err.println("doc content "+doc_content);
    163157        doc_content = doc_content.replaceAll("\u0002|\u0003", "");
    164         System.err.println("replaced ctrl b");
    165158        // replace _httpimg_ with the correct address
    166159        doc_content = resolveTextMacros(doc_content, doc_id, lang);
    167         System.err.println("resolved text macros");
    168160        GSXML.addDocText(this.doc, doc, doc_content);
    169         System.err.println("added text");
    170161        } else {
    171162        System.err.println("the doc content was null, not getting that section\n");
Note: See TracChangeset for help on using the changeset viewer.