-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An extension sprocket to read blog rss feeds, and display new entries in chat rooms. #72
Conversation
…public jibbr master
lol @ my git newbiness here, most of the commits are fixing things with the repository push process, and not code commits. |
@@ -16,6 +16,7 @@ | |||
<UseIISExpress>true</UseIISExpress> | |||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\Jabbot\</SolutionDir> | |||
<RestorePackages>true</RestorePackages> | |||
<JSLintSkip>\Resources\coffee-script.js</JSLintSkip> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where'd this come from?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I needed this for a JSLint extension in VS, it doesn't have negative repercussions if you don't have the extension in VS.
@NickJosevski i just jump straight to the diff anyway ;) |
An extension sprocket to read blog rss feeds, and display new entries in chat rooms.
From issue #9 - #9
Every 90 minutes (configurable via TimeSpan Interval) in BlogFeed.cs, the sprocket will take the list of feeds specified in the host app.config file key="Blogs.FeedList" which are pairs of @twitter handles and http://rss.feed.urls comma delimited.
Based on the Blogs.HoursOldThreshold app config setting currently set at 48 hours the optimal value for this is double the room notification time (90 minutes), that way a new blog post message should only ever be delivered to the channel no more than twice. This is open for discussion how often it should post duplicate posts, if at all.