Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Leica .lei timestamp formatting #1508

Merged
merged 5 commits into from
Feb 18, 2015
Merged

Commits on Dec 26, 2014

  1. Revert to using java.text.SimpleDateFormat for retrieving timestamps

    Millisecond parsing in Joda has different results than with
    Date/SimpleDateFormat.  If the number of ms digits in the format string
    exceeds the number of ms digits in the date string, then zero padding
    happens on the wrong side (e.g. 93 becomes 930 instead of 093).  If
    the number of ms digits in the date string exceeds the number of ms
    digits in the format string, then parsing fails.  See
    JodaOrg/joda-time#62.
    
    Fixes #12117.
    melissalinkert committed Dec 26, 2014
    Configuration menu
    Copy the full SHA
    61db1c1 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2015

  1. Revert "Revert to using java.text.SimpleDateFormat for retrieving tim…

    …estamps"
    
    This reverts commit 61db1c1.
    melissalinkert committed Jan 16, 2015
    Configuration menu
    Copy the full SHA
    68ddb15 View commit details
    Browse the repository at this point in the history
  2. Leica: correct variable-length timestamps

    Fixes #12117.  Joda does not deal with variable-length millisecond
    values, so this parses the milliseconds separately.
    melissalinkert committed Jan 16, 2015
    Configuration menu
    Copy the full SHA
    224e675 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2015

  1. Configuration menu
    Copy the full SHA
    ab7bfba View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2015

  1. Minor code cleanup

    melissalinkert committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    c2c40d4 View commit details
    Browse the repository at this point in the history