martin-bts's profile - activity

4 years ago received badge Necromancer ( source )
4 years ago 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

4 years ago received badge Nice Answer ( source )
5 years ago received badge Notable Question (source)
5 years ago received badge Popular Question (source)
5 years ago received badge Famous Question (source)
5 years ago 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

5 years ago 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

5 years ago commented answer Is askbot having code highlighting?

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

5 years ago 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

5 years ago received badge Enthusiast
6 years ago received badge Teacher ( source )
6 years ago 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.

6 years ago 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.

6 years ago commented answer failed to install(askbot-setup) in askbot 0.11.x

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

6 years ago 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

6 years ago 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.

6 years ago commented answer Is askbot having code highlighting?

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

6 years ago 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

6 years ago received badge Editor ( source )
6 years ago 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

6 years ago 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

6 years ago received badge Notable Question (source)
6 years ago received badge Popular Question (source)
6 years ago received badge Famous Question (source)
6 years ago received badge Supporter ( source )
6 years ago received badge Student (source)
6 years ago 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?

6 years ago received badge Scholar ( source )
6 years ago 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