0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-15 03:01:37 -05:00

Merge pull request #6341 from kevinansfield/fix-mixed-content-on-team-page

Move user/cover image files used in admin team area into the client folder
This commit is contained in:
Hannah Wolfe 2016-01-21 09:46:00 +00:00
commit 57ae36ab21
7 changed files with 5 additions and 12 deletions

View file

@ -27,7 +27,7 @@ export default Component.extend(ActiveLinkWrapper, {
}),
authorAvatar: computed('post.author.image', function () {
return this.get('post.author.image') || this.get('ghostPaths.url').asset('/shared/img/user-image.png');
return this.get('post.author.image') || `${this.get('ghostPaths.subdir')}/ghost/img/user-image.png`;
}),
authorAvatarBackground: computed('authorAvatar', function () {

View file

@ -41,7 +41,7 @@ export default Component.extend({
},
defaultImage: computed('ghostPaths', function () {
let url = this.get('ghostPaths.url').asset('/shared/img/user-image.png');
let url = `${this.get('ghostPaths.subdir')}/ghost/img/user-image.png`;
return Ember.String.htmlSafe(`background-image: url(${url})`);
}),

View file

@ -14,7 +14,7 @@ export default Component.extend({
ghostPaths: service(),
userDefault: computed('ghostPaths', function () {
return this.get('ghostPaths.url').asset('/shared/img/user-image.png');
return `${this.get('ghostPaths.subdir')}/ghost/img/user-image.png`;
}),
userImageBackground: computed('user.image', 'userDefault', function () {

View file

@ -56,7 +56,7 @@ export default Controller.extend(ValidationEngine, {
// duplicated in gh-user-active -- find a better home and consolidate?
userDefault: computed('ghostPaths', function () {
return this.get('ghostPaths.url').asset('/shared/img/user-image.png');
return `${this.get('ghostPaths.subdir')}/ghost/img/user-image.png`;
}),
userImageBackground: computed('user.image', 'userDefault', function () {
@ -67,7 +67,7 @@ export default Controller.extend(ValidationEngine, {
// end duplicated
coverDefault: computed('ghostPaths', function () {
return this.get('ghostPaths.url').asset('/shared/img/user-cover.png');
return `${this.get('ghostPaths.subdir')}/ghost/img/user-cover.png`;
}),
coverImageBackground: computed('user.cover', 'coverDefault', function () {

View file

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View file

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -243,13 +243,6 @@ describe('Frontend Routing', function () {
});
describe('Static assets', function () {
it('should retrieve shared assets', function (done) {
request.get('/shared/img/user-image.png')
.expect('Cache-Control', testUtils.cacheRules.hour)
.expect(200)
.end(doEnd(done));
});
it('should retrieve theme assets', function (done) {
request.get('/assets/css/screen.css')
.expect('Cache-Control', testUtils.cacheRules.year)