jeff @ dallien.net
March 16, 2009 01:47
I’m not going to write much to add to the chain tonight, other than to say that prologblog.com is now up and running. The server code is on GitHub. As is the code that generates the first post. The site’s not pretty, and the list of things to do is a mile long, but the basic goal has been achieved, the site is running on a Prolog application.
I’ll go through the code and explain each part in subsequent posts, but here is a small introduction. This piece of code gathers all the post/1 predicates and flattens them into a single list. Using this method, new posts can been added to the system just by loading another source file with one or more post predicates into the interpreter. I’ll be using this method to add posts until I get some form of database access working.
all_posts(List) :-
setof(Post, post(Post), TempList),
flatten(TempList, List).
To make this work properly the main server source file has to declare that the post/1 predicates can be found in multiple files, using the multifile/1 predicate:
:- multifile post/1.
nicholas a. evans on March 16, 2009 9:55AM
Jeff Dallien on March 16, 2009 2:18PM
chris mungall on July 23, 2009 12:34AM