xaph's profile - activity

2017-07-05 12:45:01 -0500 received badge Notable Question (source)
2015-04-25 05:46:54 -0500 received badge Popular Question (source)
2013-05-10 21:46:16 -0500 received badge Nice Question (source)
2013-04-23 14:21:00 -0500 received badge Famous Question (source)
2013-04-17 23:55:56 -0500 received badge Student (source)
2013-04-17 15:31:34 -0500 commented answer What is the best way to extend askbot?

thanks for your interest :) I'm inspecting answer view now, I'll implement same pattern and send it to you soon.

2013-04-16 17:23:45 -0500 commented answer What is the best way to extend askbot?

Using a custom form and saving extra data is exactly what i want but I couldn't see such a hook. https://github.com/ASKBOT/askbot-devel/blob/master/askbot/views/writers.py#L244 this line takes attributes one by one and I don't know where extra data is going.

I can override ask view and write my own but I don't want lose future updates.

2013-04-16 17:01:01 -0500 commented answer What is the best way to extend askbot?

I want to store extra data in askbot_post not in thread. I can handle model and template but couldn't save my new item to db because views.writers.ask don't make mass assignment. How could I save my item without create a new view?

also did you mention https://github.com/ASKBOT/askbot-devel/blob/master/askbot/views/readers.py#L71 this questions with extra content generators?

thanks for your reply :)

2013-04-16 15:56:46 -0500 commented answer Bug: SocketServer.py timed out errors on console

I am also having this issue with ubuntu 12.04 & python 2.7

2013-04-16 14:25:17 -0500 asked a question What is the best way to extend askbot?

We want to customize the question pages of askbot. Our process will add a new integer field to question. What is the best way to do it?

1- Using askbot as a python package: override view, template, urls of asking question and also migrate post model. 2- Getting and customizing askbot-develop.

which way is better and maintenable?