##// END OF EJS Templates
file-browser: refactor how we load metadata for file trees....
file-browser: refactor how we load metadata for file trees. Before we used to use JSON data to map the nodes to json and fill in metadata. Now we use rendered parts of html. This is nicer for caching as it would allow us to replace the view with cached tree and then after ajax load replace it again with cached with metadata. On the next request we'll get the cached with metadata and thus we can skip entirely second ajax call for metadata. This is part of #4083

File last commit:

r1:854a839a default
r423:9930e2c8 default
Show More
MANIFEST.in
48 lines | 956 B | text/plain | TextLexer
# top level files
include test.ini
include MANIFEST.in
include README.rst
include rhodecode/VERSION
# docs
recursive-include docs *
# init.d
recursive-include init.d *
# translations
recursive-include rhodecode/i18n *
# bin stuff
recursive-include rhodecode/bin *
# hook templates
recursive-include rhodecode/config/hook_templates *
# non-python core stuff
recursive-include rhodecode *.cfg
recursive-include rhodecode *.json
recursive-include rhodecode *.ini_tmpl
recursive-include rhodecode *.sh
# images, css
include rhodecode/public/css/*.css
include rhodecode/public/images/*.*
# sound files
include rhodecode/public/sounds/*.mp3
include rhodecode/public/sounds/*.wav
# fonts
recursive-include rhodecode/public/fonts/ProximaNova *
recursive-include rhodecode/public/fonts/RCIcons *
# js
recursive-include rhodecode/public/js *
# templates
recursive-include rhodecode/templates *
# skip any tests files
recursive-exclude rhodecode/tests *