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
4126
Sounds good to me, though I'd not actually had any problems on iOS with my iPad, curiously enough. I'm starting to wonder if iPad 1 / iOS 5.0 does things a bit differently to everyone else :-/
4127
Archived fixes / Re: Undefined index: start_from
« on March 22nd, 2012, 05:37 PM »
Quote from agent47 on March 22nd, 2012, 05:32 PM
Come on! you can't be that old now? :P
I'm 28. That's more than old enough to have a ~8 years of bank statements, credit card statements, payslips etc. that I don't need any more.
Quote from Pandos on March 22nd, 2012, 05:30 PM
when i write an reply, it should automatic save it as a draft any 30 seconds.
Yes, it's a touch broken at present. But also note that when a draft is saved, it does actually notify you under the 'post' button that a draft has been saved, and even gives you the option to remove it from there.
4128
Archived fixes / Re: Undefined index: start_from
« on March 22nd, 2012, 05:20 PM »
I'll look at it later on tonight if I remember. Currently coughing up good on paper dust from shredding years and years worth of old documents <_<
4129
Archived fixes / Re: Undefined index: start_from
« on March 22nd, 2012, 05:16 PM »
Happening to me. Primarily (only?) on blog boards.
4130
Commit it, deploy it, if it works, great, if not, we'll fix it :)
4131
Development blog / Re: Aftermath of the Great Deployment
« on March 22nd, 2012, 04:23 PM »
Quote
(Heck, yeah it's definitely so much more usable on a touch screen..!)
That's one of the single biggest reasons I implemented it, precisely because it is a pain to navigate even on an iPad, let alone an iPod/iPhone, across pages without it.
Quote
I'm sure I disabled it on the SMF version because, well, it sucked :P
Oh, and yes, prev/next topic sucked very badly. Not only was it unhelpful, I know users were confused by it because they thought it meant prev/next page.
4132
Development blog / Re: Aftermath of the Great Deployment
« on March 22nd, 2012, 03:53 PM »
Quote
Was in the demo, but here...? I'm not sure.
I was referring to the Pages: << prev [1] 2 >> bit ;)
Quote
Perhaps I disabled it in the SMF-based Wedge.org...?
Quite possibly.
4133
The hell?

Still, there's a remove all button now...
4134
Let me explain how it works under the hood, that might explain the behaviour you're seeing.

There is a timer started straight away, x second intervals (where the x is the admin setting, default 30). Nothing should happen, however, unless a keydown event is sent to the editor object, which sets a flag in the drafts object to indicate that next time the timer hits its interval, to make a save. The save is sent off, on return it clears that flag.

Theoretically, then, it should never be saving until there is something to save... with a variable amount of time between you typing and the first save (0-x seconds) but ~x seconds thereafter assuming constant typing.
4135
Bug reports / Re: Board order issues
« on March 22nd, 2012, 01:00 PM »
Quote
PRIMARY KEY (`board_order`,`id_board`), UNIQUE KEY `id_board_2` (`id_board`)
You've done exactly what I was speculating about: created a composite key on the board_order + id_board with a unique key on just the id_board to preserve other optimisations :)

Thanks for posting, that gives me a lot more reassurance about doing it in Wedge now :)
4136
Archived fixes / Re: IE8: menu broken (with fix)
« on March 22nd, 2012, 12:57 PM »
There's not really much reason to feel stupid... if it's not working, it's not working for a reason. Half the battle here is understanding what that reason is.

If it's because you have a totally alien configuration that's a monstrosity under the hood, we might not be able to do too much about it, but if it's reproducible and causing problems, the bigger the problem (or at least, the bigger the impact it has and the more reproduced it is) the more we can figure out WTF is the problem and fix it.
Quote
Holy crap... Thank you, Microsoft........ -_-
My sentiments exactly. This is why I've always been wary of IETester and ilk.
Quote
A few days ago I was wondering why I wasn't using the gradient filter on the main menu for IE...
Speaking of which, in my Weglas theme, it's actually broken in IE9 where the gradient just doesn't work. The CSS generated is correct (so it's not a WeCSS bug) but IE9 chooses to ignore it. I have no idea why, and I can't be arsed debugging IE9's stupid behaviour.
4137
Archived fixes / Re: IE8: menu broken (with fix)
« on March 22nd, 2012, 12:46 PM »
Native IE8 on WinXP (in a VM) does the same as TE's screenshot. Yay for IE9 supporting 'IE8 rendering'.
4138
Archived fixes / Re: Preparsing adds url bbc where it shouldn't
« on March 22nd, 2012, 12:39 PM »
It didn't as far as I remember.
4139
Bug reports / Re: Board order issues
« on March 22nd, 2012, 12:39 PM »
There are other issues with merely doing that, namely that it screws up other optimisations in the pile because MySQL considers a composite key from left to right.
4140
Archived fixes / Re: Preparsing adds url bbc where it shouldn't
« on March 22nd, 2012, 12:29 PM »
Quote
Meaning that the database DOES record the url tag in it. Which I find perfectly normal.
No, that's not normal. It's not supposed to do that. Take a look at SMF, it doesn't - it leaves the bare URL and processes it into url tags come parsing, not preparsing.