Code Monkey home page Code Monkey logo

Comments (9)

SimonSapin avatar SimonSapin commented on July 24, 2024

As far as I understand, https://url.spec.whatwg.org/#urls makes no difference between an empty path and no path. Maybe this is a spec issue?

CC @annevk

from rust-url.

pyfisch avatar pyfisch commented on July 24, 2024

That is correct. In most cases it is not necessarry to make a difference between an empty path and no path. Since the url spec is browser-centric it probably decided not to support no paths.

from rust-url.

annevk avatar annevk commented on July 24, 2024

I searched for no-path in the referenced document and there were no hits.

from rust-url.

untitaker avatar untitaker commented on July 24, 2024

The empty vector represents the path /.

It doesn't seem like that.

extern crate url;

use url::Url;

fn main() {
    let a = Url::parse("http://example.com:80").unwrap();
    let b = Url::parse("http://example.com:80/").unwrap();
    println!("{:?}", a.path());  // Some([""])
    println!("{:?}", b.path());  // Some([""])
}

Perhaps one could use the empty vector for "no path" then?

from rust-url.

pyfisch avatar pyfisch commented on July 24, 2024

Yes one could do this :) This would not break (much) existing code.

from rust-url.

SimonSapin avatar SimonSapin commented on July 24, 2024

@pyfisch I don’t see in the HTTP RFC what defines that OPTIONS http://www.example.org:8001 and OPTIONS http://www.example.org:8001/ are different. What am I missing?

from rust-url.

pyfisch avatar pyfisch commented on July 24, 2024

@SimonSapin The difference between the two is that OPTIONS http://www.example.org:8001 asks for all available options of a server in general. The server may reply with Allow: GET, HEAD, POST, PUT. But if one requests OPTIONS http://www.example.org:8001/ it may send Allow: GET, HEAD since the user can't change the index page.

The difference is also explained in Β§ 5.3.4 of RFC7230.

from rust-url.

pyfisch avatar pyfisch commented on July 24, 2024

I found that this can be easily solved without support by rust-url .

from rust-url.

annevk avatar annevk commented on July 24, 2024

I'm curious, what did you do instead?

from rust-url.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.