Jtrain's profile - activity
3 years ago | received badge | Notable Question (source) |
3 years ago | received badge | Popular Question (source) |
3 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 | Famous Question (source) |
9 years ago | received badge | Famous Question (source) |
9 years ago | marked best answer | feeds/rss path not appended to askboturl Google just hit our site and all the 404 errors (which turned into 500 errors for another reason) got me digging into the problem.... We serve our askbot instance from a subdirectory url (like /forum/questions instead of /questions) The correct setting for that is ASKBOT_URL = 'forum/'
And this works well for all of the urls except the feeds url. The feeds url seems to be hardcoded to /feeds/rss in our installation. I can see in the |
10 years ago | received badge | Famous Question (source) |
10 years ago | received badge | Notable Question (source) |
10 years ago | received badge | Famous Question (source) |
11 years ago | received badge | Famous Question (source) |
12 years ago | marked best answer | Spam in user profiles We have some users signing up for an account and putting spam in their profile description for the SEO links. I can already "block" those users, but how can I remove the profile from public view so it isn't indexed? |
12 years ago | received badge | Famous Question (source) |
12 years ago | answered a question | Is there a way to set a default karma level on new users Here are some screenshots I took that follow @Doug5280's procedure for changing the Karma level. Once you know where to look, it really isn't that hard. |
12 years ago | received badge | Good Question (source) |
12 years ago | received badge | Nice Question (source) |
12 years ago | asked a question | Activity indicator when posting a comment I've had a few people complaining that comments don't work on internet explorer. However I see that statement inside of a comment! What I think might be happening is that the ajax is taking a long time to return after writing a comment. Until the ajax returns, the user isn't sure whether anything is happening at all. Can we put a ajax spinner on the comment until it comes back? Is this a good or needed feature? |
12 years ago | received badge | Popular Question (source) |
12 years ago | received badge | Good Answer ( source ) |
12 years ago | commented answer | Does Math like f(x)=e−x work on askbot? i=√−1 |
12 years ago | received badge | Nice Answer ( source ) |
12 years ago | received badge | Nice Question (source) |
12 years ago | asked a question | Google Oauth request email The current openauth implementation in deps/django_authopenid does try to request email and nickname, but it isn't the correct way to tickle google if you want to retrieve the user's email. I've submitted a patch that does two things:
https://github.com/jtrain/askbot-devel/commit/8898ddf36a457306ebffb6891429830df0827de5 |
12 years ago | commented answer | External http references in css and js files when serving askbot via ssl I've found that there are still http references for:
I've made a branch from current master that selects the secure version of these: |
12 years ago | asked a question | Comments "see more" doesn't show up in explorer Hello, I've had lots of comments on a single question but on Internet Explorer version 8 (haven't checked 9) the show/more comments doesn't appear. There is a javascript error in the this code: $(document).ready(function(){
if (Modernizr.history) {
// history management works!
} else {
// no history support :(
//hash = unescape(window.location.hash).replace('#','').split("?")[0]
hash = History.unescapeHash(window.location.hash).replace('#','').split("?")[0]
if (hash.substring(0,11)==askbot['urls']['questions']){
url = hash
}else{
url = askbot['urls']['questions']+hash
}
if (hash !== ''){
window.location = 'http://'+window.location.host+url
}
}
// focus input on the search bar endcomment
$('#keywords').focus();
animateHashes();
})
It looks like |
12 years ago | commented answer | Allow admin to post questions under faked accounts @Evgeny switch accounts feature is brilliant. Would really simplify things a lot. |
12 years ago | commented answer | Allow admin to post questions under faked accounts @Evgeny I like what you've done with the code. Thumbs up |
12 years ago | received badge | Favorite Question (source) |
12 years ago | received badge | Nice Question (source) |
12 years ago | asked a question | Do blocked users get email updates? I use the blocked user to effectively delete someone without their account being actually removed (e.g. they were a spammer). Would that blocked account's email address continue to get emails from askbot? |
12 years ago | edited answer | Suggestions for antispam measures? I just went through an exercise of removing the spam from the profile sections. Sneaky spammers putting links to really unrelated websites. Here is the query that i used update auth_user set about = '' where reputation = 1 and about != '';
idea What if we disallow users to edit the "about" and "website" sections of their profile unless they have greater than 1 (or configurable) reputation. Some alternative/supplementary ideas:
|
13 years ago | received badge | Famous Question (source) |
13 years ago | commented answer | Allow admin to post questions under faked accounts This is how it works: http://youtu.be/I66Owlsiixs. |
13 years ago | received badge | Great Question (source) |
13 years ago | commented question | Tracking user signups with Google Analytics What about changing the redirect url for sign up to something like /thanks-for-signing-up |
13 years ago | commented answer | Allow admin to post questions under faked accounts Thanks for the pointers @Evgeny. Will start small (Questions) and build from there. |
13 years ago | commented answer | Allow admin to post questions under faked accounts If I were to write something that does this (since I need it myself) where is the best place to put the code? I'd like for it to be contributed back into the mainline - if we agree the feature would be a useful part of askbot. |
13 years ago | received badge | Good Question (source) |
13 years ago | received badge | Nice Question (source) |
13 years ago | asked a question | Allow admin to post questions under faked accounts When reddit was starting, the two redditors posted lots of material under faked accounts. They had a special form for admin users that asked for
and if that username didn't already exist it created it. They credit this with kickstarting their community. The day they didn't need to fake content is the day they were happiest because they knew the community was taking off. Is anyone interested in doing something similar with their askbot installations? (edit) https://github.com/jtrain/askbot-devel/commit/a4445bf35f18b017cf7c9ccb2daf0893253844ae Anyone that wants to follow along, this fork has a working implementation for:
but not
(edit) Here it is in action! http://youtu.be/I66Owlsiixs |
13 years ago | received badge | Teacher ( source ) |