mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-17 22:10:23 +01:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ef750e2ebd | ||
|
|
67d9209b99 | ||
|
|
98c1390e7f | ||
|
|
a3d17d14fd | ||
|
|
307eb19d01 | ||
|
|
f475d6e3b8 | ||
|
|
b4465b7df1 | ||
|
|
aa001b5926 | ||
|
|
5c253c1efa | ||
|
|
59b14669c4 | ||
|
|
3e386e7668 | ||
|
|
43b90c5679 | ||
|
|
58b8c32fe9 | ||
|
|
1b88a6a523 | ||
|
|
8ecd90729e | ||
|
|
a5b8a656e9 | ||
|
|
2cae7995e7 | ||
|
|
19ca796915 |
3534
npm-shrinkwrap.json
generated
Normal file
3534
npm-shrinkwrap.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
|||||||
"name": "nodebb",
|
"name": "nodebb",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"description": "NodeBB Forum",
|
"description": "NodeBB Forum",
|
||||||
"version": "0.7.1-dev",
|
"version": "0.7.1",
|
||||||
"homepage": "http://www.nodebb.org",
|
"homepage": "http://www.nodebb.org",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -48,9 +48,9 @@
|
|||||||
"nodebb-plugin-soundpack-default": "^0.1.1",
|
"nodebb-plugin-soundpack-default": "^0.1.1",
|
||||||
"nodebb-plugin-spam-be-gone": "^0.4.0",
|
"nodebb-plugin-spam-be-gone": "^0.4.0",
|
||||||
"nodebb-rewards-essentials": "^0.0.1",
|
"nodebb-rewards-essentials": "^0.0.1",
|
||||||
"nodebb-theme-lavender": "^1.0.47",
|
"nodebb-theme-lavender": "^1.0.48",
|
||||||
"nodebb-theme-persona": "^1.0.15",
|
"nodebb-theme-persona": "^1.0.16",
|
||||||
"nodebb-theme-vanilla": "^2.0.13",
|
"nodebb-theme-vanilla": "^2.0.14",
|
||||||
"nodebb-widget-essentials": "^1.0.2",
|
"nodebb-widget-essentials": "^1.0.2",
|
||||||
"npm": "^2.1.4",
|
"npm": "^2.1.4",
|
||||||
"passport": "^0.2.1",
|
"passport": "^0.2.1",
|
||||||
|
|||||||
@@ -85,4 +85,4 @@
|
|||||||
"follow_topics_you_create": "Seguir publicaciones que creas",
|
"follow_topics_you_create": "Seguir publicaciones que creas",
|
||||||
"grouptitle": "Selecciona el título del grupo que deseas visualizar",
|
"grouptitle": "Selecciona el título del grupo que deseas visualizar",
|
||||||
"no-group-title": "Sin título de grupo"
|
"no-group-title": "Sin título de grupo"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
"header.tags": "话题",
|
"header.tags": "话题",
|
||||||
"header.popular": "热门",
|
"header.popular": "热门",
|
||||||
"header.users": "会员",
|
"header.users": "会员",
|
||||||
"header.groups": "小组",
|
"header.groups": "群组",
|
||||||
"header.chats": "聊天",
|
"header.chats": "聊天",
|
||||||
"header.notifications": "通知",
|
"header.notifications": "通知",
|
||||||
"header.search": "搜索",
|
"header.search": "搜索",
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
"watched": "已订阅",
|
"watched": "已订阅",
|
||||||
"followers": "粉丝",
|
"followers": "粉丝",
|
||||||
"following": "关注",
|
"following": "关注",
|
||||||
"aboutme": "About me",
|
"aboutme": "关于我",
|
||||||
"signature": "签名档",
|
"signature": "签名档",
|
||||||
"gravatar": "头像",
|
"gravatar": "头像",
|
||||||
"birthday": "生日",
|
"birthday": "生日",
|
||||||
|
|||||||
@@ -276,14 +276,14 @@ $(document).ready(function() {
|
|||||||
(RELATIVE_PATH.length > 0 ? this.pathname.indexOf(RELATIVE_PATH) === 0 : true)) // Subfolder installs need this additional check
|
(RELATIVE_PATH.length > 0 ? this.pathname.indexOf(RELATIVE_PATH) === 0 : true)) // Subfolder installs need this additional check
|
||||||
) {
|
) {
|
||||||
// Internal link
|
// Internal link
|
||||||
var url = this.pathname.replace(RELATIVE_PATH + '/', '');
|
var pathname = this.href.replace(rootUrl + RELATIVE_PATH + '/', '');
|
||||||
|
|
||||||
// Special handling for urls with hashes
|
// Special handling for urls with hashes
|
||||||
if (window.location.pathname === this.pathname && this.hash.length) {
|
if (window.location.pathname === this.pathname && this.hash.length) {
|
||||||
window.location.hash = this.hash;
|
window.location.hash = this.hash;
|
||||||
} else {
|
} else {
|
||||||
window.location.hash = '';
|
window.location.hash = '';
|
||||||
if (ajaxify.go(url)) {
|
if (ajaxify.go(pathname)) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -284,10 +284,10 @@ function enableDefaultTheme(next) {
|
|||||||
return next(err);
|
return next(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
process.stdout.write('Enabling default theme: Lavender\n');
|
process.stdout.write('Enabling default theme: Persona\n');
|
||||||
meta.themes.set({
|
meta.themes.set({
|
||||||
type: 'local',
|
type: 'local',
|
||||||
id: 'nodebb-theme-lavender'
|
id: 'nodebb-theme-persona'
|
||||||
}, next);
|
}, next);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,4 +117,4 @@ module.exports = function(Topics) {
|
|||||||
Topics.setTopicField(tid, 'teaserPid', pid, callback);
|
Topics.setTopicField(tid, 'teaserPid', pid, callback);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user