Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: idiomaticrefactoring/html5lib-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f7cab6f
Choose a base ref
...
head repository: html5lib/html5lib-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd4f032
Choose a head ref
  • 20 commits
  • 40 files changed
  • 13 contributors

Commits on Mar 1, 2023

  1. Configuration menu
    Copy the full SHA
    3ecbda6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10b7eb8 View commit details
    Browse the repository at this point in the history
  3. Remove Travis CI in favour of GitHub Actions (html5lib#545)

    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    hugovk and ambv authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    d1dfa20 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6815a54 View commit details
    Browse the repository at this point in the history
  5. remove redundant list comprehension (html5lib#547)

    any() accepts a generator. This will cause it to run faster because the any() returns as soon as it finds a True value.
    adhintz authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    5decf47 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1cd57cb View commit details
    Browse the repository at this point in the history
  7. README: Replace broken mailing list link with archive (html5lib#543)

    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    hugovk and ambv authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    2f64f3b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4f9f5bf View commit details
    Browse the repository at this point in the history
  9. Use for:else: where it makes sense (html5lib#539)

    Co-authored-by: zzj <29055749+zjzh@users.noreply.github.com>
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    3 people authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    1b39377 View commit details
    Browse the repository at this point in the history
  10. Restore ability to provide a tree builder name as string (html5lib#559)

    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    theRealProHacker and ambv authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    c64a111 View commit details
    Browse the repository at this point in the history
  11. Sanitizer: Allow <summary> (html5lib#423)

    Add tests that the sanitizer allows <details open> and <summary> and
    update the implementation to allow <summary>.
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    twm and ambv authored Mar 1, 2023
    Configuration menu
    Copy the full SHA
    ff7fa37 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5c30ac3 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Support the <wbr> element (html5lib#395)

    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    twm and ambv authored Mar 2, 2023
    Configuration menu
    Copy the full SHA
    6ca0244 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82047b0 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

  1. Add support for <ol reversed>, related attributes (html5lib#396)

    * Mark <ol reversed> as a boolean attribute so it serializes properly in
      HTML.
    * Allow <ol reversed> in the sanitizer. Closes html5lib#321.
    * Allow <ol start> in the sanitizer.
    * <ol type> was already allowed, but probably accidentally (type is an
      attribute allowed for other tags). I added a test to prevent it from
      regressing in case we add per-element attribute sanitization in the
      future.
    
    https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-reversed
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    twm and ambv authored Mar 3, 2023
    Configuration menu
    Copy the full SHA
    01b7dea View commit details
    Browse the repository at this point in the history
  2. Test more on GitHub Actions (html5lib#564)

    The only environments left on AppVeyor are now 2.7, 3.5, and 3.6. The remaining Python versions are now also tested on Windows using GitHub Actions.
    
    Additionally, a new group of dependencies called "oldest" is now tested as well to ensure compatibility with the oldest pinned versions in requirements.txt and setup.py.
    
    AppVeyor is used for 3.5 and 3.6 because those versions aren't available on GitHub Actions at all. Python 2.7 crashes on Windows with a pip cache failure so it only runs on GHA with the "oldest" dependencies on Ubuntu.
    
    The other Python version running "oldest" dependencies is 3.7, also only running on Ubuntu.
    ambv authored Mar 3, 2023
    Configuration menu
    Copy the full SHA
    f0bb2a6 View commit details
    Browse the repository at this point in the history
  3. Allow min-height, max-height, min-width, max-width in the sanitizer (h…

    …tml5lib#566)
    
    Co-authored-by: Vladimir Kuvandjiev <vladimir.kuvandjiev@endava.com>
    Co-authored-by: Vladimir Kuvandjiev <kuvandjiev@gmail.com>
    3 people authored Mar 3, 2023
    Configuration menu
    Copy the full SHA
    3e500bb View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    4a87368 View commit details
    Browse the repository at this point in the history
  2. tests: drop dependency on external mock module for newer python (html…

    …5lib#574)
    
    Fixes html5lib#541
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    eli-schwartz and ambv authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    82c2599 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Constant phases (html5lib#567)

    * Get rid of getPhases
    
    This added a fair bit of complexity, and notable made the Phase classes
    dynamically generated.
    
    However, by doing this, we no longer include "process the
    token using the rules for" phases in the debug log.
    
    Co-authored-by: Sam Sneddon <me@gsnedders.com>
    ambv and gsnedders authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    fd4f032 View commit details
    Browse the repository at this point in the history
Loading