Package net.sourceforge.jwbf.core.actions

Examples of net.sourceforge.jwbf.core.actions.Get


      uS += "&letype=" + logtemp.substring(0, logtemp.length() - 1);
    }

    uS += "&lelimit=" + limit + "&format=xml";

    return new Get(uS);

  }
View Full Code Here


      uS += "&letype=" + logtemp.substring(0, logtemp.length() - 1);
    }

    uS += "&lelimit=" + limit + "&format=xml";

    return new Get(uS);

  }
View Full Code Here

  }

  @Override
  protected HttpAction prepareCollection() {
    if (getNextPageInfo().length() > 0) {
      return new Get(requestBuilder.buildContinueRequest(getNextPageInfo()));
    } else {
      return new Get(requestBuilder.buildInitialRequest(articleName, redirectFilter, namespaces));
    }
  }
View Full Code Here

  public ImageInfo(MediaWikiBot bot, String name) throws VersionException {
    super(bot.getVersion());
    this.bot = bot;

    if (bot.getVersion().greaterEqThen(Version.MW1_15)) {
      msg = new Get("/api.php?action=query&titles=File:"
          + MediaWiki.encode(name) + "&prop=imageinfo"
          + "&iiprop=url&format=xml");
    } else {
      msg = new Get("/api.php?action=query&titles=Image:"
          + MediaWiki.encode(name) + "&prop=imageinfo"
          + "&iiprop=url&format=xml");
    }

  }
View Full Code Here

   * generates the next MediaWiki-request (GetMethod) and adds it to msgs.
   * @return a
   */
  protected final Get generateFirstRequest() {

    return new Get(r.first(categoryName));
  }
View Full Code Here

   */
  protected final Get generateContinueRequest(String cmcontinue) {

    try {

      return new Get(r.continiue(cmcontinue));

    } catch (NullPointerException e) {
      e.printStackTrace();
    }
    return null;
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.core.actions.Get

Copyright © 2018 www.massapicom. 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.