Show Posts

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.

Messages - Arantor
7486
Features: Forward thinking / Re: UTF8 only!
« on May 7th, 2011, 10:43 PM »
That's why I was pretty determined up front to go UTF8 only.
7487
As per the thread where we talked about using jQuery, you can either use a local version, or use a choice of 3 CDNs.
7488
Features: Forward thinking / Re: MySQL only!
« on May 7th, 2011, 10:27 PM »
Except that you still have the issue of platform specific queries, because PDO doesn't rewrite queries.
7489
Features: Miscellaneous / Re: Gravatar support
« on May 7th, 2011, 10:25 PM »
Yes, but which is easier: entering an email address or copy/pasting a long, ugly link?
7490
It would be desirable for us not to get a cease and desist notice. We cannot and will not release a version until after SMF 2.0 and not before we are ready.

Besides, it already supports French too :whistle:
7491
Features / Re: Language Translation
« on May 7th, 2011, 02:38 PM »
And it's usually passable enough in quality to get the gist if not the detail of what's going on. But yeah, I don't really want to go too far into this if possible, at least not in the core; most forums are not multi-language.
7492
I believe I did actually, take a look in the draft settings page in Posts & Topics, defaulting to 7 days.
7493
Features: Forward thinking / Re: MySQL only!
« on May 7th, 2011, 01:54 PM »
Plus SMF/Wedge's version doesn't require two separate dependencies as it only uses the stock mysql client, as opposed to needing the PDO core plus the PDO-MySQL specific library.
7494
For those wondering, it's like the feature here only more intuitive and supports PMs.

Also note that it only saves if you actually type something, so instead of just saving every 30 seconds like this version does, it will only save if there's something new to change :)
7495
Other software / Re: SMF 2.0 final THIS MONTH?
« on May 7th, 2011, 10:33 AM »
I'm not averse to it *working* on IE6 but I don't really want to burn time making it look good.
7496
Features: Forward thinking / Re: UTF8 only!
« on May 7th, 2011, 10:13 AM »
Yeah, I'm running with posh keyboard with iPad for the next week (now up at parents-in-law for the week) so I can definitely get that typed up.
7497
Other software / Re: SMF 2.0 final THIS MONTH?
« on May 7th, 2011, 10:08 AM »
I'm referring to Illori.

As for IE6, if users will use that decade old pretender, they can expect it to look crap.
7498
Features: Forward thinking / Re: UTF8 only!
« on May 7th, 2011, 09:43 AM »
That sounds awesome (more that what I had in mind)!
7499
Other software / Re: SMF 2.0 final THIS MONTH?
« on May 7th, 2011, 09:10 AM »
On the nature of the team: yes, RC5 is "practically final" so it was a fair comment to make.

Yes, that lovely person who basically mini-moderates everything is a decent % of the comment I made recently about not really being right for the team, because all she is doing is not answering questions. Now, during my time, I did some of that (we all did) but her bluntness makes my bluntness look tame.

On PNGs: there are three reasons to use PNG over GiF: file size is usually smaller, the LZW patent and true colour support.

On the matter of file size, you can often tweak and gouge to make it smaller; that's one of the perks of variable encodings of lossless compression. Sometimes GIF will win but usually it doesn't. True colour support including alpha makes for prettier images but IE6 not supporting it without a hack made it painful. And yes, the LZW patent has expired at least in the US and most if not all of the European countries where it was registered.
7500
Features: Forward thinking / Re: MySQL only!
« on May 7th, 2011, 01:00 AM »
No, I haven't used MySQLi either, nor the newer mysqlnd (native driver).

What happened was, prior to 5.0, it was bundled and thus part of the source. In the case of 5.0+, it wasn't bundled, nor built by default but because it's then a dynamic linked library it's sort of on a technicality - it's then calling it through a defined interface rather than direct linking the code.

http://uk3.php.net/manual/en/faq.databases.php#faq.databases.mysql.php5 has more on it no longer being bundled - specifically, the PHP licence isn't strictly BSD/Apache licensed, but for the general use it makes no real difference.

As of 5.3.0, it's been replaced by the native driver (mysqlnd) and as such there is no physical requirement at all, so that's the future-proofed answer.