Merge branch 'master' into develop
commit
c2f1d254cc
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"logs": "Logs",
|
"logs": "Nhật ký",
|
||||||
"control-panel": "Logs Control Panel",
|
"control-panel": "Bảng điều khiển log",
|
||||||
"reload": "Reload Logs",
|
"reload": "Tải lại log",
|
||||||
"clear": "Clear Logs",
|
"clear": "Xóa các log",
|
||||||
"clear-success": "Logs Cleared!"
|
"clear-success": "Các log đã được xóa!"
|
||||||
}
|
}
|
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"loading": "Loading Skins...",
|
"loading": "Đang tải giao diện ...",
|
||||||
"homepage": "Homepage",
|
"homepage": "Trang chủ",
|
||||||
"select-skin": "Select Skin",
|
"select-skin": "Chọn giao diện",
|
||||||
"current-skin": "Current Skin",
|
"current-skin": "Giao diện hiện tại",
|
||||||
"skin-updated": "Skin Updated",
|
"skin-updated": "Đã cập nhật giao diện",
|
||||||
"applied-success": "%1 skin was succesfully applied",
|
"applied-success": "1% giao diện đã được sử dụng thành công",
|
||||||
"revert-success": "Skin reverted to base colours"
|
"revert-success": "Đã trả giao diện về màu cơ bản"
|
||||||
}
|
}
|
@ -1,90 +1,64 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
|
||||||
(function (ajaxify) {
|
(function (ajaxify) {
|
||||||
ajaxify.widgets = {};
|
ajaxify.widgets = {};
|
||||||
|
|
||||||
ajaxify.widgets.reposition = function (location) {
|
ajaxify.widgets.render = function (template, callback) {
|
||||||
$('body [has-widget-class]').each(function () {
|
|
||||||
var $this = $(this);
|
|
||||||
if ($this.attr('has-widget-target') === location) {
|
|
||||||
$this.removeClass();
|
|
||||||
$this.addClass($this.attr('has-widget-class'));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
ajaxify.widgets.render = function (template, url, callback) {
|
|
||||||
callback = callback || function () {};
|
callback = callback || function () {};
|
||||||
|
|
||||||
if (template.match(/^admin/)) {
|
if (template.match(/^admin/)) {
|
||||||
return callback();
|
return callback();
|
||||||
}
|
}
|
||||||
|
|
||||||
var widgetLocations = ['sidebar', 'footer', 'header'];
|
var locations = Object.keys(ajaxify.data.widgets);
|
||||||
|
|
||||||
$('#content [widget-area]').each(function () {
|
locations.forEach(function (location) {
|
||||||
var location = $(this).attr('widget-area');
|
var area = $('#content [widget-area="' + location + '"]');
|
||||||
if ($.inArray(location, widgetLocations) === -1) {
|
if (area.length) {
|
||||||
widgetLocations.push(location);
|
return;
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
$.get(config.relative_path + '/api/widgets/render?' + config['cache-buster'], {
|
var widgetsAtLocation = ajaxify.data.widgets[location] || [];
|
||||||
locations: widgetLocations,
|
var html = '';
|
||||||
template: template + '.tpl',
|
|
||||||
url: url,
|
|
||||||
cid: ajaxify.data.cid,
|
|
||||||
isMobile: utils.isMobile(),
|
|
||||||
}, function (renderedAreas) {
|
|
||||||
for (var x = 0; x < renderedAreas.length; x += 1) {
|
|
||||||
var renderedWidgets = renderedAreas[x].widgets;
|
|
||||||
var location = renderedAreas[x].location;
|
|
||||||
var html = '';
|
|
||||||
|
|
||||||
for (var i = 0; i < renderedWidgets.length; i += 1) {
|
widgetsAtLocation.forEach(function (widget) {
|
||||||
html += templates.parse(renderedWidgets[i].html, {});
|
html += widget.html;
|
||||||
}
|
|
||||||
|
|
||||||
var area = $('#content [widget-area="' + location + '"]');
|
if (location === 'footer' && !$('#content [widget-area="footer"]').length) {
|
||||||
|
$('#content').append($('<div class="row"><div widget-area="footer" class="col-xs-12"></div></div>'));
|
||||||
if (!area.length && window.location.pathname.indexOf('/admin') === -1 && renderedWidgets.length) {
|
} else if (location === 'sidebar' && !$('#content [widget-area="sidebar"]').length) {
|
||||||
if (location === 'footer' && !$('#content [widget-area="footer"]').length) {
|
if ($('[component="account/cover"]').length) {
|
||||||
$('#content').append($('<div class="row"><div widget-area="footer" class="col-xs-12"></div></div>'));
|
$('[component="account/cover"]').nextAll().wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
||||||
} else if (location === 'sidebar' && !$('#content [widget-area="sidebar"]').length) {
|
} else if ($('[component="groups/cover"]').length) {
|
||||||
if ($('[component="account/cover"]').length) {
|
$('[component="groups/cover"]').nextAll().wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
||||||
$('[component="account/cover"]').nextAll().wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
} else {
|
||||||
} else if ($('[component="groups/cover"]').length) {
|
$('#content > *').wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
||||||
$('[component="groups/cover"]').nextAll().wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
|
||||||
} else {
|
|
||||||
$('#content > *').wrapAll($('<div class="row"><div class="col-lg-9 col-xs-12"></div><div widget-area="sidebar" class="col-lg-3 col-xs-12"></div></div></div>'));
|
|
||||||
}
|
|
||||||
} else if (location === 'header' && !$('#content [widget-area="header"]').length) {
|
|
||||||
$('#content').prepend($('<div class="row"><div widget-area="header" class="col-xs-12"></div></div>'));
|
|
||||||
}
|
}
|
||||||
|
} else if (location === 'header' && !$('#content [widget-area="header"]').length) {
|
||||||
area = $('#content [widget-area="' + location + '"]');
|
$('#content').prepend($('<div class="row"><div widget-area="header" class="col-xs-12"></div></div>'));
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
area = $('#content [widget-area="' + location + '"]');
|
||||||
|
if (html && area.length) {
|
||||||
area.html(html);
|
area.html(html);
|
||||||
|
}
|
||||||
|
|
||||||
if (renderedWidgets.length) {
|
if (widgetsAtLocation.length) {
|
||||||
area.removeClass('hidden');
|
area.removeClass('hidden');
|
||||||
ajaxify.widgets.reposition(location);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
var widgetAreas = $('#content [widget-area]');
|
var widgetAreas = $('#content [widget-area]');
|
||||||
widgetAreas.find('img:not(.not-responsive)').addClass('img-responsive');
|
widgetAreas.find('img:not(.not-responsive)').addClass('img-responsive');
|
||||||
widgetAreas.find('.timeago').timeago();
|
widgetAreas.find('.timeago').timeago();
|
||||||
widgetAreas.find('img[title].teaser-pic,img[title].user-img').each(function () {
|
widgetAreas.find('img[title].teaser-pic,img[title].user-img').each(function () {
|
||||||
$(this).tooltip({
|
$(this).tooltip({
|
||||||
placement: 'top',
|
placement: 'top',
|
||||||
title: $(this).attr('title'),
|
title: $(this).attr('title'),
|
||||||
});
|
|
||||||
});
|
});
|
||||||
$(window).trigger('action:widgets.loaded', {});
|
|
||||||
|
|
||||||
callback(renderedAreas);
|
|
||||||
});
|
});
|
||||||
|
$(window).trigger('action:widgets.loaded', {});
|
||||||
|
callback();
|
||||||
};
|
};
|
||||||
}(ajaxify || {}));
|
}(ajaxify || {}));
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
var batch = require('../../batch');
|
||||||
|
var db = require('../../database');
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
name: 'Wipe all existing RSS tokens',
|
||||||
|
timestamp: Date.UTC(2017, 6, 5),
|
||||||
|
method: function (callback) {
|
||||||
|
var progress = this.progress;
|
||||||
|
|
||||||
|
batch.processSortedSet('users:joindate', function (uids, next) {
|
||||||
|
async.eachLimit(uids, 500, function (uid, next) {
|
||||||
|
progress.incr();
|
||||||
|
db.deleteObjectField('user:' + uid, 'rss_token', next);
|
||||||
|
}, next);
|
||||||
|
}, {
|
||||||
|
progress: progress,
|
||||||
|
}, callback);
|
||||||
|
},
|
||||||
|
};
|
@ -0,0 +1,35 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
var db = require('../../database');
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
name: 'Fix incorrect robots.txt schema',
|
||||||
|
timestamp: Date.UTC(2017, 6, 10),
|
||||||
|
method: function (callback) {
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
db.getObject('config', next);
|
||||||
|
},
|
||||||
|
function (config, next) {
|
||||||
|
if (!config) {
|
||||||
|
return callback();
|
||||||
|
}
|
||||||
|
// fix mongo nested data
|
||||||
|
if (config.robots && config.robots.txt) {
|
||||||
|
db.setObjectField('config', 'robots:txt', config.robots.txt, next);
|
||||||
|
} else if (typeof config['robots.txt'] === 'string' && config['robots.txt']) {
|
||||||
|
db.setObjectField('config', 'robots:txt', config['robots.txt'], next);
|
||||||
|
} else {
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
function (next) {
|
||||||
|
db.deleteObjectField('config', 'robots', next);
|
||||||
|
},
|
||||||
|
function (next) {
|
||||||
|
db.deleteObjectField('config', 'robots.txt', next);
|
||||||
|
},
|
||||||
|
], callback);
|
||||||
|
},
|
||||||
|
};
|
Loading…
Reference in New Issue