Changed "Scratch Forums" to "Discuss Scratch" in preparation for changing /forums/ to /discuss/ on scratchr2
This commit is contained in:
parent
8d803fc7b6
commit
546f836f82
25 changed files with 30 additions and 30 deletions
|
@ -1,8 +1,8 @@
|
|||
#DjangoBB Forum Settings
|
||||
# Described here: https://bitbucket.org/slav0nic/djangobb/src/a4c0272533a9/djangobb_forum/settings.py
|
||||
DJANGOBB_FORUM_BASE_TITLE = 'Scratch Forums'
|
||||
DJANGOBB_FORUM_BASE_TITLE = 'Discuss Scratch'
|
||||
DJANGOBB_PM_SUPPORT = False
|
||||
DJANGOBB_HEADER = 'Scratch Forums'
|
||||
DJANGOBB_HEADER = 'Discuss Scratch'
|
||||
DJANGOBB_TAGLINE = ''
|
||||
DJANGOBB_REPUTATION_SUPPORT = False
|
||||
DJANGOBB_ATTACHMENT_SUPPORT = False
|
||||
|
|
|
@ -13,7 +13,7 @@ function log() {
|
|||
function copy_paste(id) {
|
||||
var post = $('#' + id);
|
||||
var username = post.find(".username").text();
|
||||
$.ajax('/forums/post/' + id.substr(1) + '/source/').done(function (data) {
|
||||
$.ajax('/discuss/post/' + id.substr(1) + '/source/').done(function (data) {
|
||||
paste('[quote=' + username + ']' + data + '[/quote]\n');
|
||||
});
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ $(document).ready(function () {
|
|||
alert('Invalid topic ID.');
|
||||
return;
|
||||
}
|
||||
$.get('/forums/topic/' + id[0] + '/title/', function (title) {
|
||||
$.get('/discuss/topic/' + id[0] + '/title/', function (title) {
|
||||
if (confirm('Do you really want to move these posts to "' + title + '"?')) {
|
||||
t.submit();
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
{% block content %}
|
||||
<div class="linkst">
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link forum %}</li>
|
||||
<li>» {% trans "New Topic" %}</li>
|
||||
</ul>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load forum_extras %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block page-category %}{% trans "Scratch Forums" %}{% endblock page-category %}
|
||||
{% block page-category %}{% trans "Discuss Scratch" %}{% endblock page-category %}
|
||||
|
||||
{% block extra_meta %}
|
||||
<meta name="description" content="{{ forum_settings.FORUM_META_DESCRIPTION }} " />
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<div class="inbox">
|
||||
<div class="pagelink conl">{% paginate %}</div>
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link topic.forum %}</li>
|
||||
<li>» {% link topic %}</li>
|
||||
<li>» {% trans "Delete Posts" %}</li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="linkst">
|
||||
<div class="inbox">
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link post.topic.forum %} </li>
|
||||
<li>» {% link post.topic %}</li>
|
||||
<li>» {% trans "Edit Post" %}</li>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<div class="linkst">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>
|
||||
» {{ forum.name }} <a href="{% url djangobb:forum_forum_feed forum.id %}"><img src="{{ STATIC_URL }}djangobb_forum/img/feed-icon-small.png" alt="[RSS Feed]" title="[RSS Feed]" class="breadcrumb_rss" /></a>
|
||||
</li>
|
||||
|
@ -74,7 +74,7 @@
|
|||
<div class="linksb">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a> </li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a> </li>
|
||||
<li>
|
||||
» {{ forum.name }} <a href="{% url djangobb:forum_forum_feed forum.id %}"><img src="{{ STATIC_URL }}djangobb_forum/img/feed-icon-small.png" alt="[RSS Feed]" title="[RSS Feed]" class="breadcrumb_rss" /></a>
|
||||
</li>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{% endif %}
|
||||
<ul>
|
||||
{% block menu %}
|
||||
<li id="navindex"><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li id="navindex"><a href="{% url djangobb:index %}">{% trans "Discussion Home" %}</a></li>
|
||||
<li id="navsearch"><a href="{% url djangobb:search %}">{% trans "Search" %}</a></li>
|
||||
{% if user|forum_can_view_reports %}
|
||||
<li class="moderator-only"><a href="{% url djangobb:forum_reports %}">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load forum_extras %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block page-title %}{% trans "Scratch Forums" %}{% endblock %}
|
||||
{% block page-title %}{% trans "Discuss Scratch" %}{% endblock %}
|
||||
{% block lofi %}{% url djangobb:lofi_index %}{% endblock %}
|
||||
|
||||
{% block extra_meta %}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
{% block full-link %}{% url djangobb:add_topic forum.id %}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
<span>{% lofi_link forum %}</span>
|
||||
{% block page-name %}{% trans "New Topic" %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<meta charset=utf-8>
|
||||
<title>{% block page-name %}{% endblock %} - {% trans "Scratch Forums" %}</title>
|
||||
<title>{% block page-name %}{% endblock %} - {% trans "Discuss Scratch" %}</title>
|
||||
<meta name=viewport content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
|
||||
<link rel=stylesheet href="{{ STATIC_URL }}djangobb_forum/css/lofi.css" />
|
||||
<body ontouchstart>{% block root %}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% block full-link %}{{ forum.get_absolute_url }}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
{% block page-name %}{{ forum.name }}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load forum_extras %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% block page-name %}{% trans "Scratch Forums" %}{% endblock %}{% endblock %}
|
||||
{% block title %}{% block page-name %}{% trans "Discuss" %}{% endblock %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<ul class="category list">
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
{% block full-link %}{% url djangobb:topic post.topic.id %}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
<span>{% lofi_link post.topic.forum %}</span>
|
||||
<span>{% lofi_link post.topic %}</span>
|
||||
{% block page-name %}{% trans "Reply" %}{% endblock %}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% block full-link %}{% url djangobb:search %}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
{% block page-name %}{% trans "Search" %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% block root %}{% autopaginate posts forum_settings.FORUM_PAGE_SIZE %}{{ block.super }}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
{% block page-name %}{% trans "Search Results" %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% block root %}{% autopaginate topics forum_settings.FORUM_PAGE_SIZE %}{{ block.super }}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
{% block page-name %}{% trans "Search Results" %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{% load i18n %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
{% block page-name %}{% trans "Sign In" %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{% block full-link %}{{ topic.get_absolute_url }}{% endblock %}
|
||||
|
||||
{% block title %}
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Scratch Forums" %}</a></span>
|
||||
<span><a href="{% url djangobb:lofi_index %}">{% trans "Discuss" %}</a></span>
|
||||
<span>{% lofi_link topic.forum %}</span>
|
||||
{% block page-name %}{{ topic.name }}{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<div class="linkst">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link forum %}</li>
|
||||
<li>» {% trans "Moderate Forum" %}</li>
|
||||
</ul>
|
||||
|
@ -69,7 +69,7 @@
|
|||
<div class="linksb">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link forum %}</li>
|
||||
<li>» {% trans "Moderate Forum" %}</li>
|
||||
</ul>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<div class="linkst">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link topic.forum %}</li>
|
||||
<li>» {% link topic %}</li>
|
||||
<li>» {% trans "Move Posts" %}</li>
|
||||
|
@ -62,7 +62,7 @@
|
|||
<div class="linksb">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link topic.forum %}</li>
|
||||
<li>» {% link topic %}</li>
|
||||
<li>» {% trans "Move Posts" %}</li>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{% block content %}
|
||||
<div class="linkst">
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% trans "Move Topic" %}</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="linkst">
|
||||
<div class="inbox">
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link post.topic.forum %} </li>
|
||||
<li>» {% link post.topic %}</li>
|
||||
<li>» {% trans "Report Post" %}</li>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{% paginate %}
|
||||
<ul>
|
||||
<li>
|
||||
<a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a> </li><li>» {% link topic.forum %} </li><li>» {{ topic.name }}
|
||||
<a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a> </li><li>» {% link topic.forum %} </li><li>» {{ topic.name }}
|
||||
<a href="{% url djangobb:forum_topic_feed topic.id %}"><img src="{{ STATIC_URL }}/djangobb_forum/img/feed-icon-small.png" alt="[RSS Feed]" title="[RSS Feed]" class="breadcrumb_rss" /></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -150,7 +150,7 @@
|
|||
<div class="linksb">
|
||||
{% paginate %}
|
||||
<ul>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Forums Home" %}</a></li>
|
||||
<li><a href="{% url djangobb:index %}">{% trans "Discussion Forums" %}</a></li>
|
||||
<li>» {% link topic.forum %} </li>
|
||||
<li>
|
||||
» {{ topic }} <a href="{% url djangobb:forum_topic_feed topic.id %}"><img src="{{ STATIC_URL }}/djangobb_forum/img/feed-icon-small.png" alt="[RSS Feed]" title="[RSS Feed]" class="breadcrumb_rss" /></a>
|
||||
|
|
Reference in a new issue