diff options
author | cel 🌸 <cel@blos.sm> | 2023-08-13 16:03:31 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-08-13 16:03:31 +0100 |
commit | 84cfd47fe4d2fde8b5aeaa6c1f09b1c15668f129 (patch) | |
tree | ff3cfe6cf9fdb3d237386ee220adc6aa470e0dbd /DESIGN.md | |
parent | 7f263e4c591ab82ed57a2911f22b85d4a093617f (diff) | |
download | victoria-84cfd47fe4d2fde8b5aeaa6c1f09b1c15668f129.tar.gz victoria-84cfd47fe4d2fde8b5aeaa6c1f09b1c15668f129.tar.bz2 victoria-84cfd47fe4d2fde8b5aeaa6c1f09b1c15668f129.zip |
Diffstat (limited to '')
-rw-r--r-- | DESIGN.md | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/DESIGN.md b/DESIGN.md new file mode 100644 index 0000000..14353b8 --- /dev/null +++ b/DESIGN.md @@ -0,0 +1,86 @@ +# DESIGN + +## overview + +victoria is essentially a wiki for artists + +### main data types + +series + works + texts + media + +users + artists + +tags + +posts + notes + articles + +## parts + +### series + +values: +- works +- title +- text: optional + +series do not have to contain works +series are editable over time +series may be posted as articles + +### works + +works are a collection of content with optional title and text/description + +- type: (multiple) choice from user-defined collection +- content: + - media + - text(s) +- title: optional +- text/description: optional + +works do not have to contain content +works are editable over time +works do not have to be part of a series +works may be posted as articles + +### text + +texts are a text form of media and contain +- text + +texts may be posted as notes + +### media + +media are JUST media and contain +- file +- alt text: optional +- comment: optional + +media may be posted as notes + +### user + +users are whoever can edit the repository and post content + +### artists + +artists contain artist info for everybody who is documented in the repository, and may or may not be a user. + +artists can be attributed to media, works and series. + +### tags + +tags are used for linking all content + +### posts + +posts can be articles or notes, and may consist simply of a link to a series, work, or piece of media/text, or a standalone article or note as part of the blog/microblog. + +posts are the foundation of the social features via rss, where people can subscribe to the blog, series, and works, as articles, and media, texts, the microblog, and repository updates, as notes. |