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 - tensai

Pages: 1 [2] 3 4 5
16
Feature Requests and Issues / Re: Febaure Requests
« on: April 19, 2013, 06:54:32 AM »
Quote
Disregard my last post.  I did find the problem you reported.  It was related to a specific team configuration setting.  A page refresh (F5) should fix it.

Problem solved. Thanks for the quick fix.

17
Feature Requests and Issues / Re: Febaure Requests
« on: April 18, 2013, 12:13:55 PM »
Quote
RE: original feature requests 4 and 5.  There is a new button next to all the GLP Location entry boxes.  This will open a little dialog that allows the entry (and display) of all the coordinate formats that MM supports.  It will do the automatic conversion to all the various formats when one value is changed.  Hopefully this will help.

I tested this out (and really like it!), but I'm running into what seems to be a bug. When I enter a decimal degrees value, MM converts it to degrees minutes seconds, matching the separate degrees minutes seconds field. Tried it on multiple missions and it's consistent, but curiously it works correctly in the sandbox. Something weird about my team perhaps?

18
Feature Requests and Issues / Re: Febaure Requests
« on: April 17, 2013, 09:05:57 PM »
Quote
The MM GPS location fields will take and try to understand most formats that can be typed into these fields, and it will do the conversion if it understands the point.  For some tips see: http://www.radishworks.com/MissionManager/Help.htm#GPS Coordinates  Having dealt with your exact issue MANY times on missions I have found that this is a REALLY hard problem to solve - even with a conversion page.   I could write a small book on the problems I've seen with different coordinate systems and what happens when people don't understand the points they are given.  I'm thinking about a little popup window for all the GPS location fields might help.  I'd be interested in any other ideas anyone might have.

I hear you. The way MM handles it is about the best you could hope for, IMHO. The popup could help. What if the popup contained the various formats for the coordinate (ddd.dddd, UTM, etc)?

19
General Mission Manager Discussion / Re: InstaMapper Shut Down
« on: April 16, 2013, 07:21:22 AM »
I can definitively state that the developer of Beacon would be more than happy to accept contributions. The code is GPLv2 and is all posted at Github.

20
Mission Manager has reached version 10.0!  You will now find the following new features:

  • New Equipment screen that allows you to track your team's equipment, vehicles, gear, etc.


I really like the equipment screen. Any chance of an import feature?

21
Feature Requests and Issues / Re: Calendar time bug
« on: March 13, 2013, 01:39:35 PM »
Yup, working great now. Although truth be told, I kind of liked having an end time of 1360. :)

Thanks for your quick fix.

22
Feature Requests and Issues / Re: Calendar time bug
« on: March 13, 2013, 10:29:09 AM »
Steps to reproduce:

  • Open up the calendar
  • Click Add New Event
  • Enter 0730 for the start time. The end time will automatically populate with 0830.
  • Change the Duration to 45 minutes

At this point, the end time will be 0875.

I looked at the Javascript that my browser has. This would seem to be the applicable section (I did a little reformatting to make it easier for me to read):

Code: [Select]
if (rw_GetTimeInt(rw_MakeTimeString(idEndTime.value).substr(2, 2)) + iMin >= 60){
iMin -= 60;
idDurationHr++;
}
idTime = rw_MakeTimeString(rw_GetTimeInt(idTime.value) + 100 * idDurationHr + iMin);

Is that the correct version? As I read it, that would sure seem to be effective.

23
Feature Requests and Issues / Re: Calendar time bug
« on: March 12, 2013, 02:11:02 PM »
Originally tested in Firefox. Cleared cache and forced reload of the page. Also tried in Chrome, and in an Incognito window just for fun. Even loaded it up on a computer which has never used Mission Manager before. Still seeing the issue.


24
Feature Requests and Issues / Calendar time bug
« on: March 12, 2013, 08:55:26 AM »
This should be a fun little one for you. :)

On the calendar, I had an event scheduled from 0800 to 1400 and the duration was set to 6 hours 0 minutes. I changed the start time to 0730 but wanted to leave the end time at 1400. That part went fine. Just to be safe, I changed the duration to 6 hours 30 minutes. When I did, the end time was re-calculated to 1360. Technically I suppose that's correct.

And if I bump it to 6 hours 45 minutes, it sets the end time to 1375.

25
Announcements / Re: New Team Level API Key
« on: March 02, 2013, 06:36:30 PM »
Perfect timing. I was just getting ready to start using a Google Calendar with a member API key, but this is even better.

I found that the API key leaks out in the Google Calendar, so I wrote a simple Perl CGI to hide it. So far it's working great. Posting here in case anybody else wants to do the same.

Code: [Select]
#!/usr/bin/perl

use strict;
use warnings;
use LWP::Simple;

print "Content-Type: text/calendar; charset=utf-8\r\n";
print "Pragma: no-cache\r\n";
print "Cache-Control: no-cache, must-revalidate\r\n";
print "Content-Disposition: inline; filename=calendar.ics\r\n";
print "\r\n";

my $apikey = 'YOUR-API-KEY-GOES-HERE';
my $content = get("https://www.radishworks.com/MissionManager/api.php?Get=calICS&APIKey=$apikey");
print $content;

26
Announcements / Re: Mission Manager v1.2
« on: February 27, 2013, 11:49:48 AM »
The robots.txt needs to be updated to allow API access to the new name. Google Calendar is refusing to load iCal data as it is.

27
Feature Requests and Issues / Error creating API key
« on: February 26, 2013, 07:19:01 PM »
When attempting to create a new API key, I receive the following error:

Code: [Select]
Fatal error: Call to undefined function mcrypt_encrypt() in /home/radish99/public_html/MissionManager/Utilities.php on line 6044

28
Feature Requests and Issues / Re: Time Keep appears to be Gone
« on: February 21, 2013, 04:35:03 PM »
Mine looks great. Thanks for your quick response.

29
Feature Requests and Issues / Re: Time Keep appears to be Gone
« on: February 21, 2013, 09:29:22 AM »
It looks like all the default timekeeping entries got restored, e.g. "Training in Poway"

30
You can also see them on the Members page. The certifications with an asterisk (*) next to them are required for the member to be Field Qualified.

Pages: 1 [2] 3 4 5