##// END OF EJS Templates
Made quote button actually button so it is impossible to accidentally quote its text
Made quote button actually button so it is impossible to accidentally quote its text

File last commit:

r1570:74e32ed9 default
r1909:004a4ff8 default
Show More
dip-2.markdown
31 lines | 730 B | text/x-markdown | MarkdownLexer
neko259
Added sample document with post model reference
r1190 # 0 Title #
"post" model reference
# 1 Description #
"post" is a model that defines an imageboard message, or post.
# 2 Fields #
# 2.1 Mandatory fields #
* title -- text field.
* text -- text field.
* pub-time -- timestamp (TBD: Define format).
neko259
Updated document
r1570 * version -- when post content changes, version should be incremented.
neko259
Added sample document with post model reference
r1190
# 2.2 Optional fields #
* attachments -- defines attachments such as images.
* attachment -- contains and attachment or link to attachment to be downloaded
manually. Required attributes are mimetype and name.
This field is used for the opening post (thread):
* tags -- text tag name list.
This field is used for non-opening post:
* thread -- ID of a post model that this post is related to.
neko259
Added tripcode to the synced post items list
r1556 * tripcode