tilboerner / laserchicken

RSS reader web application built on Rails
MIT License
20 stars 3 forks source link

Batch adding RSS feeds #9

Open devsnd opened 11 years ago

devsnd commented 11 years ago

It would be nice to be able to add multiple feeds at once, since I'd like to take all the feeds from my previous feed reader to laserchicken.

I think it would suffice to have a <textarea> where I can paste all the URLs separated by newlines.

tilboerner commented 11 years ago

This could be done by having the backend split the field value around whitespace. There's no unencoded whitespace allowed in a URL, is there?

In that case, #10 would get fixed for free.

devsnd commented 11 years ago

You are correct.

Whitespaces are encoded as +.

URL-Encoding is a horrible mess.