fix #255: add author field to rss; fix path in makefile |
|
More...
|
almost 13 years ago
|
fix #255: add author field to rss; fix path in makefile |
|
More...
|
almost 13 years ago
|
add poll feature ref #13 as squash commit see also http://support.djangobb.org/topic/333/ (This is a combination of 9 commits.) |
|
More...
|
almost 13 years ago
|
add poll feature ref #13 as squash commit see also http://support.djangobb.org/topic/333/ (This is a combination of 9 commits.) |
|
More...
|
almost 13 years ago
|
* reimplement nick name copy&paste * use $("#id_body").focus(); to scroll down * bugfix for logging (IE) |
|
More...
|
almost 13 years ago
|
disable logging |
|
More...
|
almost 13 years ago
|
disable logging |
|
More...
|
almost 13 years ago
|
* reimplement nick name copy&paste * use $("#id_body").focus(); to scroll down * bugfix for logging (IE) |
|
More...
|
almost 13 years ago
|
disable "delete_selected" admin action only for DjangoBB models and not globaly. |
|
More...
|
almost 13 years ago
|
disable "delete_selected" admin action only for DjangoBB models and not globaly. |
|
More...
|
almost 13 years ago
|
* Bugfix for double results in "show own posts" * Don't put user_id in GET -> use request.user * remove {% if results %} with {% for %}...{% empty %} * Refactor search() |
|
More...
|
almost 13 years ago
|
* Bugfix for double results in "show own posts" * Don't put user_id in GET -> use request.user * remove {% if results %} with {% for %}...{% empty %} * Refactor search() Fixed topic search results which returned nothing. Return a list instead of a generator in TopicFromPostResult.__getitem__() so that the pagination can work correctly. from: https://bitbucket.org/hsoft/djangobb/changeset/1b2f31c54c516c699a7b11a1d43b170742157df5 |
|
More...
|
almost 13 years ago
|
added a missing load |
|
More...
|
almost 13 years ago
|
added a missing load |
|
More...
|
almost 13 years ago
|
* Bugfix: if selection used. * Copy&Paste only the post body and not "meta" lines |
|
More...
|
almost 13 years ago
|
add auto subscribe topic feature: http://djangobb.org/ticket/175 |
|
More...
|
almost 13 years ago
|
remove special template tag with normal template features. maybe it's simpler to put "markup" valiable into contexte! |
|
More...
|
almost 13 years ago
|
auto code cleanup |
|
More...
|
almost 13 years ago
|
use jquery from django |
|
More...
|
almost 13 years ago
|
merge reply / quote stuff |
|
More...
|
almost 13 years ago
|
* Expand the [code XXX]...[/code] list in Maritup * Add a note under the quick post form |
|
More...
|
almost 13 years ago
|
use uncompressed jQuery in DEBUG mode for better debugging |
|
More...
|
almost 13 years ago
|
Add JavaScript info. |
|
More...
|
almost 13 years ago
|
* Bugfix: if selection used. * Copy&Paste only the post body and not "meta" lines --- djangobb_forum/static/djangobb_forum/js/markup/bbcode/board.js | 4 ++-- djangobb_forum/templates/djangobb_forum/topic.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) |
|
More...
|
almost 13 years ago
|
use uncompressed jQuery in DEBUG mode for better debugging --- djangobb_forum/context_processors.py | 15 ++++++++++++--- djangobb_forum/templates/djangobb_forum/base.html | 6 +++++- 2 files changed, 17 insertions(+), 4 deletions(-) |
|
More...
|
almost 13 years ago
|
* Expand the [code XXX]...[/code] list in Maritup * Add a note under the quick post form --- .../djangobb_forum/js/markitup/sets/bbcode/set.js | 15 ++++++++++++++- djangobb_forum/templates/djangobb_forum/topic.html | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) |
|
More...
|
almost 13 years ago
|
use jquery from django --- djangobb_forum/templates/djangobb_forum/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) |
|
More...
|
almost 13 years ago
|
auto code cleanup --- djangobb_forum/templatetags/forum_extras.py | 40 +++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) |
|
More...
|
almost 13 years ago
|
add auto subscribe topic feature: http://djangobb.org/ticket/175 --- djangobb_forum/forms.py | 7 +- .../0004_auto__add_field_profile_auto_subscribe.py | 180 ++++++++++++++++++++ djangobb_forum/models.py | 1 + .../templates/djangobb_forum/add_post.html | 35 +--- .../djangobb_forum/includes/post_form.html | 38 +++++ .../djangobb_forum/profile/profile_essentials.html | 10 +- djangobb_forum/templates/djangobb_forum/topic.html | 32 +--- djangobb_forum/views.py | 10 +- 8 files changed, 244 insertions(+), 69 deletions(-) create mode 100644 djangobb_forum/migrations/0004_auto__add_field_profile_auto_subscribe.py create mode 100644 djangobb_forum/templates/djangobb_forum/includes/post_form.html |
|
More...
|
almost 13 years ago
|
remove special template tag with normal template features. maybe it's simpler to put "markup" valiable into contexte! --- djangobb_forum/templates/djangobb_forum/base.html | 24 ++++++++++++-------- .../djangobb_forum/includes/markup_editor.html | 5 ++++ djangobb_forum/templatetags/forum_extras.py | 15 ------------ 3 files changed, 19 insertions(+), 25 deletions(-) create mode 100644 djangobb_forum/templates/djangobb_forum/includes/markup_editor.html |
|
More...
|
almost 13 years ago
|