- From: <bugzilla@jessica.w3.org>
- Date: Fri, 07 Dec 2012 04:47:09 +0000
- To: public-webplatform-bugs@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=20164 --- Comment #5 from Alex Komoroske <komoroske@google.com> --- I just checked with Yaron Koren, creator of Semantic Forms. Here's what he had to say: ----- I assume you're talking about the issue where internal objects get sorted as strings, instead of numbers (there are a few different topics on that page). That's true, and someone else once complained about it before - and offered a solution; padding the number, so that it's "001", "002", etc. That way, the sorting problem doesn't come up until you have 1,000 items on the page. :) I didn't pay that much attention to the issue before, but it's true that it's annoying. So I'll make this change to the SIO code, and it'll go out in the next release. You can do this in your version of the code, too - in the file SemanticInternalObjects_body.php, just change line 42 from: return $this->mMainTitle->getDBkey() . '#' . $this->mIndex; to: return $this->mMainTitle->getDBkey() . '#' . sprintf( '%03d', $this->mIndex ); Then, as soon as any page with that problem is re-saved, the problem should go away. -- You are receiving this mail because: You are the QA Contact for the bug.
Received on Friday, 7 December 2012 04:47:14 UTC