First time here? Check out the FAQ!

pcompassion's profile - activity

4 years ago received badge Taxonomist
5 years ago received badge Famous Question (source)
5 years ago received badge Popular Question (source)
5 years ago received badge Famous Question (source)
6 years ago received badge Popular Question (source)
6 years ago received badge Famous Question (source)
7 years ago received badge Notable Question (source)
7 years ago received badge Popular Question (source)
8 years ago received badge Popular Question (source)
9 years ago received badge Notable Question (source)
9 years ago received badge Popular Question (source)
9 years ago marked best answer what is the relationship between 'thread' and 'question_post'?

Thread is a class that holds information that is specific to question_post (not other types of posts)?

Can you give another view/explanation about the relationship between the two?

I'd like to add ManyToMany relationships between question_post to question_post.
Should I make it in Thread or Post?

9 years ago marked best answer new type of post..

Hello

What do you think would be the best way to create a new type of 'Post'?
(other than question/answer/comment/tag_wiki/..)

Specifically, I'd like to add translate type.
It will have two texts/htmls/authors/edit_dates and etc, one for each language.
For example, english text -> korean text translate,
we would need one author field for english another for korean.

Please advise me how to add such a post type.

10 years ago received badge Famous Question (source)
10 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Famous Question (source)
11 years ago received badge Good Question (source)
11 years ago received badge Nice Question (source)
11 years ago asked a question How to turn on email validation?

I don't remember whether I turned it off or not, but I can sign up without email verification.

Is it turned off by default?

11 years ago asked a question word with `_` in doesn't appear correctly

hello_world should look like hello_world
but it apears as helloworld.

It seems it is interpreted as italic.
In latest github askbot.

11 years ago received badge Famous Question (source)
11 years ago commented answer Why does askbot use Jinja?

Why did Instagram choose Jinja2 instead of Django Templates?

At the time, it was simply more flexible than the built-in tempting language (inline python). In our initial experience it was also much (much) faster. However, I believe in recent releases of Django they’ve addressed many of these differences, so I’m not sure we’d necessarily use Jinja2 from the start today. http://www.forbes.com/sites/limyunghui/2012/04/09/inspiring-insights-by-instagram-ceo-kevin-systrom-the-man-who-built-a-1-billion-startup/2/ .. just found this link..

11 years ago asked a question How does user `unregister` himself?

How can a user unregister himself?

If it's not implemented,
How can an admin unregister a user so that he can't login anymore?

11 years ago received badge Nice Question (source)
11 years ago received badge Famous Question (source)
11 years ago asked a question markdown parser bug for '###title' ?
### Works
###Doesn't work

Can it be fixed?

works

###Doesn't work

11 years ago asked a question macro hides all other variables?

does macro hide all other variables passed from views?

11 years ago asked a question Do you create south migration files manually for User model change?

Suppose you add column to User by User.add_to_class('some_field', field_type)

How do you create a migration for it?

Manually create a migration file and edit it to correctly change auth_user model?

12 years ago commented question new type of post..
12 years ago received badge Critic ( source )
12 years ago commented answer link is displayed correctly in preview but not in actual post

sent a pull request for it

12 years ago commented answer link is displayed correctly in preview but not in actual post

http://en.wikipedia.org/wiki/JSON not shown correctly is because JS lacks some functionality which are present in server-side python?">JSON

12 years ago commented answer link is displayed correctly in preview but not in actual post

my original question had 'features that work in previewer but not after posted' Doesn't this mean the feature is missing in server part and we want to locate the relavant part in javascript and insert it in the markdown2 python code? (not markdown2->js as you mentioned)

12 years ago commented answer link is displayed correctly in preview but not in actual post

@Evgeny there's any relationship between askbot's markdown server side code and https://pypi.python.org/pypi/Markdown ? if not, is there a reason it has to be customized?