]>
git.ipfire.org Git - thirdparty/moment.git/log
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
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"]);
});
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
Isaac Cambron [Sat, 14 Sep 2013 21:08:24 +0000 (14:08 -0700)]
Merge pull request #1037 from bangnk/develop
Add Vietnamese language
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
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
Iskren Chernev [Sat, 14 Sep 2013 10:51:19 +0000 (03:51 -0700)]
Make jshint happy
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
Iskren Chernev [Sat, 14 Sep 2013 07:52:29 +0000 (00:52 -0700)]
Fixed flaky min/max test
Brian Wyant [Sat, 14 Sep 2013 01:28:40 +0000 (21:28 -0400)]
Ignore customlang embedded files
Brian Wyant [Sat, 14 Sep 2013 01:24:26 +0000 (21:24 -0400)]
Fail build if languages aren't defined as UMD
Brian Wyant [Sat, 14 Sep 2013 01:21:33 +0000 (21:21 -0400)]
Fix #1071 - allows embedding only one language
Menelion Elensúle (Andre Polykanine) [Fri, 13 Sep 2013 18:41:15 +0000 (21:41 +0300)]
Merge remote-tracking branch 'main/develop' 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
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
Menelion Elensúle (Andre Polykanine) [Fri, 13 Sep 2013 18:08:41 +0000 (21:08 +0300)]
Simplifying code as requested by @ichernev
Menelion Elensúle (Andre Polykanine) [Thu, 12 Sep 2013 21:38:50 +0000 (00:38 +0300)]
Adding AM/PM support for Russian and Ukrainian
Iskren Chernev [Thu, 12 Sep 2013 11:28:49 +0000 (04:28 -0700)]
Fixed typo in readme
Iskren Chernev [Thu, 12 Sep 2013 08:37:57 +0000 (01:37 -0700)]
Bumping version to 2.2.1
Iskren Chernev [Thu, 12 Sep 2013 08:35:51 +0000 (01:35 -0700)]
Updated authors/contributors lists
Iskren Chernev [Thu, 12 Sep 2013 08:15:50 +0000 (01:15 -0700)]
Fixed a bug in string_prototype test
Iskren Chernev [Wed, 11 Sep 2013 09:42:20 +0000 (02:42 -0700)]
Bumping version to 2.2.0
Iskren Chernev [Wed, 11 Sep 2013 09:28:38 +0000 (02:28 -0700)]
Fixed bug in creating moment with object
Tim Wood [Mon, 9 Sep 2013 21:49:34 +0000 (14:49 -0700)]
Use github.com/moment instead of github.com/timrwood repo
bangnk [Mon, 9 Sep 2013 15:26:23 +0000 (22:26 +0700)]
Delete min file
bangnk [Mon, 9 Sep 2013 15:24:53 +0000 (22:24 +0700)]
Merge branch 'develop' of https://github.com/moment/moment into develop
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
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
Iskren Chernev [Mon, 9 Sep 2013 07:36:22 +0000 (00:36 -0700)]
Make jshint happy
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
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.
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
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
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
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
Iskren Chernev [Sun, 8 Sep 2013 18:17:37 +0000 (11:17 -0700)]
Merge branch 'feature/umd-lang' into develop
Conflicts:
lang/nb.js
Iskren Chernev [Sun, 8 Sep 2013 18:00:44 +0000 (11:00 -0700)]
Fixed indentation
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...
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
Isaac Cambron [Sat, 7 Sep 2013 23:03:17 +0000 (19:03 -0400)]
fixed jshint issues
Isaac Cambron [Sat, 7 Sep 2013 22:44:29 +0000 (18:44 -0400)]
create moments with objects
Regin Larsen [Thu, 5 Sep 2013 11:18:11 +0000 (13:18 +0200)]
Fix da lang: Months and days should be lowercase
Igor Lima [Tue, 3 Sep 2013 22:18:36 +0000 (19:18 -0300)]
Fixing travis ci badges
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
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
bangnk [Mon, 2 Sep 2013 07:55:03 +0000 (14:55 +0700)]
Add Vietnamese language
Isaac Cambron [Mon, 2 Sep 2013 02:20:00 +0000 (22:20 -0400)]
review-based fixes
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
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 .
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
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
bentaber [Mon, 26 Aug 2013 21:34:54 +0000 (15:34 -0600)]
linting
bentaber [Mon, 26 Aug 2013 20:00:40 +0000 (14:00 -0600)]
Add additional .calendar() tests, relocate
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
Mindaugas Mozūras [Sun, 25 Aug 2013 10:28:43 +0000 (13:28 +0300)]
Add Lithuanian (lt) translation
recallfx [Sun, 25 Aug 2013 19:44:02 +0000 (22:44 +0300)]
Lithuanian translation
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.
Isaac Cambron [Fri, 23 Aug 2013 00:15:38 +0000 (20:15 -0400)]
name change and a some more thoroughness
Isaac Cambron [Mon, 19 Aug 2013 06:42:09 +0000 (02:42 -0400)]
added hasAlignedHours
Isaac Cambron [Thu, 22 Aug 2013 23:51:59 +0000 (19:51 -0400)]
better fix for month parser issue
Tim Wood [Thu, 22 Aug 2013 18:58:26 +0000 (11:58 -0700)]
Merge pull request #1013 from elivero/develop
Croatian (hr) translation
Tim Wood [Thu, 22 Aug 2013 18:43:34 +0000 (11:43 -0700)]
using built-in uglify comment preservation with \!
bentaber [Thu, 22 Aug 2013 04:03:33 +0000 (22:03 -0600)]
Respect timezone settings for .calendar() format
Fixes #946
Bojan Markovic [Tue, 20 Aug 2013 09:04:31 +0000 (11:04 +0200)]
Initial lang test for Croatian.
Bojan Markovic [Tue, 20 Aug 2013 07:09:37 +0000 (09:09 +0200)]
Added Croatian (hr) translation.
Tim Wood [Mon, 19 Aug 2013 22:15:12 +0000 (15:15 -0700)]
removing warning readme from source lang files
Tim Wood [Mon, 19 Aug 2013 21:59:54 +0000 (14:59 -0700)]
adding UMD for lang files and removing minified versions
Tim Wood [Mon, 19 Aug 2013 21:15:44 +0000 (14:15 -0700)]
line endings
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
Tim Wood [Mon, 19 Aug 2013 18:48:11 +0000 (11:48 -0700)]
Merge pull request #1007 from icambron/cloning-with-utc
force moment.utc() to use utc
Tim Wood [Mon, 19 Aug 2013 18:21:40 +0000 (11:21 -0700)]
Merge pull request #1011 from icambron/expand-localized-in-parser
Expand localized tokens in the parser.
Tim Wood [Mon, 19 Aug 2013 18:19:26 +0000 (11:19 -0700)]
Merge pull request #1010 from icambron/pacific-apia
move test to avoid DST weirdness in Samoa
Tim Wood [Mon, 19 Aug 2013 17:44:12 +0000 (10:44 -0700)]
Merge pull request #1008 from icambron/half-hour-offsets
fixing zone test for half hour offsets
Tim Wood [Mon, 19 Aug 2013 17:34:08 +0000 (10:34 -0700)]
Merge pull request #1006 from icambron/simpler-month-parse
use the second day of each month to find the month name
Tim Wood [Mon, 19 Aug 2013 16:21:32 +0000 (09:21 -0700)]
Merge pull request #1003 from floydpink/feature/malayalam-language
Malayalam language
Tim Wood [Mon, 19 Aug 2013 16:19:52 +0000 (09:19 -0700)]
Merge pull request #1002 from Oire/feature/ukr-short-months
Corrected short months and weekdays in Ukrainian; fixes #1001
Tim Wood [Mon, 19 Aug 2013 16:16:06 +0000 (09:16 -0700)]
Merge pull request #995 from kalehv/develop
Add Marathi language support
Isaac Cambron [Mon, 19 Aug 2013 08:19:42 +0000 (04:19 -0400)]
Expand localized tokens in the parser. Fixes #665.
Isaac Cambron [Mon, 19 Aug 2013 07:12:25 +0000 (20:12 +1300)]
move test to avoid pacific-apia DST weirdness
Isaac Cambron [Mon, 19 Aug 2013 06:43:39 +0000 (02:13 -0430)]
fixing zone test for half hour offsets
Isaac Cambron [Mon, 19 Aug 2013 05:50:10 +0000 (01:50 -0400)]
force moment.utc() to use utc
Isaac Cambron [Mon, 19 Aug 2013 03:10:05 +0000 (06:10 +0300)]
use the second day of each month to find the month name
Floyd Pink [Thu, 15 Aug 2013 17:27:33 +0000 (17:27 +0000)]
deault dow and doy are just fine
Floyd Pink [Thu, 15 Aug 2013 16:14:48 +0000 (16:14 +0000)]
edited out a few unsafe characters
Floyd Pink [Thu, 15 Aug 2013 15:06:32 +0000 (15:06 +0000)]
added some tests as well modeled off of hi.js
Oire [Thu, 15 Aug 2013 13:50:43 +0000 (16:50 +0300)]
Corrected short months and weekdays in Ukrainian; fixes #1001
Tal Ater [Wed, 14 Aug 2013 23:05:14 +0000 (02:05 +0300)]
Added spaces around plus sign, to satisfy jshint.
Tal Ater [Wed, 14 Aug 2013 23:03:14 +0000 (02:03 +0300)]
Added author line.
Tal Ater [Wed, 14 Aug 2013 22:47:34 +0000 (01:47 +0300)]
Added Hebrew dual form for hours, days, months and years
Floyd Pink [Wed, 14 Aug 2013 20:22:22 +0000 (20:22 +0000)]
added ml.js
Harshad Kale [Tue, 13 Aug 2013 18:59:53 +0000 (13:59 -0500)]
match months short names
Harshad Kale [Tue, 13 Aug 2013 18:57:05 +0000 (13:57 -0500)]
months names
Harshad Kale [Tue, 13 Aug 2013 18:52:07 +0000 (13:52 -0500)]
a few word changes
Harshad Kale [Tue, 13 Aug 2013 18:36:50 +0000 (13:36 -0500)]
Add Marathi
Tim Wood [Mon, 12 Aug 2013 17:52:00 +0000 (10:52 -0700)]
Merge pull request #985 from ichernev/feature/normalize-lang-codes
Normalize language identifiers as described in #963
Iskren Chernev [Fri, 9 Aug 2013 09:02:36 +0000 (02:02 -0700)]
Normalize language identifiers as described in #963
Tim Wood [Thu, 8 Aug 2013 19:04:34 +0000 (12:04 -0700)]
Merge pull request #982 from ichernev/fix-prototype-constructor
Moment, Duration and Language objects now have constructor property
Tim Wood [Thu, 8 Aug 2013 18:42:28 +0000 (11:42 -0700)]
Merge pull request #983 from ichernev/improved-grunt-zones
grunt zones with TZ and zone.tab
Iskren Chernev [Wed, 7 Aug 2013 08:22:37 +0000 (01:22 -0700)]
Fixed a few comments
Iskren Chernev [Wed, 7 Aug 2013 08:20:04 +0000 (01:20 -0700)]
grunt zones with TZ and zone.tab