First time here? Check out the FAQ!

Miguel's profile - activity

2013-12-05 10:40:33 -0600 received badge Nice Answer ( source )
2013-06-09 16:41:55 -0600 received badge Famous Question (source)
2012-04-14 15:33:55 -0600 received badge Student (source)
2012-04-10 14:40:03 -0600 commented answer Why some times Answers are not shown after submit?

using memcached worked for me

2012-04-10 13:23:01 -0600 asked a question Why some times Answers are not shown after submit?

When I answer a question the answer is not shown after the submit or when I refresh a question page I can't see recent answers.

2012-04-04 15:42:38 -0600 received badge Nice Answer ( source )
2012-03-22 21:49:28 -0600 received badge Supporter (source)
2012-03-22 21:37:59 -0600 received badge Scholar ( source )
2012-03-16 14:47:21 -0600 answered a question Register URL not working in spanish translation

Translation for urls must not collide Changing the translation of "signup/" from "registrar/" to "alta/" solves the problem! #: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "registrar/" #: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "alta/"

2012-03-16 14:39:29 -0600 answered a question Why can't tranlsate "Ask Your Question" string?

makemessages doesn't process the templates very well

I used jinja2_makemessages as described here:

http://askbot.org/en/question/2480/how-to-translate-django-applications?answer=3360#answer-container-3360

and worked for me

2012-03-16 13:29:41 -0600 received badge Nice Answer ( source )
2012-03-16 13:28:13 -0600 received badge Self-Learner ( source )
2012-03-16 13:12:00 -0600 answered a question Why sometimes translation works and sometimes not?

I solved my issue doing this:

  1. I delete the compiled .mo files (they were compiled in another OS, maybe that was the problem?)

  2. re-compile the translations :)

2012-03-16 10:07:17 -0600 asked a question Why sometimes translation works and sometimes not?

I made two installations of Askbot one remote and one local, same files, same structure, etc... In the remote installation translation seems to work fine now, but in the local one some texts are translated and some not.

I already compiled the messages, etc.

Thanks!

2012-03-15 15:09:59 -0600 received badge Teacher ( source )
2012-03-15 12:53:40 -0600 answered a question problem of title is to long

changing forms.py:127 from:

elif encoded_value > self.max_length:

to:

elif len(encoded_value) > self.max_length:

solves the issue!