summaryrefslogtreecommitdiffstats
path: root/askbot/doc/source
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/doc/source')
-rw-r--r--askbot/doc/source/changelog.rst1
-rw-r--r--askbot/doc/source/management-commands.rst5
2 files changed, 6 insertions, 0 deletions
diff --git a/askbot/doc/source/changelog.rst b/askbot/doc/source/changelog.rst
index 85a7015e..48afb5ea 100644
--- a/askbot/doc/source/changelog.rst
+++ b/askbot/doc/source/changelog.rst
@@ -3,6 +3,7 @@ Changes in Askbot
Development version
-------------------
+* Added management command `apply_hinted_tags` to batch-apply tags from a list
* Added hovercard on the user's karma display in the header
* Added option to hide ad blocks from logged in users
* Applied Askbot templates to the settings control panel
diff --git a/askbot/doc/source/management-commands.rst b/askbot/doc/source/management-commands.rst
index cc5e952f..da93dcb5 100644
--- a/askbot/doc/source/management-commands.rst
+++ b/askbot/doc/source/management-commands.rst
@@ -25,6 +25,11 @@ The bulk of the management commands fall into this group and will probably be th
| `add_admin <user_id>` | Turn user into an administrator |
| | `<user_id>` is a numeric user id of the account |
+---------------------------------+-------------------------------------------------------------+
+| `apply_hinted_tags | Apply tags to all questions in batch given the list of tags |
+| --tag-names <file>` | provided with a file. The file must contain tags - |
+| | one per line. If many tags match - only the most frequent |
+| | will be selected. |
++---------------------------------+-------------------------------------------------------------+
| `remove_admin <user_id>` | Remove admin status from a user account - the opposite of |
| | the `add_admin` command |
+---------------------------------+-------------------------------------------------------------+