Big refactoring is pending

By farcaller June 15th, 2009

FOW is officially suspended until I do some refactoring to code and make the repo more structured than it is now.

Recent Posts

  • Primary repo switched to git

    By farcaller December 22nd, 2008

    Primary FOW repo has switched to git. You can see it via web here and clone from this url:
    git://git.hackndev.com/farcaller/fow.git
    Mercurial repo is kept in sync.

  • SQLitePersistentObjects are now working!

    By farcaller December 18th, 2008

    I’ve did a port of SQLitePersistentObjects to Cocotron, and now it’s part of libFOW (enabled via BUILD_SQLITEPO option).
    Cocotron’s Obj-C runtime doesn’t support properties introspection, so for each descendant of SQLitePersistentObject you must define following selector:

    + (NSArray *)getPropertiesList;

    It must return an array of all properties in form of NSArrays with two items: property name and encoded [...]

  • ab-comparing FOW and Django

    By farcaller December 2nd, 2008

    I’ve fixed all the stuff that prevented CTemplate from running on linux and did a quick test of FOW and Django using ab (apache benchmark).
    Benchmark consisted of resolving a typical URL regexp, loading handler, loading template and rendering static context onto it. Both Django and FOW were running with 2 threads attached to lighttpd via [...]