Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a builder API for configuring the BasicURLNormalizer #324

Merged
merged 3 commits into from
Oct 5, 2021

Commits on Oct 4, 2021

  1. Add a builder API for configuring the BasicURLNormalizer

    Usage example:
    ```
    normalizer = BasicURLNormalizer.newBuilder()
      .idnNormalization(IdnNormalization.PUNYCODE)
      .queryParamsToRemove(
        asList("sid", "phpsessid", "sessionid", "jsessionid")
      )
      .build();
    ```
    
    Closes crawler-commons#321.
    aecio committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    12e2c38 View commit details
    Browse the repository at this point in the history
  2. Add a builder API for configuring the BasicURLNormalizer

    - allow to normalize host names to Unicode
    sebastian-nagel committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    10d3021 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2021

  1. Add a builder API for configuring the BasicURLNormalizer

    - allow to normalize host names to Unicode (add to changelog)
    sebastian-nagel committed Oct 5, 2021
    Configuration menu
    Copy the full SHA
    4b45097 View commit details
    Browse the repository at this point in the history