Git Product home page Git Product logo

Comments (25)

uahengojr avatar uahengojr commented on May 21, 2024

I very much agree

from jquery-rss.

Zundrium avatar Zundrium commented on May 21, 2024

I have implemented this feature in the library, didn't do much testing. You can get it for now at http://pastebin.com/yhzw86SC

It works like jhfrench says, just use ["url1", "url2", "url3"] instead of the string.

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Thanks!

Am 22.11.2013 um 14:37 schrieb Zundrium [email protected]:

I have implemented this feature in the library, didn't do much testing but you can download it for now at http://pastebin.com/yhzw86SC


Reply to this email directly or view it on GitHub.

from jquery-rss.

Zundrium avatar Zundrium commented on May 21, 2024

Can I become a contributor for this project? Might feel like adding more stuff in the future :)

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Sounds good to me. Maybe we can start with a first pull-request, though :) After that I will love to give you the respective permissions.

from jquery-rss.

jayanta119 avatar jayanta119 commented on May 21, 2024

It would be very useful if jQuery-RSS supported pagination very usefull ,,,

from jquery-rss.

jayanta119 avatar jayanta119 commented on May 21, 2024

Zundrium

its not working multiple RSS sources ....

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

@jayanta119 it seems to work for me. See http://jsfiddle.net/jhfrench/ffmypq9r/2/

from jquery-rss.

jayanta119 avatar jayanta119 commented on May 21, 2024

thanx for sending me a exampl; it working ;

@jhfrench

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

@jhfrench If you'd send me a PR I could potentially add this functionality to the lib.

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

@sdepold : I will--but I can't take credit for it. It's @Zundrium's code, even if I lint it and submit it for him.

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Ah i see :) anyways a pull request would be welcome

from jquery-rss.

Zundrium avatar Zundrium commented on May 21, 2024

@jhfrench : Go ahead mate! It's all yours 👍

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

I have incorporated Zundrium's enhancements to support multiple RSS sources, but cannot test due to "moment" dependency introduced by Ross Dallaire Jan 5, 2015; see JS console error at http://jsfiddle.net/jhfrench/ffmypq9r/3/

Included moment library to get past that dependency, now getting "Uncaught TypeError: Cannot read property 'onData' of undefined". See http://jsfiddle.net/jhfrench/ffmypq9r/4/

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

Got past that error. I'm sure you're happy I'm clogging up your issue feed with my blow-by-blow.

Meanwhile, seems to be working: http://jsfiddle.net/jhfrench/ffmypq9r/5/

My latest code is available at https://github.com/jhfrench/jquery-rss

For what other use cases should I test it?

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

@sdepold do you have a standard set of use-cases I can use to regression test?

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

@sdepold do you have a standard set of use-cases I can use to regression test?

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Not really. There are tests in the project that should pass. Other than that I don't have any specific use cases in mind

from jquery-rss.

jhfrench avatar jhfrench commented on May 21, 2024

Ok...so the next step is for me to issue a PR?

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Yessir
Jeromy French [email protected] schrieb am Mo., 1. Juni 2015 um
15:47:

Ok...so the next step is for me to issue a PR?


Reply to this email directly or view it on GitHub
#23 (comment).

from jquery-rss.

nostalgiaz avatar nostalgiaz commented on May 21, 2024

Hi guys!
I need this feature too... when do you think you'll able to release it (via bower)?

Thanks again!

from jquery-rss.

uudruid74 avatar uudruid74 commented on May 21, 2024

The ability to demand-load additional items becomes much more important once you load multiple feeds at once. If you want a very easy way to merge your feeds, just use http://www.rssmix.com/

This will create a custom mash-up of the feeds you select and automatically does its own caching and such. Very cool and easy. Limit 1 request per second!

However, like most RSS feeds, I would suggest that a demand-load system only fetch the RSS.XML once and then adjust the output HTML accordingly (see my comment on the offsetStart/End bug). If you constantly fetch the xml file then you may be cut off from sources that don't want you slamming the server every time someone slides a scroll wheel on your site! Which is likely what would happen if you used offsetStart/End to demand-load pieces of a feed and then concatenated them with jQuery after the load.

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

This just landed in vanilla-rss: https://github.com/sdepold/vanilla-rss#multiple-feed-urls

Will update jquery-rss later today.

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

Just released v4.2.0 of jquery-rss and 1.3.0 of vanilla-rss that support multiple feeds.

        $("#rss-feeds").rss([
            "https://www.contentful.com/blog/feed.xml",
            "http://www.ebaytechblog.com/feed/"
          ])

from jquery-rss.

sdepold avatar sdepold commented on May 21, 2024

v4.3.0 is now also supporting ordering of the feeds in case you need this:

$("#rss-feeds").rss([
            "https://www.contentful.com/blog/feed.xml",
            "http://www.ebaytechblog.com/feed/"
          ], {
order: 'publishedDate'
})

from jquery-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.