What do you want to see in next release?

14 Nov, 2011 02:25
Please told about you're expectations
quote
05 Jan, 2012 21:23
zeus
Please told about you're expectations


Are Markdown and Textile already supported?
quote
05 Jan, 2012 21:31
Any markup language can be easily supported see:
http://readthedocs.org/docs/pybbm/en/latest/settings.html#markup-engines [readthedocs.org]
quote
09 Feb, 2012 00:03
Security:

-A way to prevent somebody making 1,000 threads per second or posts or searches
-Some sort of captcha to defeat bots that isn't javascript based for reg and anonymous posts
-Time-out on the logon page to prevent brute force, unless django-registration already provides this
-Check all user input and sanitize before passing to SQL.. prevent injection attacks
-Using bcrypt django mod, or incorporating it into this

Features:

-A way to sticky threads
-User levels
-A way to disable all Avatars/uploading
-????

Looks good so far, but some sort of anti spam bot security needed, or human spammer through timeout
sig
quote
12 Feb, 2012 14:06
thanks for the versions smile
Django developer
quote
13 Feb, 2012 01:46
hi2u
Security:
-A way to prevent somebody making 1,000 threads per second or posts or searches

This could be done by project-level with middleware that catch post requests.
hi2u
-Some sort of captcha to defeat bots that isn't javascript based for reg and anonymous posts

This is not pybbm related task, pybbm itself doesn't provide any registration/auth systems.
hi2u
-Time-out on the logon page to prevent brute force, unless django-registration already provides this

Again pybbm itself doesn't provide any login pages
hi2u
-Check all user input and sanitize before passing to SQL.. prevent injection attacks

This done by Django ORM. PyBBM doesn't contains RAW SQL.
hi2u
-Using bcrypt django mod, or incorporating it into this

You can use it in your project smile

Features:

hi2u
-A way to sticky threads

Already done

hi2u
-User levels

What for?

hi2u
-A way to disable all Avatars/uploading


Already implemented, read docs carefully

Looks good so far, but some sort of anti spam bot security needed, or human spammer through timeout
quote
20 Feb, 2012 16:26

quote
27 Feb, 2012 21:48
Something that I can think about:

SPAMMING PROTECTIONS
  1. Filtering bad words
  2. Minimum number of characters on a post. Eg: 20 characters
  3. Minimum time between 2 posts. Eg: 30 seconds
  4. Akismet option
  5. Maximum number of smileys on a post


EDITOR
  1. Shortcuts for BBCode or Markdown
  2. Auto-save draft


BTW, nice application! smile
Django developer
quote
06 Mar, 2012 17:23
.
quote
07 Mar, 2012 09:26
anhtran
Something that I can think about:

SPAMMING PROTECTIONS
  1. Filtering bad words
  2. Minimum number of characters on a post. Eg: 20 characters
  3. Minimum time between 2 posts. Eg: 30 seconds
  4. Akismet option
  5. Maximum number of smileys on a post

)


A flexible limiter/cleaners has been added to 0.7
quote
 
Register or login to create to post a reply.