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 - Nao
4951
The Pub / Re: Features
« on June 7th, 2012, 02:29 PM »
Nope. Even the feature board only has the changelog up to rev 700 or 750... Hoping that one day someone will volunteer to go through the rest of them and compile an additional list ;)

There's a topic in the misc feature board that has a list of minor changes like you'd like. Up to a year ago at least...
4952
Off-topic / Re: Will be gone for 3 weeks.
« on June 7th, 2012, 01:50 PM »
Enjoy the Googleplex! ;)
4953
The Pub / Re: Downtime!?
« on June 6th, 2012, 06:04 PM »
Server issue in this case...
4954
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 06:03 PM »
It's simple enough: the user name (in topic pages) is ABOVE the post, and there's no message counter below it. The date is on the right side. There is no permalink to the post, either.
4955
Just try it here and look at the admin page...
4956
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 03:40 PM »
Yup...
4957
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 02:38 PM »
Hence my original reply...

Perhaps it always worked for him, but he chose to go Weaving at some point during his mobile tests, and I can't do anything for him...
But if he's logged out (a guest), and has cookies disabled, then it SHOULD work...
4958
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 02:18 PM »
Look at the strtolower............. :whistle:
4959
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 01:21 PM »
Quote from Dragooon on June 6th, 2012, 01:16 PM
Code: (Class-MoDe.php) [Select]
if (strpos($ua, $device) !== false)
return true;
Shouldn't that be
Code: (Replace) [Select]
if (preg_match('/' . $device . '/i', $ua))
return true;
?
No... This is an array of short strings that are lowercased, and the user agent is lowercased at this point, too. There's no point in wasting time compiling a regex for that. I'm just scanning the user agent for these strings. It could be faster to do a global regex match for the entire list of devices, but I did some tests earlier and it was actually slower... (Yes, a single preg_match was slower than dozens of strpos calls...)
Maybe it has changed since I did my first tests, but I doubt so.
Quote
Plus I don't see samsung/bada in there?
Because it's not committed yet. Currently on wedge.org there's an additional '|samsung|' in the 'generic' list. It should return 0 for ziycon (start of the string), which is !== false (but not != false of course), and thus should return true overall...
4960
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 01:09 PM »
It's no fun anymore. :(
4961
Features / Re: Badges and the displaying thereof
« on June 6th, 2012, 11:52 AM »
Anyone?
Posted: June 6th, 2012, 10:16 AM

That's the problem these days. I'll start a larger project under suggestion from others, and then I'm on my own to finish it... :(
4962
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 11:50 AM »
Yup... And/or log out ;)
4963
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 11:46 AM »
Oh yeah, forgot to suggest logging off :)
4964
Added English and French questions to registration here.
Logged out.
Switched to French.
Clicked Register (well, in French.)
Confirmed agreement...

Question shows up in English at the end of the page, even though the rest is in French.

I'd flag this as a bug ;)
4965
Archived fixes / Re: Mobile Version
« on June 6th, 2012, 09:20 AM »
Well it should be working then... Very odd.