Skip to content

Latest commit

 

History

History
43 lines (43 loc) · 4.13 KB

File metadata and controls

43 lines (43 loc) · 4.13 KB
  • calibre/srv/content.py:@endpoint('/static/{+what}', auth_required=False, cache_control=24)
  • calibre/srv/content.py:@endpoint('/favicon.png', auth_required=False, cache_control=24)
  • calibre/srv/content.py:@endpoint('/apple-touch-icon.png', auth_required=False, cache_control=24)
  • calibre/srv/content.py:@endpoint('/icon/{+which}', auth_required=False, cache_control=24)
  • calibre/srv/code.py:@endpoint('', auth_required=False)
  • calibre/srv/code.py:@endpoint('/robots.txt', auth_required=False)
  • calibre/srv/code.py:@endpoint('/ajax-setup', auth_required=False, cache_control='no-cache', postprocess=json)
  • calibre/srv/code.py:@endpoint('/console-print', methods=('POST', ))
  • calibre/srv/code.py:@endpoint('/interface-data/update/{translations_hash=None}', postprocess=json)
  • calibre/srv/code.py:@endpoint('/interface-data/books-init', postprocess=json)
  • calibre/srv/code.py:@endpoint('/interface-data/init', postprocess=json)
  • calibre/srv/code.py:@endpoint('/interface-data/more-books', postprocess=json, methods=POSTABLE)
  • calibre/srv/code.py:@endpoint('/interface-data/set-session-data', postprocess=json, methods=POSTABLE)
  • calibre/srv/code.py:@endpoint('/interface-data/get-books', postprocess=json)
  • calibre/srv/code.py:@endpoint('/interface-data/book-metadata/{book_id=0}', postprocess=json)
  • calibre/srv/code.py:@endpoint('/interface-data/tag-browser')
  • calibre/srv/code.py:@endpoint('/interface-data/field-names/{field}', postprocess=json)
  • calibre/srv/legacy.py:@endpoint('/mobile', postprocess=html)
  • calibre/srv/legacy.py:@endpoint('/browse/{+rest=""}')
  • calibre/srv/legacy.py:@endpoint('/stanza/{+rest=""}')
  • calibre/srv/legacy.py:@endpoint('/legacy/get/{what}/{book_id}/{library_id}/{+filename=""}', android_workaround=True)
  • calibre/srv/convert.py:@endpoint('/conversion/start/{book_id}', postprocess=json, needs_db_write=True, types={'book_id': int}, methods=receive_data_methods)
  • calibre/srv/convert.py:@endpoint('/conversion/status/{job_id}', postprocess=json, needs_db_write=True, types={'job_id': int}, methods=receive_data_methods)
  • calibre/srv/convert.py:@endpoint('/conversion/book-data/{book_id}', postprocess=json, types={'book_id': int})
  • calibre/srv/ajax.py:@endpoint('/ajax/books/{library_id=None}', postprocess=json)
  • calibre/srv/ajax.py:@endpoint('/ajax/categories/{library_id=None}', postprocess=json)
  • calibre/srv/ajax.py:@endpoint('/ajax/category/{encoded_name}/{library_id=None}', postprocess=json)
  • calibre/srv/ajax.py:@endpoint('/ajax/library-info', postprocess=json)
  • calibre/srv/users_api.py:@endpoint('/users/change-pw', methods={'POST'})
  • calibre/srv/opds.py:@endpoint('/opds', postprocess=atom)
  • calibre/srv/opds.py:@endpoint('/opds/navcatalog/{which}', postprocess=atom)
  • calibre/srv/opds.py:@endpoint('/opds/category/{category}/{which}', postprocess=atom)
  • calibre/srv/opds.py:@endpoint('/opds/categorygroup/{category}/{which}', postprocess=atom)
  • calibre/srv/opds.py:@endpoint('/opds/search/{query=""}', postprocess=atom)
  • calibre/srv/cdb.py:@endpoint('/cdb/set-cover/{book_id}/{library_id=None}', types={'book_id': int},
  • calibre/srv/cdb.py:@endpoint('/cdb/copy-to-library/{target_library_id}/{library_id=None}', needs_db_write=True,
  • calibre/srv/books.py:@endpoint('/book-manifest/{book_id}/{fmt}', postprocess=json, types={'book_id':int})
  • calibre/srv/books.py:@endpoint('/book-file/{book_id}/{fmt}/{size}/{mtime}/{+name}', types={'book_id':int, 'size':int, 'mtime':int})
  • calibre/srv/books.py:@endpoint('/book-get-last-read-position/{library_id}/{+which}', postprocess=json)
  • calibre/srv/books.py:@endpoint('/book-set-last-read-position/{library_id}/{book_id}/{+fmt}', types={'book_id': int}, methods=('POST',))
  • calibre/srv/books.py:@endpoint('/book-get-annotations/{library_id}/{+which}', postprocess=json)
  • calibre/srv/books.py:@endpoint('/book-update-annotations/{library_id}/{book_id}/{+fmt}', types={'book_id': int}, methods=('POST',))
  • calibre/srv/books.py:@endpoint('/mathjax/{+which=""}', auth_required=False)