[web2py] Post tags implementation

2014-09-14 Thread Yousif Iyad Shaban
Hello guys again. Is there a default way of implementing post tags? I've seen something like building another table and referencing it in the Post table, however - for instance - in django, there's a module that does all this especially. What would you recommend? Thank you. -- Resources: - ht

[web2py] Re: Enabling HTML posts for admin (security)

2014-09-10 Thread Yousif Iyad Shaban
s are. Disabling registration > isn't necessary, as long as registered users can't post. Of course, if you > don't need registration (presumably you don't if you're disabling it), then > you should disable it anyway. > > Anthony > > On Wednesday, Sep

[web2py] Enabling HTML posts for admin (security)

2014-09-10 Thread Yousif Iyad Shaban
If I was to enable HTML in posts using: {{=XML(post.body)}} and disable registration entirely using: auth.settings.actions_disabled.append('register') Would that be enough to remove security concerns about injections from the outside? And as a side note, thank you guys for this great framewo