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 Partial Content Delivery (+tests) #98

Closed
wants to merge 4 commits into from
Closed

Add Partial Content Delivery (+tests) #98

wants to merge 4 commits into from

Commits on Feb 7, 2017

  1. Add Partial Content Delivery

    This commits adds Partial Content Delivery, as asked in issue #93. This
    enables the "Accept-Ranges" header on all files delivered via
    static. It is possible to ask only a certain portion of bytes like
    explicitely described in RFC 7233. Of the 3 ways to ask for a range of
    bytes (byte x to byte y, everything from byte x to end of file, last y
    bytes from end of file), every one of them is implemented, but if a
    request is to ask multi ranges in a same request, this implementation
    will only account the first range.
    Cobrand committed Feb 7, 2017
    Configuration menu
    Copy the full SHA
    8a0ef4f View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2017

  1. Configuration menu
    Copy the full SHA
    436b42d View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2017

  1. Adds unit tests for partial content delivery edge cases

    Also fixed a edge case bug where a FromTo range ending out of bounds was not treated as a From range (See https://tools.ietf.org/html/rfc7233, section 2.1).
    agersant committed Jul 9, 2017
    Configuration menu
    Copy the full SHA
    26409dc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89be5c4 View commit details
    Browse the repository at this point in the history