summaryrefslogtreecommitdiffstats
path: root/askbot/doc
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-28 02:23:46 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-28 02:23:46 -0400
commit336c7e3ae202efad4fa10e242f66f0f35b6c1a07 (patch)
treeffd6c272a9cdb7bd05d9076222a1fd354d964b32 /askbot/doc
parent4a06eed283eb00558d78dc8725e0c10e14e448a4 (diff)
downloadaskbot-336c7e3ae202efad4fa10e242f66f0f35b6c1a07.tar.gz
askbot-336c7e3ae202efad4fa10e242f66f0f35b6c1a07.tar.bz2
askbot-336c7e3ae202efad4fa10e242f66f0f35b6c1a07.zip
added management command apply_hinted_tags
Diffstat (limited to 'askbot/doc')
-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 |
+---------------------------------+-------------------------------------------------------------+