Skip to content

Commit

Permalink
Updates for the manifest storage
Browse files Browse the repository at this point in the history
- Fix missing file references with a symlink
- Fix missing font
  • Loading branch information
davidfischer committed Jul 25, 2018
1 parent c0595c1 commit 1f55b3a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var sources = {
'css/badge_only.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/badge_only.css'},
'css/theme.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/theme.css'},

'font/Lato-BoldItalic.ttf': {src: 'bower_components/lato-googlefont/Lato-BoldItalic.ttf'},
'font/Lato-Bold.ttf': {src: 'bower_components/lato-googlefont/Lato-Bold.ttf'},
'font/Lato-Regular.ttf': {src: 'bower_components/lato-googlefont/Lato-Regular.ttf'},
'font/Lato-Italic.ttf': {src: 'bower_components/lato-googlefont/Lato-Italic.ttf'},
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions readthedocs/core/static/core/fonts
2 changes: 1 addition & 1 deletion readthedocs/core/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ class MediaAzureStorage(HashedFilesMixin, AzureStorage):
* Uploads them to our Azure container
"""

azure_container = getattr(settings, 'AZURE_BUILD_STORAGE_CONTAINER', None) or 'media'
azure_container = getattr(settings, 'AZURE_MEDIA_STORAGE_CONTAINER', None) or 'media'

0 comments on commit 1f55b3a

Please sign in to comment.