Search found 38 matches

by sulfur
Mon Dec 09, 2013 4:25 pm
Forum: Development
Topic: Attendance oddity...
Replies: 6
Views: 58667

Attendance oddity...

I was playing around with the attendance screen and noticed something very unusual today: attendance.png What's odd here is that there's a game missing at the start of that from Oct 19, 2013, and the Nov 2, 2013 game has been doubled. I put some quick and dirty debugging code into the view (views/te...
by sulfur
Wed Dec 04, 2013 9:09 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 138772

Re: Stat tracking ideas/etc...

I'm not convinced that start/end times are the way to go, for some sports (ie Basketball, Hockey, indoor soccer, etc) often book timeslots that are a bit longer than the game and would likely use part of that time slot for changeover/etc. I should have some time this weekend to look at this, since f...
by sulfur
Tue Dec 03, 2013 2:53 pm
Forum: Development
Topic: Miscellaneous "bugs"
Replies: 4
Views: 51244

Re: Miscellaneous "bugs"

Another small issue that crops up on my home machine... app_controller.php line 712 (or so): $this->_addMenuItem ('List All', array('controller' => 'people'), 'Players'); If you're in one of the player menus, this seems to make the "List All" default to using the same entry that you're alr...
by sulfur
Mon Dec 02, 2013 9:51 am
Forum: Development
Topic: Miscellaneous "bugs"
Replies: 4
Views: 51244

Miscellaneous "bugs"

This is for misc bugs or problems. Small stuff that's too tiny for their own separate discussions.

In the github repository, under tmp/cache, there needs to be a 'queries' directory with an 'empty' file in it.
by sulfur
Sun Dec 01, 2013 10:19 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 138772

Re: Stat tracking ideas/etc...

For admins -- no links. They can add stats (with the right manual links) without issue. I made some code changes to add in the ability, but when submitting stats for the games of the teams the admin belongs to, the URL has to have the "team:#" bit removed from the end to add details for bo...
by sulfur
Sun Dec 01, 2013 8:45 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 138772

Re: Stat tracking ideas/etc...

Found a bug/problem in stat tracking for Goals Against Avg in soccer. config/schema/data/stat_types_data.php, line ~3788 array( 'sport' => 'soccer', 'positions' => 'goalkeeper', 'name' => 'Goals Against', 'internal_name' => 'Goals Against', 'abbr' => 'GA', 'sort' => 440, 'class' => 'stat_games', 'ty...
by sulfur
Wed Nov 27, 2013 10:47 pm
Forum: Administration
Topic: "notices/next" error...
Replies: 3
Views: 61525

"notices/next" error...

So, I've got a test implementation of Zuluru installed on a PHP 5.3(something or other) on my local machine (OSX box) and have been playing around with the configuration while I wait for my webhost to upgrade PHP to something non-stone-age. I was logged into my account (set as admin and captain of m...
by sulfur
Thu Nov 21, 2013 11:05 am
Forum: Development
Topic: Standings + Streaks
Replies: 1
Views: 55022

Standings + Streaks

I'm not sure if this is quite the right place to put it, but seemed logical... I was noticing that, according to Zuluru, a "streak" is only multiple results that are consecutive and identical (ie, 2W, 2T, 2L, etc). Would it not be more useful to see that even if it were only one game (ie, ...
by sulfur
Fri Nov 15, 2013 3:53 pm
Forum: Development
Topic: Stat tracking ideas/etc...
Replies: 11
Views: 138772

Stat tracking ideas/etc...

controllers/games_controller.php ~line 2358 if (!League::hasSpirit($game['Division']['League'])) { $this->Session->setFlash(__('That league does not have stat tracking enabled!', true), 'default', array('class' => 'info')); $this->redirect('/'); } "Stat" tracking there should likely be &qu...
by sulfur
Tue Nov 12, 2013 11:16 pm
Forum: Development
Topic: Date/Time bug fixes...
Replies: 4
Views: 101675

Re: Date/Time bug fixes...

Yes, I did find the "public" setting (and have set that up -- though the site isn't actually public yet, despite the fact that our season is 4 weeks old already! :) ). It does approach more the ideal that we're looking for. My next step (once everything else works) is to figure out how to ...