Giter Club home page Giter Club logo

Comments (8)

andy128k avatar andy128k commented on June 16, 2024 1

So, I reviewed the code and it seems that I overestimated the complexity. It looks a bit easier now #159.

from rss.

andy128k avatar andy128k commented on June 16, 2024

Extensions are recognized by a namespace URI. iTunes URI in your example is http://www.itunes.com/DTDs/Podcast-1.0.dtd while the crate looks for http://www.itunes.com/dtds/podcast-1.0.dtd.

from rss.

SamTV12345 avatar SamTV12345 commented on June 16, 2024

Wouldn't a toLowercase comparison solve the issue?

from rss.

SamTV12345 avatar SamTV12345 commented on June 16, 2024

If you'd like to I can add a pull request for this. @andy128k

from rss.

andy128k avatar andy128k commented on June 16, 2024

Tough question. Formally URIs are case sensitive and such a change may be risky.

from rss.

SamTV12345 avatar SamTV12345 commented on June 16, 2024

Good point. The question is will someone else create a schema that is equal to the iTunes url but change a character in the url to lower/uppercase. Probably not. So I think the chance of breaking an existing project using your library is very minimal.

from rss.

andy128k avatar andy128k commented on June 16, 2024

https://help.apple.com/itc/podcasts_connect/#/itcb54353390

Without this declaration, Podcasts Connect ignores all tags specific to Apple Podcasts. The namespace definition is case sensitive, and must be entered as shown.


It's not about someone creating a schema (that's unlikely and that should be someone with access to www.itunes.com domain).

But someone may create a feed with multiple namespaces:

<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:ITUNES="http://www.itunes.com/DTDs/Podcast-1.0.dtd" version="2.0">
   <channel>
       <itunes:author>Author 1</itunes:author>
       <ITUNES:author>Author 2</ITUNES:author>
   </channel>
</rss>

Now we have an issue with merging formally two extensions into a single one. OTOH someone may create an alias like <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:ITUNES="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> and we still have this problem.

I'd say, this is much bigger issue than just add toLowercase.

from rss.

SamTV12345 avatar SamTV12345 commented on June 16, 2024

Thank you for the changes 😃.

from rss.

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.