First time here? Check out the FAQ!

martin-bts's profile - activity

2020-11-21 11:28:20 -0500 received badge Necromancer ( source )
2020-10-27 10:34:35 -0500 answered a question askbot http port

Askbot is a Django app and requires a runtime, such as a webserver. How to configure listening ports is specific to your

2020-07-21 18:13:42 -0500 received badge Nice Answer ( source )
2019-12-06 04:22:08 -0500 received badge Notable Question (source)
2019-11-25 20:26:12 -0500 received badge Popular Question (source)
2019-11-22 02:33:47 -0500 received badge Famous Question (source)
2019-11-15 18:02:19 -0500 asked a question How do you create Django migrations for Askbot?

How do you create Django migrations for Askbot? In askbot/migrations there are (currently) 14 python scripts that set up

2019-07-19 05:28:26 -0500 edited answer Is askbot having code highlighting?

In theory, Askbot uses python-markdown2 so it can do everything described in the markdown2 wiki. However, the current co

2019-07-17 10:41:33 -0500 commented answer Is askbot having code highlighting?

From the fine manual: "You must have the pygments Python module installed for this to work."

2019-07-17 10:38:58 -0500 edited answer Is askbot having code highlighting?

In theory, Askbot uses python-markdown2 so it can do everything described in the markdown2 wiki. However, the current co

2019-07-16 02:10:22 -0500 received badge Enthusiast
2019-07-12 10:58:10 -0500 received badge Teacher ( source )
2019-07-12 08:44:21 -0500 commented answer failed to install(askbot-setup) in askbot 0.11.x

From the fine manual at https://docs.djangoproject.com/en/2.2/ref/databases/: Django supports MySQL 5.6 and higher.

2019-07-12 08:43:54 -0500 commented answer failed to install(askbot-setup) in askbot 0.11.x

From (the fine manual)[https://docs.djangoproject.com/en/2.2/ref/databases/]: Django supports MySQL 5.6 and higher.

2019-07-12 08:43:36 -0500 commented answer failed to install(askbot-setup) in askbot 0.11.x

From the fine manual: Django supports MySQL 5.6 and higher.

2019-07-10 17:40:09 -0500 commented answer Is askbot having code highlighting?

And as we can see in this particular case, this site applies highlighting to Python code if it can detect it. So I guess

2019-07-10 16:52:56 -0500 commented answer Is askbot having code highlighting?

And as we can see in this particular case, this site applies highlighting to Python code if it can detect it.

2019-07-10 16:52:05 -0500 commented answer Is askbot having code highlighting?

And as we can see in this particular case, this site does highlight Python code ....

2019-07-10 16:49:18 -0500 answered a question Is askbot having code highlighting?

In theory, Askbot uses python-markdown2 so it can do everything described in the markdown2 wiki. However, the current co

2019-07-10 14:40:30 -0500 received badge Editor ( source )
2019-07-10 14:40:30 -0500 edited answer failed to install(askbot-setup) in askbot 0.11.x

To install the current 0.11.x branch, the best approach is imitating the procedure used in the Dockerfile: install Ask

2019-07-10 14:38:46 -0500 answered a question failed to install(askbot-setup) in askbot 0.11.x

To install the current 0.11.x branch, the best approach is imitating the procedure used in the Dockerfile: install Ask

2019-07-03 23:21:22 -0500 received badge Notable Question (source)
2019-07-03 23:21:22 -0500 received badge Popular Question (source)
2019-07-01 09:48:20 -0500 received badge Famous Question (source)
2019-06-30 16:14:50 -0500 received badge Supporter ( source )
2019-06-30 14:51:02 -0500 received badge Student (source)
2019-06-30 14:50:24 -0500 marked best answer How does system to user messaging system works in Askbot?

In the context processors used for Askbot messages, i.e. askbot.user_messages.context_processors.user_messages messages get added to the context using get_and_delete_messages(). As the name foreshadows, this deletes messages from the session/the database.

If there are pending messages and there is an ajax request, for instance a user casts a vote, the context processor is run and the messages get fetched and deleted. I can't tell if the messages get returned with the ajax response, but I think they aren't. This means the messages are lost and won't be shown to the user. Is that correct? Or is there some facility that returns messages to the user and then the javascript on the client side takes care of rendering the messages?

2019-06-30 14:50:24 -0500 received badge Scholar ( source )
2019-06-30 14:16:50 -0500 asked a question How does system to user messaging system works in Askbot?

How does Askbot handle messages in ajax requests? In the context processors used for Askbot messages, i.e. askbot.user_m