Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement PodPress in .NET (just like StackOverflow Blog)

I wonder if anyone has any idea on how to implement the nice and clean UI from PodPress (a Wordpress plugin) into .NET just like you find in the StackOverflow Blog when PodCasts are available.

alt text

And have that nice stats and iTunes integration as well :)

Added: I realized now (stupid of me not checking first - using the meta key or even go to the admin page .../wp-admin) that SO Blog is on Wordpress, but still, my wishes are the same, How about a .NET version? I guess I will contact the author directly and propose him/her a .NET version of the WP plug in.

like image 512
balexandre Avatar asked Nov 14 '22 16:11

balexandre


1 Answers

I wonder if anyone has any idea on how to implement the nice and clean UI from PodPress (a Wordpress plugin) into .NET just like you find in the StackOverflow Blog when PodCasts are available.
I'm searching for the entire bottle of magic, iTunes integration, Stats, etc... Shouldn't Jeff give an anwer, he had to do something about this?

Jeff didn't convert PodPress into .NET.

blog.Stackoverflow.com is a Wordpress blog.

He simply loaded the PodPress plugin for Wordpress, clicked activate in his plugins tab and navigated to his newly created PodPress tab. There he configured his iTunes integration and his statistics information.

If you view the source of the blog you'll see:

<meta name="generator" content="WordPress 2.7" />

Edit: Response to your comment.

Yes, I realized that after, but still... I WANT a .NET version :) (not to much to ask, is it?) eheh ;) – balexandre

The PodPress-WordPress plugin is tightly coupled to the WordPress Plugin Interface. PodPress is a mixture of flash, javascript and php and all of these are calling upon WordPress functions.

The PHP and Javascript are easily editable but the work required to hack PodPress to work without WordPress would probably be a little more difficult than simply re-writing PodPress from scratch.

Also, I've read on many forums about people getting slow responses from the sole developer of the project and how releases have been taking a long while to come out. So I don't think you'll be able to easily get him to rewrite his project into a different platform.

Your options are:

  • Use WordPress
  • Rewrite PodPress from scratch without any WordPress dependencies.
  • Find an alternative
like image 76
mmcdole Avatar answered Dec 10 '22 19:12

mmcdole