Re: Recursion for nested comments

2011-08-24 Thread Thorsten Wilms
A somewhat related problem within all this: In the following code, the recursive call of comments-rendition-recur leads to the compile-time error "java.lang.Exception: Unable to resolve symbol: comments-rendition-recur in this context (views.clj:181)", unless I use declare. views.clj:181 is the

Recursion for nested comments

2011-08-21 Thread Thorsten Wilms
Hi! For a blogging software, I want to support nested comments. Rendered as nested s, to not have to define per level CSS classes. My data-gathering function calls itself to deliver a nested structure. On IRC I've been told that, since it happens via map, there is not necessarily a problem w