Zopesters, I've started playing around width Confera and have realized that it's worthy of much more useful documentation than currently exists (which, as far as I have been able to find, is none at all). I'm still very new to Confera and don't yet have any insights of my own, but would really love to volunteer my time to maintain at least a FAQ. Would others find this helpful? Has anyone else started work on this? Could/should it be integrated into to ZDP project? Should I host it on one of my servers for now? Please advise! Assuming no one else has begun this, I dug through the various zope sites and lists and put together the very little bit of Confera info that I could find into a FAQ. And I added a few unanswered questions that I and others have been wondering about. If it sounds at all worthwhile, send along corrections, answers, additions, suggestions, more questions, etc.! Hope this can turn into something helpful! - Jay PS - BTW if anyone's interested, I and a few others here at a company called Digital Garage in Tokyo have built probably the first Zoped sites in Japan. One that we produce is SonicNet Japan (partnered with SonicNet in the US, EU, AU) and just about a week ago we launched a new site with a role-based, scheduled news and cybercast publishing system with integrated artist information, a user-contributed and dynamically ranked network of personal music fan pages (affiliate-esque), and more. (We hope to have some products contributed as soon as we have time!) http://www.sonicnet.co.jp/ (warning - it's all in Japanese!) -------------- Confera FAQ -------------- - What is Confera? Confera is a threaded discussion Product for <a href="http://www.zope.org/">Zope</a> that was created by <a href="http://www.digicool.com/">Digital Creations</a> and is licensed under the Zope Public License as Open Source. Confera is not currently supported by Digital Creations support staff without a support or partnership agreement. - Is Confera a supported product? No, Confera is not currently supported by Digital Creations support staff without a <a href="?">support or partnership agreement</a>. - Where can I get Confera? http://www.zope.org/Download/Prereleases/Confera - How do I install Confera? Assuming you've got <a href="">Zope</a> (version 1.10.2 or higher) up and running, you'll find information on installing products <a href="????">here</a>. - How do I display the total number of messages in a topic? Call the 'item_count' method of the 'topic' object. <!--#in topic--> There are <!--#var item_count--> messages in this topic. <!--#/in--> - How do I expand all tree branches by default? ***** ????? ***** NOTE- I saw Martin's tip on setting 'expand_all' to a non-zero value, but this didn't work for me either... - How do I include links to the "next" and "previous" messages? ***** ????? ***** - How do I display messages in reverse chronological order (newest messages at top)? ***** ????? ***** - Is it possible to "un-tree" a message index and display a simple, unindented list of message titles? ***** ????? ***** - Can I check out a functional implementation of Confera? ***** ????? ***** - Who maintains the code for Confera? ***** ????? ***** - Confera rocks! Who can I thank for this fabulous software?!? Thanks go to Brian Lloyd and rest of the amazing gang at Digital Creations! http://www.digicool.com/ -------------- END --------------
Jay Ashton wrote:
Zopesters,
I've started playing around width Confera and have realized that it's worthy of much more useful documentation than currently exists (which, as far as I have been able to find, is none at all). I'm still very new to Confera and don't yet have any insights of my own, but would really love to volunteer my time to maintain at least a FAQ.
Great!
Would others find this helpful?
Me, definitely. :)
Has anyone else started work on this?
Not that I know of, so it's a great initiative!
Could/should it be integrated into to ZDP project?
Of course, yes, please. At least I think it should, I'm biased, though. It definitely *can* be integrated. Join the ZDP list, post the thing there for feedback. Also mail me for a management login at the ZDP site, which I hand out generously to anyone who wants to do docs.
Should I host it on one of my servers for now?
You can host it on the ZDP site just fine if you like. I'd like that, and I'm sure other ZDP people would also.
Please advise!
Okay, okay. :)
Assuming no one else has begun this, I dug through the various zope sites and lists and put together the very little bit of Confera info that I could find into a FAQ. And I added a few unanswered questions that I and others have been wondering about. If it sounds at all worthwhile, send along corrections, answers, additions, suggestions, more questions, etc.!
Hope this can turn into something helpful! - Jay
Thanks! I hope to hear from you shortly on the ZDP list. Thank you and regards, Martijn
Hi - Here's an answer to one of the Confera questions: (after some digging about in BTree, Confera.py - anyone in the know, pipe in if you can think of a more spiffy way!) - Is it possible to "un-tree" a message index and display a simple, unindented list of message titles? One way to do this in DTML would be: <!--#in "data.keys()"--> <!--#with "data[_['sequence-item']]"--> <a href="<!--#if "_.len(thread_path()) != 0"--><!--#var "thread_path()[1:]"-->/<!--#/if--><!--#var tpURL-->/index_html"><!--#var title--></a><br> <!--#/with--> <!--#/in--> This will make an unthreaded, ordered list of all the message titles, with links to each message. Other attributes of the Message/Reply objects can also be shown, such as author, body, or email, by putting appropriate <!--#var--> tags inside the <!--#with--> statement. --Brian
(whoops, <!--#tree--> was already done too!) so, i guess in light of previous discussions of <!--#in--> and <!--#tree-->, (Confera FAQ) ---- - How do I display messages in reverse chronological order (newest messages at top)? Use the 'reverse' argument to <!--#tree-->. For example, change the <!--#tree--> tags in the Confera Topic's index_html to read <!--#tree branches="messageValues" sort=id reverse--> ... <!--#/tree--> (the above will work with a patched <!--#tree--> tag - Bill Scherer <ScherBi@BAM.com> has submitted a patch...) ---- --brian
participants (3)
-
Brian Hooper -
Jay Ashton -
Martijn Faassen