]> git.ipfire.org Git - thirdparty/moment.git/log
thirdparty/moment.git
11 years agoAdded component grunt task to fill component.json with lang files 1099/head
Iskren Chernev [Mon, 16 Sep 2013 10:38:08 +0000 (03:38 -0700)] 
Added component grunt task to fill component.json with lang files

11 years agoMerge pull request #1091 from icambron/feature/fix-node-repl
Iskren Ivov Chernev [Mon, 16 Sep 2013 10:19:17 +0000 (03:19 -0700)] 
Merge pull request #1091 from icambron/feature/fix-node-repl

Fix moment(new Date()) in Node REPL

11 years agoMerge pull request #1056 from ichernev/bugfix/fix-chinese-ampm
Iskren Ivov Chernev [Mon, 16 Sep 2013 10:14:05 +0000 (03:14 -0700)] 
Merge pull request #1056 from ichernev/bugfix/fix-chinese-ampm

Fixed wrong Chinese meridiem time

11 years agoChinese noon ends 12:30 1056/head
Iskren Chernev [Mon, 9 Sep 2013 00:03:42 +0000 (17:03 -0700)] 
Chinese noon ends 12:30

11 years agoFixed wrong Chinese meridiem time
Iskren Chernev [Sun, 8 Sep 2013 23:27:40 +0000 (16:27 -0700)] 
Fixed wrong Chinese meridiem time

Better implementation for #865

11 years agoMerge pull request #1089 from Xotic750/feature/noGlobal
Iskren Ivov Chernev [Mon, 16 Sep 2013 10:11:54 +0000 (03:11 -0700)] 
Merge pull request #1089 from Xotic750/feature/noGlobal

Allow AMD module loader to set noGlobal in config to prevent moment poll...

11 years agoMerge pull request #1092 from icambron/feature/fix-unpadded-datetimes
Iskren Ivov Chernev [Mon, 16 Sep 2013 09:45:42 +0000 (02:45 -0700)] 
Merge pull request #1092 from icambron/feature/fix-unpadded-datetimes

make iso parsing a bit stricter

11 years agoMerge pull request #1093 from Oire/feature/nl-decapitalization
Isaac Cambron [Mon, 16 Sep 2013 02:54:45 +0000 (19:54 -0700)] 
Merge pull request #1093 from Oire/feature/nl-decapitalization

Decapitalizing yesterday/today/tomorrow in Dutch, fixes #919

11 years agoRemoved the cached Math variables that should have been in a different branch 1089/head
Xotic750 [Sun, 15 Sep 2013 14:01:56 +0000 (16:01 +0200)] 
Removed the cached Math variables that should have been in a different branch

11 years agoDecapitalizing yesterday/today/tomorrow in Dutch, fixes #919 1093/head
Menelion Elensúle (Andre Polykanine) [Sun, 15 Sep 2013 11:31:30 +0000 (14:31 +0300)] 
Decapitalizing yesterday/today/tomorrow in Dutch, fixes #919

11 years agomake iso parsing a bit stricter 1092/head
Isaac Cambron [Sun, 15 Sep 2013 08:45:24 +0000 (04:45 -0400)] 
make iso parsing a bit stricter

11 years agobe smarter about deciding whether something is a date or not. fixes #1084 1091/head
Isaac Cambron [Sun, 15 Sep 2013 08:06:30 +0000 (04:06 -0400)] 
be smarter about deciding whether something is a date or not. fixes #1084

11 years agoMerge pull request #1059 from ianwremmel/develop
Iskren Ivov Chernev [Sun, 15 Sep 2013 04:36:36 +0000 (21:36 -0700)] 
Merge pull request #1059 from ianwremmel/develop

Support constructing durations from timestamps that do not include seconds

11 years agoMerge pull request #1086 from Xotic750/hotfix/unix-timestamp
Iskren Ivov Chernev [Sun, 15 Sep 2013 03:56:41 +0000 (20:56 -0700)] 
Merge pull request #1086 from Xotic750/hotfix/unix-timestamp

Fix isValid for Unix timestamp parser

11 years agoAllow AMD module loader to set noGlobal in config to prevent moment polluting the...
Xotic750 [Sun, 15 Sep 2013 00:13:48 +0000 (02:13 +0200)] 
Allow AMD module loader to set noGlobal in config to prevent moment polluting the global space.
Option has to be set ny the user otherwise everything loads as previously.

Loader would now look like this to choose noGlobal

/*jslint maxerr: 50, indent: 4, browser: true */

(function (global, undef) {
    "use strict";

    var projectString = "myProject",
        momentCDN = "//cdnjs.cloudflare.com/ajax/libs/moment.js/2.1.0/moment.min",
        momentString = "moment";

    (function (name, definition) {
        if (global.module !== undef && global.module.exports) {
            global.module.exports = definition(global.require(momentCDN));
        } else if (typeof global.define === "function" && global.define.amd) {
            var projectPaths = {};

            projectPaths[momentString] = momentCDN;
            global.require.config({
                paths: projectPaths
            });

            global.define(name, [momentString], definition);
        } else {
            global[name] = definition(global.moment);
        }
    }(projectString, function (moment) {
        delete global[momentString];

        moment.fn.newFunction = function () {
            // code
        };

        function MyFunction() {
            // code
        }

        return {
            "MyFunction": MyFunction,
            "momentPrivate": moment
        };
    }));
}(this));

requirejs(["myProject"], function (myProject) {
    "use strict";

    console.log("Private", myProject.momentPrivate);
    console.log("Global", window["moment"]);
});

11 years agoWrap empty string test in try catch 1086/head
Xotic750 [Sun, 15 Sep 2013 00:01:27 +0000 (02:01 +0200)] 
Wrap empty string test in try catch

11 years agoRemoved comments that jshint failed on
Xotic750 [Sat, 14 Sep 2013 23:56:38 +0000 (01:56 +0200)] 
Removed comments that jshint failed on

11 years agojshint fixes
Xotic750 [Sat, 14 Sep 2013 23:53:50 +0000 (01:53 +0200)] 
jshint fixes

11 years agoAdd unit tests
Xotic750 [Sat, 14 Sep 2013 23:50:29 +0000 (01:50 +0200)] 
Add unit tests

11 years agoMerge pull request #1087 from Xotic750/feature/normaliseUnits
Isaac Cambron [Sat, 14 Sep 2013 23:35:00 +0000 (16:35 -0700)] 
Merge pull request #1087 from Xotic750/feature/normaliseUnits

Added feature to expose normalizeUnits

11 years agoMerge pull request #974 from allaud/develop
Isaac Cambron [Sat, 14 Sep 2013 23:08:23 +0000 (16:08 -0700)] 
Merge pull request #974 from allaud/develop

Russian months recognition fixed

11 years agoUnit tests 1087/head
Xotic750 [Sat, 14 Sep 2013 23:08:20 +0000 (01:08 +0200)] 
Unit tests

11 years agoAdded feature to expose normalizeUnits
Xotic750 [Sat, 14 Sep 2013 23:04:36 +0000 (01:04 +0200)] 
Added feature to expose normalizeUnits

11 years agoFix isValid for Unix timestamp parser
Xotic750 [Sat, 14 Sep 2013 23:01:13 +0000 (01:01 +0200)] 
Fix isValid for Unix timestamp parser

11 years agoMerge pull request #1025 from mmozuras/feature/lt-lang
Isaac Cambron [Sat, 14 Sep 2013 21:13:43 +0000 (14:13 -0700)] 
Merge pull request #1025 from mmozuras/feature/lt-lang

Add Lithuanian (lt) translation

11 years agoMerge pull request #1037 from bangnk/develop
Isaac Cambron [Sat, 14 Sep 2013 21:08:24 +0000 (14:08 -0700)] 
Merge pull request #1037 from bangnk/develop

Add Vietnamese language

11 years agoMerge pull request #1082 from Oire/feature/rus-ukr-short-weekdays
Isaac Cambron [Sat, 14 Sep 2013 19:22:00 +0000 (12:22 -0700)] 
Merge pull request #1082 from Oire/feature/rus-ukr-short-weekdays

Corrected short weekdays in Russian and Ukrainian; see #999

11 years agoCorrected short weekdays in Russian and Ukrainian; see #999 1082/head
Menelion Elensúle (Andre Polykanine) [Sat, 14 Sep 2013 11:10:41 +0000 (14:10 +0300)] 
Corrected short weekdays in Russian and Ukrainian; see #999

11 years agoMake jshint happy
Iskren Chernev [Sat, 14 Sep 2013 10:51:19 +0000 (03:51 -0700)] 
Make jshint happy

11 years agoMerge pull request #1080 from wyantb/fix-1071
Iskren Ivov Chernev [Sat, 14 Sep 2013 08:32:11 +0000 (01:32 -0700)] 
Merge pull request #1080 from wyantb/fix-1071

Embed Language Tweaks

11 years agoFixed flaky min/max test
Iskren Chernev [Sat, 14 Sep 2013 07:52:29 +0000 (00:52 -0700)] 
Fixed flaky min/max test

11 years agoIgnore customlang embedded files 1080/head
Brian Wyant [Sat, 14 Sep 2013 01:28:40 +0000 (21:28 -0400)] 
Ignore customlang embedded files

11 years agoFail build if languages aren't defined as UMD
Brian Wyant [Sat, 14 Sep 2013 01:24:26 +0000 (21:24 -0400)] 
Fail build if languages aren't defined as UMD

11 years agoFix #1071 - allows embedding only one language
Brian Wyant [Sat, 14 Sep 2013 01:21:33 +0000 (21:21 -0400)] 
Fix #1071 - allows embedding only one language

11 years agorerolled to modify `aspNetTimeSpanJsonRegex` rather than introduce a new regex pattern 1059/head
Ian W. Remmel [Fri, 13 Sep 2013 23:18:59 +0000 (19:18 -0400)] 
rerolled to modify `aspNetTimeSpanJsonRegex` rather than introduce a new regex pattern

11 years agoMerge remote-tracking branch 'main/develop' into develop
Menelion Elensúle (Andre Polykanine) [Fri, 13 Sep 2013 18:41:15 +0000 (21:41 +0300)] 
Merge remote-tracking branch 'main/develop' into develop

11 years agoMerge branch 'feature/rus-ukr-am-pm' into develop
Menelion Elensúle (Andre Polykanine) [Fri, 13 Sep 2013 18:39:56 +0000 (21:39 +0300)] 
Merge branch 'feature/rus-ukr-am-pm' into develop

11 years agoMerge pull request #1072 from Oire/feature/rus-ukr-am-pm
Iskren Ivov Chernev [Fri, 13 Sep 2013 18:37:37 +0000 (11:37 -0700)] 
Merge pull request #1072 from Oire/feature/rus-ukr-am-pm

Added AM/PM support for Russian and Ukrainian

11 years agoSimplifying code as requested by @ichernev 1072/head
Menelion Elensúle (Andre Polykanine) [Fri, 13 Sep 2013 18:08:41 +0000 (21:08 +0300)] 
Simplifying code as requested by @ichernev

11 years agoAdding AM/PM support for Russian and Ukrainian
Menelion Elensúle (Andre Polykanine) [Thu, 12 Sep 2013 21:38:50 +0000 (00:38 +0300)] 
Adding AM/PM support for Russian and Ukrainian

11 years agoadded test to demonstrate <24 hours in addition to >24 hours
Ian Remmel [Thu, 12 Sep 2013 13:06:53 +0000 (09:06 -0400)] 
added test to demonstrate <24 hours in addition to >24 hours

11 years agofixed lint errors
Ian Remmel [Thu, 12 Sep 2013 12:59:31 +0000 (08:59 -0400)] 
fixed lint errors

11 years agoFixed typo in readme
Iskren Chernev [Thu, 12 Sep 2013 11:28:49 +0000 (04:28 -0700)] 
Fixed typo in readme

11 years agoBumping version to 2.2.1 2.2.1
Iskren Chernev [Thu, 12 Sep 2013 08:37:57 +0000 (01:37 -0700)] 
Bumping version to 2.2.1

11 years agoUpdated authors/contributors lists
Iskren Chernev [Thu, 12 Sep 2013 08:35:51 +0000 (01:35 -0700)] 
Updated authors/contributors lists

11 years agoFixed a bug in string_prototype test
Iskren Chernev [Thu, 12 Sep 2013 08:15:50 +0000 (01:15 -0700)] 
Fixed a bug in string_prototype test

11 years agoBumping version to 2.2.0 2.2.0
Iskren Chernev [Wed, 11 Sep 2013 09:42:20 +0000 (02:42 -0700)] 
Bumping version to 2.2.0

11 years agoFixed bug in creating moment with object
Iskren Chernev [Wed, 11 Sep 2013 09:28:38 +0000 (02:28 -0700)] 
Fixed bug in creating moment with object

11 years agoUse github.com/moment instead of github.com/timrwood repo
Tim Wood [Mon, 9 Sep 2013 21:49:34 +0000 (14:49 -0700)] 
Use github.com/moment instead of github.com/timrwood repo

11 years agoDelete min file 1037/head
bangnk [Mon, 9 Sep 2013 15:26:23 +0000 (22:26 +0700)] 
Delete min file

11 years agoMerge branch 'develop' of https://github.com/moment/moment into develop
bangnk [Mon, 9 Sep 2013 15:24:53 +0000 (22:24 +0700)] 
Merge branch 'develop' of https://github.com/moment/moment into develop

11 years agoAdd test file for vietnamese, fix some constants to be more meaningful in vietnamese
bangnk [Mon, 9 Sep 2013 15:24:46 +0000 (22:24 +0700)] 
Add test file for vietnamese, fix some constants to be more meaningful in vietnamese

11 years agofix(monthParse): fix exceptional case for russian month parsing 974/head
Anton Pleshivtsev [Mon, 9 Sep 2013 12:40:28 +0000 (19:40 +0700)] 
fix(monthParse): fix exceptional case for russian month parsing

11 years agoMerge branch 'feature/24-hour-time' into develop
Ian Remmel [Mon, 9 Sep 2013 07:48:45 +0000 (21:48 -1000)] 
Merge branch 'feature/24-hour-time' into develop

* feature/24-hour-time:
  changed tests to test greater than 24 hour timestamps
  converted to spaces
  Added 24-hour time support.
  Added tests for 24-hour time support.

11 years agochanged tests to test greater than 24 hour timestamps
Ian Remmel [Mon, 9 Sep 2013 07:48:31 +0000 (21:48 -1000)] 
changed tests to test greater than 24 hour timestamps

11 years agoconverted to spaces
Ian Remmel [Mon, 9 Sep 2013 07:45:31 +0000 (21:45 -1000)] 
converted to spaces

11 years agoAdded 24-hour time support.
Ian Remmel [Mon, 9 Sep 2013 07:44:47 +0000 (21:44 -1000)] 
Added 24-hour time support.

11 years agoAdded tests for 24-hour time support.
Ian Remmel [Mon, 9 Sep 2013 07:44:12 +0000 (21:44 -1000)] 
Added tests for 24-hour time support.

11 years agoMerge pull request #1057 from wyantb/moment+langs
Iskren Ivov Chernev [Mon, 9 Sep 2013 07:38:14 +0000 (00:38 -0700)] 
Merge pull request #1057 from wyantb/moment+langs

Allow creation of moment+langs.js

11 years agoMake jshint happy
Iskren Chernev [Mon, 9 Sep 2013 07:36:22 +0000 (00:36 -0700)] 
Make jshint happy

11 years agoConvert lang/hr.js to UMD
Iskren Chernev [Mon, 9 Sep 2013 07:34:37 +0000 (00:34 -0700)] 
Convert lang/hr.js to UMD

Somehow missed this file in #1012

11 years agoAllow creation of moment+langs.js 1057/head
Brian Wyant [Mon, 9 Sep 2013 00:20:46 +0000 (20:20 -0400)] 
Allow creation of moment+langs.js

moment+langs.js is a version of moment.js, prepackaged with all
languages.

11 years agoMerge branch 'develop' of github.com:moment/moment into develop
Iskren Chernev [Sun, 8 Sep 2013 23:02:19 +0000 (16:02 -0700)] 
Merge branch 'develop' of github.com:moment/moment into develop

Conflicts:
lang/da.js
lang/ru.js

11 years agoMerge pull request #1051 from kvakulo/da-lang-fix
Iskren Ivov Chernev [Sun, 8 Sep 2013 22:53:58 +0000 (15:53 -0700)] 
Merge pull request #1051 from kvakulo/da-lang-fix

Fix da lang: Months and days should be lowercase

11 years agoMerge pull request #1055 from icambron/create-with-object
Iskren Ivov Chernev [Sun, 8 Sep 2013 22:53:13 +0000 (15:53 -0700)] 
Merge pull request #1055 from icambron/create-with-object

create moments with objects

11 years agoMerge pull request #942 from borodean/feature/lang-ru-months-abbr
Iskren Ivov Chernev [Sun, 8 Sep 2013 18:23:09 +0000 (11:23 -0700)] 
Merge pull request #942 from borodean/feature/lang-ru-months-abbr

Makes month abbreviations be able to case in Russian

11 years agoMerge branch 'feature/umd-lang' into develop
Iskren Chernev [Sun, 8 Sep 2013 18:17:37 +0000 (11:17 -0700)] 
Merge branch 'feature/umd-lang' into develop

Conflicts:
lang/nb.js

11 years agoFixed indentation
Iskren Chernev [Sun, 8 Sep 2013 18:00:44 +0000 (11:00 -0700)] 
Fixed indentation

11 years agoMerge pull request #1033 from GabrielHedges/develop
Iskren Ivov Chernev [Sun, 8 Sep 2013 17:59:09 +0000 (10:59 -0700)] 
Merge pull request #1033 from GabrielHedges/develop

Made isPM function more compatible with IE8 Quirks Mode and IE7 Standard...

11 years agoMerge pull request #1042 from igorlima/fixing-travis-ci-badges
Iskren Ivov Chernev [Sun, 8 Sep 2013 17:56:14 +0000 (10:56 -0700)] 
Merge pull request #1042 from igorlima/fixing-travis-ci-badges

Fixing travis ci badges

11 years agofixed jshint issues 1055/head
Isaac Cambron [Sat, 7 Sep 2013 23:03:17 +0000 (19:03 -0400)] 
fixed jshint issues

11 years agocreate moments with objects
Isaac Cambron [Sat, 7 Sep 2013 22:44:29 +0000 (18:44 -0400)] 
create moments with objects

11 years agoFix da lang: Months and days should be lowercase 1051/head
Regin Larsen [Thu, 5 Sep 2013 11:18:11 +0000 (13:18 +0200)] 
Fix da lang: Months and days should be lowercase

11 years agoFixing travis ci badges 1042/head
Igor Lima [Tue, 3 Sep 2013 22:18:36 +0000 (19:18 -0300)] 
Fixing travis ci badges

11 years agoMerge pull request #1021 from icambron/hour-alignment-redux
Tim Wood [Tue, 3 Sep 2013 20:33:42 +0000 (13:33 -0700)] 
Merge pull request #1021 from icambron/hour-alignment-redux

Hour alignment redux

11 years agoMerge pull request #1022 from sigurdga/develop
Tim Wood [Tue, 3 Sep 2013 18:41:09 +0000 (11:41 -0700)] 
Merge pull request #1022 from sigurdga/develop

Updates to the norwegian bokmål translation

11 years agoAdd Vietnamese language
bangnk [Mon, 2 Sep 2013 07:55:03 +0000 (14:55 +0700)] 
Add Vietnamese language

11 years agoreview-based fixes 1021/head
Isaac Cambron [Mon, 2 Sep 2013 02:20:00 +0000 (22:20 -0400)] 
review-based fixes

11 years agoMerge pull request #1019 from bentaber/calendar-with-zone
Iskren Ivov Chernev [Thu, 29 Aug 2013 09:03:18 +0000 (02:03 -0700)] 
Merge pull request #1019 from bentaber/calendar-with-zone

Respect timezone settings for .calendar() format

11 years agoRevert "Merge pull request #1027 from recallfx/feature/LT-translation"
Iskren Chernev [Thu, 29 Aug 2013 08:48:28 +0000 (01:48 -0700)] 
Revert "Merge pull request #1027 from recallfx/feature/LT-translation"

This reverts commit a0d58f2ff217fb6faa9a874b517819b4ab8fd372, reversing
changes made to 9c14c8c24c8f368d1abb76530aef72f480aa0452.

11 years agoMerge pull request #1027 from recallfx/feature/LT-translation
Iskren Ivov Chernev [Thu, 29 Aug 2013 08:43:04 +0000 (01:43 -0700)] 
Merge pull request #1027 from recallfx/feature/LT-translation

Lithuanian translation

11 years agoMade isPM function compatible with IE8 Quirks Mode and IE7 Standards Mode 1033/head
Gabriel Hedges [Thu, 29 Aug 2013 00:22:57 +0000 (17:22 -0700)] 
Made isPM function compatible with IE8 Quirks Mode and IE7 Standards Mode

11 years agolinting 1019/head
bentaber [Mon, 26 Aug 2013 21:34:54 +0000 (15:34 -0600)] 
linting

11 years agoAdd additional .calendar() tests, relocate
bentaber [Mon, 26 Aug 2013 20:00:40 +0000 (14:00 -0600)] 
Add additional .calendar() tests, relocate

11 years agoMerge pull request #1020 from icambron/better-dst-fix
Tim Wood [Mon, 26 Aug 2013 18:48:27 +0000 (11:48 -0700)] 
Merge pull request #1020 from icambron/better-dst-fix

better fix for month parser issue

11 years agoAdd Lithuanian (lt) translation 1025/head
Mindaugas Mozūras [Sun, 25 Aug 2013 10:28:43 +0000 (13:28 +0300)] 
Add Lithuanian (lt) translation

11 years agoLithuanian translation 1027/head
recallfx [Sun, 25 Aug 2013 19:44:02 +0000 (22:44 +0300)] 
Lithuanian translation

11 years agoUpdates to the norwegian bokmål translation 1022/head
Sigurd Gartmann [Fri, 23 Aug 2013 08:34:49 +0000 (10:34 +0200)] 
Updates to the norwegian bokmål translation

Use ordinals for day of months in localized dates
Use uncapitalized letters in future and present strings
Abbreviate weekdays as two letters and a dot
Abbreviate month names as three letters and a dot, but leave short month
names in full length.

11 years agoname change and a some more thoroughness
Isaac Cambron [Fri, 23 Aug 2013 00:15:38 +0000 (20:15 -0400)] 
name change and a some more thoroughness

11 years agoadded hasAlignedHours
Isaac Cambron [Mon, 19 Aug 2013 06:42:09 +0000 (02:42 -0400)] 
added hasAlignedHours

11 years agobetter fix for month parser issue 1020/head
Isaac Cambron [Thu, 22 Aug 2013 23:51:59 +0000 (19:51 -0400)] 
better fix for month parser issue

11 years agoMerge pull request #1013 from elivero/develop
Tim Wood [Thu, 22 Aug 2013 18:58:26 +0000 (11:58 -0700)] 
Merge pull request #1013 from elivero/develop

Croatian (hr) translation

11 years agousing built-in uglify comment preservation with \! 1012/head
Tim Wood [Thu, 22 Aug 2013 18:43:34 +0000 (11:43 -0700)] 
using built-in uglify comment preservation with \!

11 years agoRespect timezone settings for .calendar() format
bentaber [Thu, 22 Aug 2013 04:03:33 +0000 (22:03 -0600)] 
Respect timezone settings for .calendar() format

Fixes #946

11 years agoInitial lang test for Croatian. 1013/head
Bojan Markovic [Tue, 20 Aug 2013 09:04:31 +0000 (11:04 +0200)] 
Initial lang test for Croatian.

11 years agoAdded Croatian (hr) translation.
Bojan Markovic [Tue, 20 Aug 2013 07:09:37 +0000 (09:09 +0200)] 
Added Croatian (hr) translation.

11 years agoremoving warning readme from source lang files
Tim Wood [Mon, 19 Aug 2013 22:15:12 +0000 (15:15 -0700)] 
removing warning readme from source lang files

11 years agoadding UMD for lang files and removing minified versions
Tim Wood [Mon, 19 Aug 2013 21:59:54 +0000 (14:59 -0700)] 
adding UMD for lang files and removing minified versions

11 years agoline endings
Tim Wood [Mon, 19 Aug 2013 21:15:44 +0000 (14:15 -0700)] 
line endings

11 years agoMerge pull request #998 from TalAter/hebrew-dual-form-fixed
Tim Wood [Mon, 19 Aug 2013 18:48:31 +0000 (11:48 -0700)] 
Merge pull request #998 from TalAter/hebrew-dual-form-fixed

Hebrew dual form fixed