##// END OF EJS Templates
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format
Added signatures to the GET response. Added a view to get a full post response for one post. Don't show post key as it is present in the XML post view. Changed key display format

File last commit:

r834:cfa74d10 merge decentral
r837:fbeaaa16 decentral
Show More
settings.py
20 lines | 615 B | text/x-python | PythonLexer
neko259
Bumping version
r817 VERSION = '2.1 Aya'
neko259
Added KeyPair model for signing and verifying data, that will be user for...
r793 SITE_NAME = 'n3b0a2d'
neko259
Moved imageboard settings to the boards settings module. Added setting to disable archive
r716
neko259
Moved some settings to boards.settings
r333 CACHE_TIMEOUT = 600 # Timeout for caching, if cache is used
LOGIN_TIMEOUT = 3600 # Timeout between login tries
MAX_TEXT_LENGTH = 30000 # Max post length in characters
MAX_IMAGE_SIZE = 8 * 1024 * 1024 # Max image size
neko259
Moved imageboard settings to the boards settings module. Added setting to disable archive
r716
# Thread bumplimit
MAX_POSTS_PER_THREAD = 10
# Old posts will be archived or deleted if this value is reached
MAX_THREAD_COUNT = 5
THREADS_PER_PAGE = 3
DEFAULT_THEME = 'md'
LAST_REPLIES_COUNT = 3
# Enable archiving threads instead of deletion when the thread limit is reached
neko259
Added settings to limit posting speed. Added message when the form data is sent and response not yet received
r725 ARCHIVE_THREADS = True
# Limit posting speed
neko259
Added login and logout for moderators
r729 LIMIT_POSTING_SPEED = False