No description
Ethan Dalool
6d8fc799c0
After removing the tags div for photos without tags, I realized the space-between was lost leaving the metadata on the left instead of the right |
||
---|---|---|
etiquette | ||
static | ||
templates | ||
utilities | ||
.gitignore | ||
etiquette_repl.py | ||
etiquette_site.py | ||
etiquette_site_launch.py | ||
LICENSE.txt | ||
README.md | ||
requirements.txt | ||
test_etiquette_site.py | ||
test_phototagger.py |
Etiquette
I am currently running a demonstration copy of Etiquette at http://etiquette.voussoir.net where you can browse around. This is not yet permanent.
What am I looking at
Etiquette is a tag-based file organization system with a web front-end.
Documentation is still a work in progress. In general, I use:
python etiquette_site_launch.py [port]
to launch the flask server. Port defaults to 5000 if not provided.python -i etiquette_repl.py
to launch the Python interpreter with the PhotoDB pre-loaded into a variable calledP
. Try things likeP.new_photo
orP.digest_directory
.
To do list
- Make the wording between "new", "create", "add"; and "remove", "delete" more consistent.
- User account system, permission levels, private pages.
- Improve the "tags on this page" list. Maybe add separate buttons for must/may/forbid on each.
- Some way for the database to re-identify a file that was moved / renamed (lost & found). Maybe file hash of the first few mb is good enough.
- Debate whether the
UserMixin.login
method should accept usernames or I should standardize the usage of IDs only internally. - Album size is calculated every time you refresh the page. For large albums this is very slow. Consider caching? Or saving to db?
- Organize the tag exporter functions better.
Changelog
- [addition] A new feature was added.
- [bugfix] Incorrect behavior was fixed.
- [change] An existing feature was slightly modified or parameters were renamed.
- [cleanup] Code was improved, comments were added, or other changes with minor impact on the interface.
- [removal] An old feature was removed.