This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
6901
Features / Re: New revs - Public comments
« on July 29th, 2011, 01:27 AM »
The reason for using strtolower done like that is for accuracy. JavaScript's one is way more aware of things like UTF-8 than PHP's has been for a long time, and I suspect with PHP 5.4 this will have to be revisited anyway.
But ultimately the two have to be done exactly the same for password hashing to actually work, so JS has to then proceed to use the exact same case adjuster even if the browser could do a "better" job of it.
I suspect the different methods were used because browsers of the day couldn't be relied upon to be consistent. Heck, there's whole bushels of pre IE6 code even in 2.0 (like the popup crap for quoting posts)
Quote I had actually fixed that locally, though I've not committed what I have because I'm not happy with it yet, concerning how users select timezones. Still not sure about that, maybe I should just commit what I have (which is to use a timezone column in the user's table and fallback to the offset for the time being)
But ultimately the two have to be done exactly the same for password hashing to actually work, so JS has to then proceed to use the exact same case adjuster even if the browser could do a "better" job of it.
I suspect the different methods were used because browsers of the day couldn't be relied upon to be consistent. Heck, there's whole bushels of pre IE6 code even in 2.0 (like the popup crap for quoting posts)
Posted: July 28th, 2011, 07:10 PM
! If a timezone has no slash in it (such as 'UTC'), the timezone retrieval code will generate a warning. (ManageSettings.php)
6902
Other software / Re: "Paid for" shit.
« on July 28th, 2011, 10:53 PM »
The logged out behaviour should not be the case in 2.0 final; that was patched after I filed a bug on it.
6903
Off-topic / Re: Dial Up BBS
« on July 28th, 2011, 07:34 PM »
What, that system that Napoleon reportedly claimed on his deathbed to have been the one thing he regretted in his life, forcing it on people...?
Could be worse, here we can't make our minds up!
Could be worse, here we can't make our minds up!
6904
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 05:57 PM »Sure, I wasn't saying otherwise. I just don't like it when someone tries to talk for everyone
Wiki + threading suits some kinds of types of sites, mostly when you have the wiki for an article and the threading for its comments, rather than anything else. Forums shouldn't do everything, they should concentrate on facilitating discussion, which a wiki doesn't (it primarily aims for content distribution).
As for threading, it seems to me that it's stronger on blogs than on forums, but it does engender a strange turning of the clock back since it harks back to how Usenet etc works.
6905
Other software / Re: "Paid for" shit.
« on July 28th, 2011, 05:38 PM »
You don't need to log into someone's account to change their avatar, any suitably permissioned person can change someone's avatar.
As for the log in time, anyone with DB access can do that, in a variety of ways.
As for the log in time, anyone with DB access can do that, in a variety of ways.
6906
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 05:37 PM »
I think threaded view has a place, and some forums absolutely swear by it. You can also tell which users regularly use threaded-view sites when visiting a flat-view forum.
I'm not sure there isn't a place for threading in Wedge, but I'm not sure there is either, really. Needs more work, I think.
I'm not sure there isn't a place for threading in Wedge, but I'm not sure there is either, really. Needs more work, I think.
6907
Development blog / Re: Now with 97% more visuals!
« on July 28th, 2011, 05:33 PM »on how to use symbols that the brain automagically recognizes for what they are meant to be without ever being taught
6908
Other software / Re: "Paid for" shit.
« on July 28th, 2011, 05:31 PM »Why is a bully a bully?
Why do normally calm and rational people swarm a victim while others assist?
So yeah who knows? With logs and records that can be easily altered or deleted without leaving a trace there is no clear answer.
6909
Other software / Re: "Paid for" shit.
« on July 28th, 2011, 03:35 PM »
The avatar changing story is one that's been going around a while - and every time the team have denied it because there wasn't anything in the log... except that avatar changes are not actually logged in the profile log, so there's no way to prove or disprove who changed it. (And if you don't believe me, check out Profile-Modify.php, in profileSaveAvatarData, and the entry for avatar_choice in loadProfileFields() in the same file, log_change is not declared as true.)
It is possible then for the team to alter the avatar on an account, to teach someone a lesson as it were, which is the claim made.
It is possible then for the team to alter the avatar on an account, to teach someone a lesson as it were, which is the claim made.
6910
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 03:29 PM »
She gave up. After making it clear she wasn't even reading my posts, she promptly asked for an ignore button and was denied one and hasn't said anything since. I think she's headed off to vBulletin, she'll find their atmosphere even more friendly than ours.
6911
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 02:05 PM »
I've been accused of (and guilty of, to be fair) many things. But this one is new to me.
6912
Other software / Re: "Paid for" shit.
« on July 28th, 2011, 01:58 PM »
Ask yourself: why would he have reason to bullshit over something like this given what he was doing for SMF beforehand?
6913
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 01:55 PM »
I linked it in the discussion we had in the private boards about the features in question.
http://meaningles.com/home/index.php/topic,64.msg291.html#msg291 - reply 23 onwards since # links are broken for some reason.
http://meaningles.com/home/index.php/topic,64.msg291.html#msg291 - reply 23 onwards since # links are broken for some reason.
6914
Other software / Re: Wedge and SMF directions
« on July 28th, 2011, 12:37 PM »
As mentioned elsewhere, there was an epilogue accusing me of misogyny and prejudice against her, followed by blazing hypocrisy on her part. It was pretty epic, actually.
6915
Features / Re: New revs - Public comments
« on July 28th, 2011, 09:17 AM »* encodeURIComponent() has been supported as far back as IE 5.5, so there's no reason to use SMF's way of emulating it
* php_strtr uses charAt when it could use [] instead. It's a bit faster, which is good in long loops. (script.js)
I'm letting them be for now because they're testing for %u in the URL, which only happens in escape()'d strings