Add more stuff to the to-do list.

master
voussoir 2017-07-09 15:48:47 -07:00
parent a2906db06a
commit 533970f248
2 changed files with 4 additions and 2 deletions

View File

@ -23,6 +23,9 @@ Documentation is still a work in progress. In general, I use:
- Replace columns like area, ratio, bitrate by using expression indices or views (`width * height` etc). - Replace columns like area, ratio, bitrate by using expression indices or views (`width * height` etc).
- Add some way to support large image albums without flooding the search results. Considering a "hidden" property so that a handful of representative images can appear in the search results, and the rest can be found on the actual Album page. - Add some way to support large image albums without flooding the search results. Considering a "hidden" property so that a handful of representative images can appear in the search results, and the rest can be found on the actual Album page.
- Add a `Photo.merge` to combine duplicate entries. - Add a `Photo.merge` to combine duplicate entries.
- Generate thumbnails for vector files.
- Allow photos to have nonstandard, orderby-able properties like "release year".
- Make the FFmpeg path configurable. Some kind of global config? Or part of the database config file?
### Changelog ### Changelog

View File

@ -797,7 +797,7 @@ def post_tag_edit(specific_tag):
@site.route('/tags/<specific_tag>') @site.route('/tags/<specific_tag>')
@site.route('/tags/<specific_tag>.json') @site.route('/tags/<specific_tag>.json')
def get_tags_specific_redirect(specific_tag=None): def get_tags_specific_redirect(specific_tag):
return flask.redirect(request.url.replace('/tags/', '/tag/')) return flask.redirect(request.url.replace('/tags/', '/tag/'))
@site.route('/tags/create_tag', methods=['POST']) @site.route('/tags/create_tag', methods=['POST'])
@ -867,7 +867,6 @@ def get_user_id_redirect(userid):
@session_manager.give_token @session_manager.give_token
def apitest(): def apitest():
response = flask.Response('testing') response = flask.Response('testing')
response.set_cookie('etiquette_session', 'don\'t overwrite me')
return response return response
if __name__ == '__main__': if __name__ == '__main__':