Skip to main content

Posts

Showing posts from June, 2006

RSS Feeds from Domino

I'm a big fan of RSS and I think that it's something that people running extranets and other sites should try to incorporate as much as possible. Recently I decided to try and add RSS to a Domino Database manually. The steps are below. I've simplified them to make this more suitable for "beginners", and you can add other RSS Fields as you see fit. PART 1: The VIEW Create a view for your database with a selection criteria similar to the following; SevenDaysAgo := @Adjust(@Now ;0 ; 0 ; -7 ; 0 ; 0 ; 0) ; SELECT ((Form = "Document")& @Modified <= SevenDaysAgo)) The Form would obviously point to the type of form that you use in your database. Column 1: The first Column in your database would probably be the date (@Modified) You should make it sorted in Descending order to put the recent items to the top and you should make it hidden. Column 2: Here is what I have in column 2 - I'll explain it below... NOTE: I can't use <> HTML Codes Here,