Package org.wikipediacleaner.api

Examples of org.wikipediacleaner.api.HttpServer.sendPost()


      properties.put("view", "bots");
      String url = useLabs ?
          "checkwiki/cgi-bin/checkwiki.cgi" :
          "~sk/cgi-bin/checkwiki/checkwiki.cgi";
      HttpServer server = useLabs ? labs : toolServer;
      server.sendPost(
          url, properties,
          new PagesResponseManager(true, algorithm, wiki, errors));
    } else {
      properties.put("action", "list");
      String url = useLabs ?
View Full Code Here


      properties.put("action", "list");
      String url = useLabs ?
          "checkwiki/cgi-bin/checkwiki_bots.cgi" :
          "~sk/cgi-bin/checkwiki/checkwiki_bots.cgi";
      HttpServer server = useLabs ? labs : toolServer;
      server.sendPost(
          url, properties,
          new PagesResponseManager(false, algorithm, wiki, errors));
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.