geekofalltrades's profile - activity
2016-01-27 13:38:43 -0600 | received badge | Famous Question (source) |
2016-01-27 13:38:43 -0600 | received badge | Notable Question (source) |
2016-01-27 13:38:43 -0600 | received badge | Popular Question (source) |
2016-01-27 13:38:20 -0600 | received badge | Famous Question (source) |
2016-01-27 13:37:29 -0600 | received badge | Famous Question (source) |
2016-01-27 13:37:29 -0600 | received badge | Notable Question (source) |
2016-01-27 13:37:29 -0600 | received badge | Popular Question (source) |
2014-11-10 13:28:41 -0600 | commented answer | How can I get Askbot emails to print to the console? Probably something in the project setup, then - I'll look into it. |
2014-11-06 16:53:05 -0600 | asked a question | How can I get Askbot emails to print to the console? I'm running Askbot as an app on a larger project in a development environment. The |
2014-09-26 11:34:37 -0600 | received badge | Editor (source) |
2014-09-26 11:29:07 -0600 | asked a question | Decoupling 'login/signup to post' from django-authopenid I've ripped out django-authopenid for the project I'm working with, as it already has an auth system. I discovered pretty recently that the 'login/signup to post' option was coupled to Askbot's forked django-authopenid. As a result, I had to re-implement that functionality separately. My implementation works by redirecting to a view after login that looks up the logged-out content by a uuid and posts it, then redirects to it. I can contribute my implementation back, but there are notes in the code that suggest that the problem is being worked on already. My implementation doesn't clean the old code out of django-authopenid, opting instead to circumvent it. Also, I wrote a class-based view for the implementation, which clashes with the rest of Askbot's function-based views. For the benefit of future readers, the functionality being discussed is the ability to write a question or an answer while logged out, then log in to have it posted. That functionality currently doesn't work unless you use the django-authopenid package that ships with Askbot. |
2014-09-26 11:21:34 -0600 | answered a question | Adding askbot to existing app, column auth_user.status does not exist What do the contents of your settings.py file look like? Specifically, the Askbot monkey-patches the hell out of User. As a result, it needs to come pretty high up in the It's also interesting that you have I've been working full time for the last three months on getting Askbot plugged into an existing project. In my case, the existing project behaved so poorly with the monkey-patch that I had to fork the Askbot source and undo it. Integrating Askbot is not easy; before you get in too deep, you might want to consider whether it would be possible for you to have Askbot run as a separate project. Good luck. |
2014-09-03 15:02:44 -0600 | asked a question | "undefined must have > 10 characters" On my Askbot site, entering fewer than ten characters in the "Please enter your question" form field results in an error message reading, "undefined must have > 10 characters." This problem exists in the master branch, not in the latest tagged release (0.7.49). In the latest tagged release, the string "question must have > %s characters" is hardcoded. In the master branch, however, the string reads "%(question)s must have > %(length)s characters". The code attempts to draw the value of "question" from from |
2014-08-26 11:00:38 -0600 | received badge | Organizer (source) |
2014-08-26 10:45:52 -0600 | received badge | Enthusiast |
2014-08-25 18:46:09 -0600 | asked a question | CachedStaticFilesStorage and /media/style/tinymce I'm integrating Askbot into an existing project that uses the CachedStaticFilesStorage backend for the staticfiles app. Whenever I try to run This error occurs because the CachedStaticFilesStorage backend attempts to replace file paths in CSS ...and promptly fails, because Tinymce's styles are also found in Why is it that Tinymce's styles have been copied to |
2014-08-20 17:48:51 -0600 | received badge | Scholar ( source ) |
2014-08-15 18:14:47 -0600 | received badge | Supporter ( source ) |
2014-08-15 02:20:52 -0600 | received badge | Student (source) |
2014-08-14 11:35:13 -0600 | asked a question | For Discussion: Updating Askbot for USE_TZ=True in Django>=1.4 I've been working on integrating Askbot with a commercial product developed in Django 1.5.8. A major sticking point I ran into was the use of timezone-aware datetime objects in the existing product, which cause the "Can't subtract offset-naive and offset-aware datetimes" exception. (I can't post links, but search for it on this forum, and you'll find at least one thread.) I've created a fix. It was a basically a find-and-replace operation, replacing all instances of I could contribute this fix back, but it would force dependency updates. Django's ...but I'm hesitant to do so, because a lot of the work I've had to do in getting Askbot to work in Django 1.5.8 has been undoing or working around prior patches. I would rather contribute work that moves Askbot forward. |