Add more stuff to the to-do list.
This commit is contained in:
parent
a2906db06a
commit
533970f248
2 changed files with 4 additions and 2 deletions
|
@ -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).
|
||||
- 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.
|
||||
- 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
|
||||
|
||||
|
|
|
@ -797,7 +797,7 @@ def post_tag_edit(specific_tag):
|
|||
|
||||
@site.route('/tags/<specific_tag>')
|
||||
@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/'))
|
||||
|
||||
@site.route('/tags/create_tag', methods=['POST'])
|
||||
|
@ -867,7 +867,6 @@ def get_user_id_redirect(userid):
|
|||
@session_manager.give_token
|
||||
def apitest():
|
||||
response = flask.Response('testing')
|
||||
response.set_cookie('etiquette_session', 'don\'t overwrite me')
|
||||
return response
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue