Changeset 20292


Ignore:
Timestamp:
2009-08-17T10:23:59+12:00 (15 years ago)
Author:
kjdon
Message:

removed some System.err debug messages, which don't look like they are needed.

Location:
greenstone3/trunk/src/java/org/greenstone/gsdl3/action
Files:
4 edited

Legend:

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

    r19984 r20292  
    3737    this.converter = new XMLConverter();
    3838    this.doc = this.converter.newDOM();
    39     System.err.println("action doc: " + doc );
    4039    }
    4140    /** the config variables must be set before configure is called */
  • greenstone3/trunk/src/java/org/greenstone/gsdl3/action/DocumentAction.java

    r19984 r20292  
    826826        if (last_wrote < highlight_start) {
    827827        String preceding_text = new String(content_characters, last_wrote, (highlight_start - last_wrote));
    828         // System.err.print(preceding_text);
    829828        content_element.appendChild(this.doc.createTextNode(preceding_text));
    830829        }
     
    833832        if (highlight_end > last_wrote) {
    834833        String highlight_text = new String(content_characters, highlight_start, (highlight_end - highlight_start));
    835         // System.err.print("|" + highlight_text + "|");
    836834        Element annotation_element = GSXML.createTextElement(this.doc, "annotation", highlight_text);
    837835        annotation_element.setAttribute("type", "query_term");
     
    844842    if (last_wrote < content_characters.length) {
    845843        String remaining_text = new String(content_characters, last_wrote, (content_characters.length - last_wrote));
    846         // System.err.print(remaining_text);
    847844        content_element.appendChild(this.doc.createTextNode(remaining_text));
    848845    }
  • greenstone3/trunk/src/java/org/greenstone/gsdl3/action/GeneralAction.java

    r19984 r20292  
    3838        }
    3939        addSiteMetadata(result, lang, uid);
    40         System.err.println("a");
    4140        return result;
    4241    }
     
    9493        // just send the reponse as is
    9594        addSiteMetadata(result_response, lang, uid);
    96         System.err.println("b");
    9795        return result_response;
    9896        }
     
    123121
    124122    addSiteMetadata(page_response, lang, uid);
    125     System.err.println("c");
    126123    return result;
    127124    }
  • greenstone3/trunk/src/java/org/greenstone/gsdl3/action/QueryAction.java

    r19984 r20292  
    8787    if (request_type.indexOf("r") == -1) {
    8888        // just a display request, no actual processing to do
    89         System.err.println("just a display request, no actual processing to do");
    9089        //append site metadata
    9190        addSiteMetadata( page_response, lang, uid);
Note: See TracChangeset for help on using the changeset viewer.