Here’s a short update on what I’ve been working on. Time is a bit limited but I like to hack around in this project and that’s what it’s all about!

  • Implemented Category and Tag pages
  • Initial implementation for RSS feed
  • Showing comments in the post page
  • Implemented Add, Edit, Delete, Restore and Purge actions for Posts and Pages
  • Started working on a blog settings page

I’m thinking of perhaps setting up an issue tracker to maintain a log of what needs to be done and what has already been done. I don’t think I can do that in CodePlex, because that would have to be a tracker just for my branch and I don’t think that’s supported. Or maybe set up some rough goals like milestones of the project. I’ll see how it goes…

One comment on the Restore and Purge actions: in BlogEngine.NET, when you delete a post or a page it doesn’t get completely deleted. It is marked as deleted, but the post file is still there (if you’re using the default file based storage). To really delete it, you need to empty the recycle bin in the admin UI. I have taken a different approach in the pages that show lists of posts (homepage, category page, tag page, etc):

  • you see all the posts (or pages) you're allowed to based on your permissions
  • that includes deleted posts too!
  • unpublished and deleted items are presented with a small text label that indicates their status

I find this view a bit simpler, at least for now… of course the recycle bin concept is probably better (you delete a post for a reason, you don’t want to see it in your face all the time) but that will come later.

Things to come up next:

  • pagination for homepage and similar pages
  • submitting comments
  • uploading images to a post (I want to use ImageResizing.Net here)
  • implement contact form
  • implement blog settings page (only settings that are used).
  • support markdown formatting in posts and pages

and more, much more!