Search found 240 matches

by GregS
Wed Dec 04, 2013 9:32 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 142614

Re: Stat tracking ideas/etc...

Good point. I know that our local Ultimate club takes changeover into account with the time slots. For example, if we have a field from 7-10pm, the game slots will typically be 7-7:55, 8-8:55 and 9-9:55. But not everyone would do it that way, and I just now realized while typing this that any sport ...
by GregS
Wed Dec 04, 2013 7:25 pm
Forum: Development
Topic: Miscellaneous "bugs"
Replies: 4
Views: 52361

Re: Miscellaneous "bugs"

Both fixed now in Github. Thanks!
by GregS
Wed Dec 04, 2013 7:23 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 142614

Re: Stat tracking ideas/etc...

I believe that these have all been fixed now. Let me know if you still have problems with any of them. The issue of making the game length configurable is a bigger task. The best option might be to use the game start and end times, as we have that information already. This would even allow it to han...
by GregS
Wed Dec 04, 2013 7:11 pm
Forum: Administration
Topic: "notices/next" error...
Replies: 3
Views: 63177

Re: "notices/next" error...

Can you add the following at the top of notices_controller.php and see if it fixes this?

Code: Select all

function publicActions() {
	return array('next', 'viewed');
}
by GregS
Sun Dec 01, 2013 10:39 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 142614

Re: Stat tracking ideas/etc...

Yes, I'm pretty sure there's a comment in there somewhere (on the site, not in the code) about the requirement to enter a stat for someone to be recognized as having played the game. But I can't find it right now in a quick look. You can enter a 0 in any one column; this is recognized as distinct fr...
by GregS
Sun Dec 01, 2013 8:52 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 142614

Re: Stat tracking ideas/etc...

Good catches. Stats have only really been used so far in Ultimate, so it's not surprising that there's a few things that have slipped through. I'll look at these in more depth this week. On the point about admins not being able to submit stats, are they actively restricted from doing so, or do they ...
by GregS
Thu Nov 28, 2013 1:12 am
Forum: Administration
Topic: "notices/next" error...
Replies: 3
Views: 63177

Re: "notices/next" error...

There shouldn't need to be a view for that. It should only ever be called internally via requestAction. I think that what's happening here is just really bad timing where your initial page load is while the session is valid, but then it expires before the requestAction happens, which in turn causes ...
by GregS
Thu Nov 21, 2013 5:36 pm
Forum: Development
Topic: Standings + Streaks
Replies: 1
Views: 56667

Re: Standings + Streaks

This is actually by design. It's not considered a "streak" until you've done it twice. Streaks are displayed in views/elements/leagues/standings/*/team.ctp, and there's an explicit check the for > 1, which could be eliminated or, better, connected to a feature that enables or disables this...
by GregS
Wed Nov 20, 2013 8:52 pm
Forum: Administration
Topic: Editing name errors
Replies: 3
Views: 11331

Re: Editing name errors

As we determined through emails, it appears that there is a difference in order of initialization of base and parent classes between 5.0 and 5.2 which will account for these various bugs. As such, I've changed the install process to require at least version 5.2 of PHP. I expect that this limitation ...
by GregS
Wed Nov 20, 2013 8:45 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 142614

Re: Stat tracking ideas/etc...

Whoops! That should be "League::hasStats", not "League::hasSpirit". Fix pushed to github. On the other point, admins do generally have permission to do anything, but links might be missing. (This might be accidental or on purpose; in a couple of places I opted not to include link...