View previous topic :: View next topic |
If there was a gentoo discussion forum RSS feed, would you use it? |
Yes |
|
76% |
[ 124 ] |
No |
|
10% |
[ 17 ] |
Maybe/Not Sure |
|
12% |
[ 21 ] |
|
Total Votes : 162 |
|
Author |
Message |
meranto Tux's lil' helper
Joined: 23 Sep 2005 Posts: 129 Location: Ridderkerk, The Netherlands
|
Posted: Wed Nov 16, 2005 8:42 am Post subject: |
|
|
Well it's been a while since the last post. Is there any progress yet?
Are there still plans to create a rss-feed for the forum (like for example linuxquestions.com does) |
|
Back to top |
|
|
ematulac n00b
Joined: 31 Oct 2003 Posts: 18 Location: Palmdale, CA
|
Posted: Fri Dec 02, 2005 3:53 pm Post subject: *bump* |
|
|
*bump*
It would be nice to at least get the news that hits the Gentoo home page as an RSS feed. _________________ Ed M. |
|
Back to top |
|
|
tomk Bodhisattva
Joined: 23 Sep 2003 Posts: 7221 Location: Sat in front of my computer
|
|
Back to top |
|
|
danmister n00b
Joined: 25 Dec 2005 Posts: 13
|
Posted: Sun Dec 25, 2005 8:28 pm Post subject: |
|
|
RSS feed of topics? RSS feed of sub-topics?
Any kind of RSS feed would be good. |
|
Back to top |
|
|
Wi1d Apprentice
Joined: 15 Mar 2004 Posts: 282 Location: USA, Iowa
|
Posted: Sat Jan 21, 2006 8:38 am Post subject: |
|
|
* bump *
I've got to throw in my vote. I don't time have time to participate in fgo as much as I want due to lack of time. RSS feeds would fix that. |
|
Back to top |
|
|
tomk Bodhisattva
Joined: 23 Sep 2003 Posts: 7221 Location: Sat in front of my computer
|
|
Back to top |
|
|
zsoltika l33t
Joined: 13 Nov 2003 Posts: 634 Location: Budapest, Hungary
|
|
Back to top |
|
|
smithjd15 Tux's lil' helper
Joined: 12 Mar 2003 Posts: 130 Location: Edmonton, AB, CA
|
Posted: Sun Mar 05, 2006 6:35 am Post subject: |
|
|
Quote: | It's on my TODO list. |
Great to hear! In the meantime the feed from feed43 will suffice for my fix. |
|
Back to top |
|
|
alienjon Veteran
Joined: 09 Feb 2005 Posts: 1726
|
Posted: Fri May 12, 2006 8:41 pm Post subject: Gentoo discussion forum RSS? |
|
|
I have an RSS feed running on the top of my desktop with news, portage updates and dealnews.com and I just thought how cool it would be to have an RSS feed of unanswered and new posts from the forums. I was just a bit curious to see if anyone else thinks that would be helpful? |
|
Back to top |
|
|
mark_alec Bodhisattva
Joined: 11 Sep 2004 Posts: 6066 Location: Melbourne, Australia
|
Posted: Sat May 13, 2006 3:29 am Post subject: |
|
|
Merged above thread. |
|
Back to top |
|
|
minskpower Tux's lil' helper
Joined: 16 Jun 2005 Posts: 94 Location: /dev/null
|
Posted: Tue May 23, 2006 6:33 pm Post subject: |
|
|
Yes, another vote for a RSS feed. I'd even be willing to spend some time hacking at phpBB internals.
Oh and please release the gentoo sources |
|
Back to top |
|
|
HeXiLeD Veteran
Joined: 20 Aug 2005 Posts: 1159 Location: Online
|
Posted: Tue Jun 06, 2006 6:45 pm Post subject: |
|
|
rss .... please... _________________ Do you hear the sound of inevitability?
With age, comes great grumpiness and that, was 20 years ago...
CertFP: becbbd161d5a5c31de3c45171b77bf710911db29 / d985d21f89fe2977b593c4d381a1a86802e62990d9328d893db76d59f9935244 |
|
Back to top |
|
|
asommer n00b
Joined: 15 Nov 2005 Posts: 36
|
Posted: Thu Jun 22, 2006 7:04 pm Post subject: |
|
|
Here's a quick Ruby script I came up with that will scrape the Posts from the last 24 hours search page and email it to somewhere. I've been using this because there's no RSS feed. I'm a programming noob so if anyone can improve/offer suggestions on the script please let me know.
Code: | #!/usr/bin/ruby
require 'net/http'
latest_posts = Net::HTTP.get URI.parse("http://forums.gentoo.org/search.php?search_id=last")
lines = latest_posts.split("\n")
links = Array.new
lines.each do |line|
line =~ /<a/
$' =~ /<\/a>/
if $` != nil
links.push($`)
end
end
good_links = links.select { |link| link =~ /highlight-.html/ }
pre_url = "http://forums.gentoo.org/"
link_string = Array.new
good_links.each do |link|
link =~ /href=\"/
$' =~ /\?sid=/
url = pre_url + $`
link =~ /">/
link_string.push("#{url} #{$'}\n\n")
end
`echo "#{link_string.to_s}" | mutt -s "Gentoo Forum Activity" you@your_email.whatever`
|
_________________ Party On! |
|
Back to top |
|
|
damoncf Guru
Joined: 05 Oct 2004 Posts: 388 Location: US OH
|
Posted: Sun Aug 06, 2006 3:47 am Post subject: Rss Feeds for forums and topics |
|
|
I was poking around some other forums in the past day or two and I noticed that some of them allow for a direct RSS feed of a given topic. I don't know about the rest of you but anything I want to keep up on I take a RSS feed to Firefox or another program. It lets me see when someone has responded to a post or simply allows me to keep up on the latest news feeds.
Is it possible to add this feature to the Gentoo Forums?
Damon |
|
Back to top |
|
|
mikegpitt Advocate
Joined: 22 May 2004 Posts: 3224
|
Posted: Sun Aug 06, 2006 5:09 am Post subject: |
|
|
Well if you mean a RSS feed of the entire forums it would be pretty crazy, but I'm going to assume you mean RSS feeds on a particular thread. I have no idea if the phpbb code allows for this, but it could be a decent addon for some users.
Personally I just do a username search on my SN to see what is happening on the threads I have responded to. |
|
Back to top |
|
|
Earthwings Bodhisattva
Joined: 14 Apr 2003 Posts: 7753 Location: Germany
|
Posted: Sun Aug 06, 2006 5:53 am Post subject: |
|
|
Merged last two posts.
mikegpitt, I guess you mean egosearch? _________________ KDE |
|
Back to top |
|
|
mikegpitt Advocate
Joined: 22 May 2004 Posts: 3224
|
Posted: Sun Aug 06, 2006 6:03 am Post subject: |
|
|
Earthwings wrote: | mikegpitt, I guess you mean egosearch? | Yep, that's exactly what I meant. I never realised there was an egosearch url. I thought that was just what people called it. |
|
Back to top |
|
|
Earthwings Bodhisattva
Joined: 14 Apr 2003 Posts: 7753 Location: Germany
|
Posted: Sun Aug 06, 2006 10:44 am Post subject: |
|
|
mikegpitt wrote: | Earthwings wrote: | mikegpitt, I guess you mean egosearch? | Yep, that's exactly what I meant. I never realised there was an egosearch url. I thought that was just what people called it. |
Yeah, phpbb has some features that are easy to overlook. For example, it took me quite some time to figure out that the tiny little icon left to the "Posted: $date" field above each post can be used to link to the post directly, or that the "=> View newest post" and "=> View latest post" links on forums index pages have different semantics _________________ KDE |
|
Back to top |
|
|
slick Bodhisattva
Joined: 20 Apr 2003 Posts: 3495
|
|
Back to top |
|
|
atrus123 Guru
Joined: 06 Jul 2005 Posts: 339 Location: Annapolis, MD
|
Posted: Thu Oct 12, 2006 12:34 am Post subject: Rss... |
|
|
Is there any talk of adding an RSS feed to the Gentoo Forums? I would be interested in this feature at some point. _________________ "I cannot support a movement that exploded spending and borrowing and blames its successor for the debt."
-Andrew Sullivan |
|
Back to top |
|
|
anello Guru
Joined: 17 Jul 2005 Posts: 557 Location: EU -> DE -> Stuttgart
|
Posted: Thu Oct 12, 2006 5:20 am Post subject: |
|
|
The Admins don't want to use mods, so unless this feature gets added to phpBB2 it won't be added. _________________ Antonino Catinello | http://catinello.eu |
|
Back to top |
|
|
mark_alec Bodhisattva
Joined: 11 Sep 2004 Posts: 6066 Location: Melbourne, Australia
|
Posted: Thu Oct 12, 2006 6:44 am Post subject: |
|
|
Merged above two posts. _________________ www.gentoo.org.au || #gentoo-au |
|
Back to top |
|
|
atrus123 Guru
Joined: 06 Jul 2005 Posts: 339 Location: Annapolis, MD
|
Posted: Thu Oct 12, 2006 2:14 pm Post subject: |
|
|
mark_alec wrote: | Merged above two posts. |
Oops, sorry. I checked for dupes briefly but not completely enough, I guess. _________________ "I cannot support a movement that exploded spending and borrowing and blames its successor for the debt."
-Andrew Sullivan |
|
Back to top |
|
|
definex n00b
Joined: 24 Dec 2006 Posts: 8
|
Posted: Fri Feb 09, 2007 5:47 am Post subject: |
|
|
Is there any update about the rss feeds for the forums? |
|
Back to top |
|
|
nom de plume Tux's lil' helper
Joined: 01 Jun 2006 Posts: 104
|
Posted: Fri Feb 09, 2007 9:57 am Post subject: |
|
|
Would adding RSS strain the servers a non-trivial amount?
I don't care if you add it or not but back when I was young we had to check for new forum posts manually. Barefoot. In the snow. Up a Hill. Both ways. |
|
Back to top |
|
|
|