├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── Content ├── Prettify │ ├── Themes │ │ ├── bootstrap.css │ │ ├── desert.css │ │ ├── doxy.css │ │ ├── sons-of-obsidian.css │ │ └── sunburst.css │ └── prettify.css ├── bootstrap │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── LICENSE.txt ├── MomentDatepicker.csproj ├── MomentDatepicker.sln ├── README.md ├── Scripts ├── Prettify │ ├── lang-apollo.js │ ├── lang-basic.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-dart.js │ ├── lang-erlang.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-llvm.js │ ├── lang-lua.js │ ├── lang-matlab.js │ ├── lang-ml.js │ ├── lang-mumps.js │ ├── lang-n.js │ ├── lang-pascal.js │ ├── lang-proto.js │ ├── lang-r.js │ ├── lang-rd.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tcl.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── prettify.js │ └── run_prettify.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-2.0.3.intellisense.js ├── jquery-2.0.3.js ├── jquery-2.0.3.min.js ├── jquery-2.0.3.min.map ├── knockout-2.3.0.debug.js ├── knockout-2.3.0.js ├── moment-with-locales.js ├── moment-with-locales.min.js ├── moment.i18n │ ├── all.min.js │ ├── bg.js │ ├── ca.js │ ├── cv.js │ ├── da.js │ ├── de.js │ ├── en-ca.js │ ├── en-gb.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fi.js │ ├── fr-ca.js │ ├── fr.js │ ├── gl.js │ ├── he.js │ ├── hu.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── jp.js │ ├── ko.js │ ├── kr.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sv.js │ ├── tr.js │ ├── zh-cn.js │ └── zh-tw.js ├── moment.js ├── moment.min.js ├── site.js ├── site.js.map ├── site.min.js ├── site.min.js.map ├── site.ts ├── typings │ ├── bootstrap │ │ └── bootstrap.d.ts │ ├── jquery │ │ └── jquery.d.ts │ ├── knockout │ │ ├── knockout.amd.d.ts │ │ └── knockout.d.ts │ ├── moment │ │ ├── moment-node.d.ts │ │ └── moment.d.ts │ └── underscore │ │ └── underscore.d.ts ├── underscore.js ├── underscore.min.js └── underscore.min.map ├── bower.json ├── index.html ├── moment-datepicker ├── datepicker.css ├── datepicker2.css ├── moment-datepicker-ko.js ├── moment-datepicker.d.ts ├── moment-datepicker.js ├── moment-datepicker.min.js └── moment-datepicker.min.js.map ├── nuget ├── MomentDatepicker.nuspec ├── pack.cmd └── pack.sh ├── packages.config ├── packages ├── Bootstrap.Typescript.Definitions.1.0.0 │ ├── Bootstrap.Typescript.Definitions.1.0.0.nupkg │ ├── Bootstrap.Typescript.Definitions.1.0.0.nuspec │ └── content │ │ └── Scripts │ │ └── d.ts │ │ └── bootstrap │ │ └── bootstrap.d.ts ├── Knockout.Typescript.Definitions.1.0.0 │ ├── Knockout.Typescript.Definitions.1.0.0.nupkg │ ├── Knockout.Typescript.Definitions.1.0.0.nuspec │ └── content │ │ └── Scripts │ │ └── d.ts │ │ └── knockout │ │ └── knockout.d.ts ├── Moment.Typescript.Definitions.1.0.0 │ ├── Moment.Typescript.Definitions.1.0.0.nupkg │ ├── Moment.Typescript.Definitions.1.0.0.nuspec │ └── content │ │ └── Scripts │ │ └── d.ts │ │ └── moment │ │ └── moment.d.ts ├── Moment.js.2.10.6 │ ├── Content │ │ └── Scripts │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment.js │ │ │ └── moment.min.js │ └── Moment.js.2.10.6.nupkg ├── NuGet.CommandLine.2.2.1 │ └── tools │ │ └── Microsoft.Build.dll ├── NuGet.CommandLine.2.7.1 │ ├── NuGet.CommandLine.2.7.1.nupkg │ ├── NuGet.CommandLine.2.7.1.nuspec │ └── tools │ │ └── NuGet.exe ├── Prettify.3.3.04.2013 │ ├── Prettify.3.3.04.2013.nupkg │ ├── Prettify.3.3.04.2013.nuspec │ └── content │ │ ├── Content │ │ └── Prettify │ │ │ ├── Themes │ │ │ ├── desert.css │ │ │ ├── doxy.css │ │ │ ├── sons-of-obsidian.css │ │ │ └── sunburst.css │ │ │ └── prettify.css │ │ └── Scripts │ │ └── Prettify │ │ ├── lang-apollo.js │ │ ├── lang-basic.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-dart.js │ │ ├── lang-erlang.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-llvm.js │ │ ├── lang-lua.js │ │ ├── lang-matlab.js │ │ ├── lang-ml.js │ │ ├── lang-mumps.js │ │ ├── lang-n.js │ │ ├── lang-pascal.js │ │ ├── lang-proto.js │ │ ├── lang-r.js │ │ ├── lang-rd.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tcl.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.js │ │ └── run_prettify.js ├── Twitter.Bootstrap.3.0.0 │ ├── Twitter.Bootstrap.3.0.0.nupkg │ ├── Twitter.Bootstrap.3.0.0.nuspec │ └── content │ │ ├── Content │ │ ├── bootstrap │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── Scripts │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── Underscore.Typescript.Definitions.1.0.1 │ ├── Underscore.Typescript.Definitions.1.0.1.nupkg │ ├── Underscore.Typescript.Definitions.1.0.1.nuspec │ └── content │ │ └── Scripts │ │ └── d.ts │ │ └── underscore │ │ └── underscore.d.ts ├── bootstrap.TypeScript.DefinitelyTyped.0.0.5 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── bootstrap │ │ │ └── bootstrap.d.ts │ ├── bootstrap.TypeScript.DefinitelyTyped.0.0.5.nupkg │ └── bootstrap.TypeScript.DefinitelyTyped.0.0.5.nuspec ├── jQuery.2.0.3 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery-2.0.3-vsdoc.js │ │ │ ├── jquery-2.0.3.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ └── jquery-2.0.3.min.map │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ ├── jquery-2.0.3.intellisense.js │ │ └── uninstall.ps1 │ ├── jQuery.2.0.3.nupkg │ └── jQuery.2.0.3.nuspec ├── jquery.TypeScript.DefinitelyTyped.0.3.0 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── jquery │ │ │ └── jquery.d.ts │ ├── jquery.TypeScript.DefinitelyTyped.0.3.0.nupkg │ └── jquery.TypeScript.DefinitelyTyped.0.3.0.nuspec ├── jquery.Typescript.Definitions.1.0.0 │ ├── content │ │ └── Scripts │ │ │ └── d.ts │ │ │ └── jquery │ │ │ └── jquery.d.ts │ ├── jquery.Typescript.Definitions.1.0.0.nupkg │ └── jquery.Typescript.Definitions.1.0.0.nuspec ├── knockout.TypeScript.DefinitelyTyped.0.3.2 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── knockout │ │ │ ├── knockout.amd.d.ts │ │ │ └── knockout.d.ts │ ├── knockout.TypeScript.DefinitelyTyped.0.3.2.nupkg │ └── knockout.TypeScript.DefinitelyTyped.0.3.2.nuspec ├── knockoutjs.2.3.0 │ ├── Content │ │ └── Scripts │ │ │ ├── knockout-2.3.0.debug.js │ │ │ └── knockout-2.3.0.js │ ├── knockoutjs.2.3.0.nupkg │ └── knockoutjs.2.3.0.nuspec ├── moment.TypeScript.DefinitelyTyped.1.1.6 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── moment │ │ │ ├── moment-node.d.ts │ │ │ └── moment.d.ts │ └── moment.TypeScript.DefinitelyTyped.1.1.6.nupkg ├── repositories.config ├── underscore.TypeScript.DefinitelyTyped.0.2.4 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── underscore │ │ │ └── underscore.d.ts │ ├── underscore.TypeScript.DefinitelyTyped.0.2.4.nupkg │ └── underscore.TypeScript.DefinitelyTyped.0.2.4.nuspec └── underscore.js.1.5.1 │ ├── Content │ └── Scripts │ │ ├── underscore.js │ │ ├── underscore.min.js │ │ └── underscore.min.map │ ├── underscore.js.1.5.1.nupkg │ └── underscore.js.1.5.1.nuspec └── web.config /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # These files are text and should be normalized (convert crlf => lf) 5 | *.tt text 6 | *.ps1 text 7 | *.cmd text 8 | *.md text 9 | *.txt text 10 | *.markdown text 11 | 12 | # Never normalized 13 | *.js -text 14 | *.css -text 15 | *.ts -text 16 | *.less -text 17 | *.nuspec -text 18 | 19 | # Custom for Visual Studio 20 | *.cs diff=csharp 21 | *.sln merge=union 22 | *.csproj merge=union 23 | *.vbproj merge=union 24 | *.fsproj merge=union 25 | *.dbproj merge=union 26 | 27 | # Standard to msysgit 28 | *.doc diff=astextplain 29 | *.DOC diff=astextplain 30 | *.docx diff=astextplain 31 | *.DOCX diff=astextplain 32 | *.dot diff=astextplain 33 | *.DOT diff=astextplain 34 | *.pdf diff=astextplain 35 | *.PDF diff=astextplain 36 | *.rtf diff=astextplain 37 | *.RTF diff=astextplain 38 | 39 | # Images should be treated as binary 40 | # (binary is a macro for -text -diff) 41 | *.png binary 42 | *.jepg binary 43 | *.sdf binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build out put 2 | obj 3 | bin 4 | 5 | # User files 6 | *.user 7 | *.suo 8 | *.sln.cache 9 | *.vs10x 10 | *.psess 11 | *.docstates 12 | *.userprefs 13 | _ReSharper* 14 | 15 | # Test Results 16 | *.results.xml 17 | TestResults 18 | 19 | # Other 20 | *.bak 21 | *~ 22 | App_Data 23 | [Tt]humbs.db 24 | .DS_Store 25 | nuget/*.nupkg 26 | 27 | .idea 28 | bower_components 29 | .vs 30 | -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Content/Prettify/Themes/bootstrap.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .prettyprint .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 20px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /Content/Prettify/Themes/desert.css: -------------------------------------------------------------------------------- 1 | /* desert scheme ported from vim to google prettify */ 2 | pre.prettyprint { display: block; background-color: #333 } 3 | pre .nocode { background-color: none; color: #000 } 4 | pre .str { color: #ffa0a0 } /* string - pink */ 5 | pre .kwd { color: #f0e68c; font-weight: bold } 6 | pre .com { color: #87ceeb } /* comment - skyblue */ 7 | pre .typ { color: #98fb98 } /* type - lightgreen */ 8 | pre .lit { color: #cd5c5c } /* literal - darkred */ 9 | pre .pun { color: #fff } /* punctuation */ 10 | pre .pln { color: #fff } /* plaintext */ 11 | pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag - lightyellow */ 12 | pre .atn { color: #bdb76b; font-weight: bold } /* attribute name - khaki */ 13 | pre .atv { color: #ffa0a0 } /* attribute value - pink */ 14 | pre .dec { color: #98fb98 } /* decimal - lightgreen */ 15 | 16 | /* Specify class=linenums on a pre to get line numbering */ 17 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */ 18 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 19 | /* Alternate shading for lines */ 20 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 21 | 22 | @media print { 23 | pre.prettyprint { background-color: none } 24 | pre .str, code .str { color: #060 } 25 | pre .kwd, code .kwd { color: #006; font-weight: bold } 26 | pre .com, code .com { color: #600; font-style: italic } 27 | pre .typ, code .typ { color: #404; font-weight: bold } 28 | pre .lit, code .lit { color: #044 } 29 | pre .pun, code .pun { color: #440 } 30 | pre .pln, code .pln { color: #000 } 31 | pre .tag, code .tag { color: #006; font-weight: bold } 32 | pre .atn, code .atn { color: #404 } 33 | pre .atv, code .atv { color: #060 } 34 | } 35 | -------------------------------------------------------------------------------- /Content/Prettify/Themes/doxy.css: -------------------------------------------------------------------------------- 1 | /* Doxy pretty-printing styles. Used with prettify.js. */ 2 | 3 | pre .str, code .str { color: #fec243; } /* string - eggyolk gold */ 4 | pre .kwd, code .kwd { color: #8470FF; } /* keyword - light slate blue */ 5 | pre .com, code .com { color: #32cd32; font-style: italic; } /* comment - green */ 6 | pre .typ, code .typ { color: #6ecbcc; } /* type - turq green */ 7 | pre .lit, code .lit { color: #d06; } /* literal - cherry red */ 8 | pre .pun, code .pun { color: #8B8970; } /* punctuation - lemon chiffon4 */ 9 | pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */ 10 | pre .tag, code .tag { color: #9c9cff; } /* html/xml tag (bluey) */ 11 | pre .htm, code .htm { color: #dda0dd; } /* html tag light purply*/ 12 | pre .xsl, code .xsl { color: #d0a0d0; } /* xslt tag light purply*/ 13 | pre .atn, code .atn { color: #46eeee; font-weight: normal;} /* html/xml attribute name - lt turquoise */ 14 | pre .atv, code .atv { color: #EEB4B4; } /* html/xml attribute value - rosy brown2 */ 15 | pre .dec, code .dec { color: #3387CC; } /* decimal - blue */ 16 | 17 | a { 18 | text-decoration: none; 19 | } 20 | pre.prettyprint, code.prettyprint { 21 | font-family:'Droid Sans Mono','CPMono_v07 Bold','Droid Sans'; 22 | font-weight: bold; 23 | font-size: 9pt; 24 | background-color: #0f0f0f; 25 | -moz-border-radius: 8px; 26 | -webkit-border-radius: 8px; 27 | -o-border-radius: 8px; 28 | -ms-border-radius: 8px; 29 | -khtml-border-radius: 8px; 30 | border-radius: 8px; 31 | } /* background is black (well, just a tad less dark ) */ 32 | 33 | pre.prettyprint { 34 | width: 95%; 35 | margin: 1em auto; 36 | padding: 1em; 37 | white-space: pre-wrap; 38 | } 39 | 40 | pre.prettyprint a, code.prettyprint a { 41 | text-decoration:none; 42 | } 43 | /* Specify class=linenums on a pre to get line numbering; line numbers themselves are the same color as punctuation */ 44 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #8B8970; } /* IE indents via margin-left */ 45 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 46 | /* Alternate shading for lines */ 47 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 48 | 49 | /* print is mostly unchanged from default at present */ 50 | @media print { 51 | pre.prettyprint, code.prettyprint { background-color: #fff; } 52 | pre .str, code .str { color: #088; } 53 | pre .kwd, code .kwd { color: #006; font-weight: bold; } 54 | pre .com, code .com { color: #oc3; font-style: italic; } 55 | pre .typ, code .typ { color: #404; font-weight: bold; } 56 | pre .lit, code .lit { color: #044; } 57 | pre .pun, code .pun { color: #440; } 58 | pre .pln, code .pln { color: #000; } 59 | pre .tag, code .tag { color: #b66ff7; font-weight: bold; } 60 | pre .htm, code .htm { color: #606; font-weight: bold; } 61 | pre .xsl, code .xsl { color: #606; font-weight: bold; } 62 | pre .atn, code .atn { color: #c71585; font-weight: normal; } 63 | pre .atv, code .atv { color: #088; font-weight: normal; } 64 | } 65 | -------------------------------------------------------------------------------- /Content/Prettify/Themes/sons-of-obsidian.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Derived from einaros's Sons of Obsidian theme at 3 | * http://studiostyl.es/schemes/son-of-obsidian by 4 | * Alex Ford of CodeTunnel: 5 | * http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme 6 | */ 7 | 8 | .str 9 | { 10 | color: #EC7600; 11 | } 12 | .kwd 13 | { 14 | color: #93C763; 15 | } 16 | .com 17 | { 18 | color: #66747B; 19 | } 20 | .typ 21 | { 22 | color: #678CB1; 23 | } 24 | .lit 25 | { 26 | color: #FACD22; 27 | } 28 | .pun 29 | { 30 | color: #F1F2F3; 31 | } 32 | .pln 33 | { 34 | color: #F1F2F3; 35 | } 36 | .tag 37 | { 38 | color: #8AC763; 39 | } 40 | .atn 41 | { 42 | color: #E0E2E4; 43 | } 44 | .atv 45 | { 46 | color: #EC7600; 47 | } 48 | .dec 49 | { 50 | color: purple; 51 | } 52 | pre.prettyprint 53 | { 54 | border: 0px solid #888; 55 | } 56 | ol.linenums 57 | { 58 | margin-top: 0; 59 | margin-bottom: 0; 60 | } 61 | .prettyprint { 62 | background: #000; 63 | } 64 | li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 65 | { 66 | color: #555; 67 | list-style-type: decimal; 68 | } 69 | li.L1, li.L3, li.L5, li.L7, li.L9 { 70 | background: #111; 71 | } 72 | @media print 73 | { 74 | .str 75 | { 76 | color: #060; 77 | } 78 | .kwd 79 | { 80 | color: #006; 81 | font-weight: bold; 82 | } 83 | .com 84 | { 85 | color: #600; 86 | font-style: italic; 87 | } 88 | .typ 89 | { 90 | color: #404; 91 | font-weight: bold; 92 | } 93 | .lit 94 | { 95 | color: #044; 96 | } 97 | .pun 98 | { 99 | color: #440; 100 | } 101 | .pln 102 | { 103 | color: #000; 104 | } 105 | .tag 106 | { 107 | color: #006; 108 | font-weight: bold; 109 | } 110 | .atn 111 | { 112 | color: #404; 113 | } 114 | .atv 115 | { 116 | color: #060; 117 | } 118 | } -------------------------------------------------------------------------------- /Content/Prettify/Themes/sunburst.css: -------------------------------------------------------------------------------- 1 | /* Pretty printing styles. Used with prettify.js. */ 2 | /* Vim sunburst theme by David Leibovic */ 3 | 4 | pre .str, code .str { color: #65B042; } /* string - green */ 5 | pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */ 6 | pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */ 7 | pre .typ, code .typ { color: #89bdff; } /* type - light blue */ 8 | pre .lit, code .lit { color: #3387CC; } /* literal - blue */ 9 | pre .pun, code .pun { color: #fff; } /* punctuation - white */ 10 | pre .pln, code .pln { color: #fff; } /* plaintext - white */ 11 | pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */ 12 | pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */ 13 | pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */ 14 | pre .dec, code .dec { color: #3387CC; } /* decimal - blue */ 15 | 16 | pre.prettyprint, code.prettyprint { 17 | background-color: #000; 18 | -moz-border-radius: 8px; 19 | -webkit-border-radius: 8px; 20 | -o-border-radius: 8px; 21 | -ms-border-radius: 8px; 22 | -khtml-border-radius: 8px; 23 | border-radius: 8px; 24 | } 25 | 26 | pre.prettyprint { 27 | width: 95%; 28 | margin: 1em auto; 29 | padding: 1em; 30 | white-space: pre-wrap; 31 | } 32 | 33 | 34 | /* Specify class=linenums on a pre to get line numbering */ 35 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents via margin-left */ 36 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 37 | /* Alternate shading for lines */ 38 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 39 | 40 | @media print { 41 | pre .str, code .str { color: #060; } 42 | pre .kwd, code .kwd { color: #006; font-weight: bold; } 43 | pre .com, code .com { color: #600; font-style: italic; } 44 | pre .typ, code .typ { color: #404; font-weight: bold; } 45 | pre .lit, code .lit { color: #044; } 46 | pre .pun, code .pun { color: #440; } 47 | pre .pln, code .pln { color: #000; } 48 | pre .tag, code .tag { color: #006; font-weight: bold; } 49 | pre .atn, code .atn { color: #404; } 50 | pre .atv, code .atv { color: #060; } 51 | } 52 | -------------------------------------------------------------------------------- /Content/Prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /Content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/Content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/Content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/Content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MomentDatepicker.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.20827.3 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{B238D2E9-9153-4F3D-BBD4-CB811A3DB6F2}" 7 | ProjectSection(SolutionItems) = preProject 8 | .nuget\packages.config = .nuget\packages.config 9 | EndProjectSection 10 | EndProject 11 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MomentDatepicker", "MomentDatepicker.csproj", "{D2A92505-B1DC-4126-AA3C-BC76F30B2128}" 12 | EndProject 13 | Global 14 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 15 | Debug|Any CPU = Debug|Any CPU 16 | Release|Any CPU = Release|Any CPU 17 | EndGlobalSection 18 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 19 | {D2A92505-B1DC-4126-AA3C-BC76F30B2128}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 20 | {D2A92505-B1DC-4126-AA3C-BC76F30B2128}.Debug|Any CPU.Build.0 = Debug|Any CPU 21 | {D2A92505-B1DC-4126-AA3C-BC76F30B2128}.Release|Any CPU.ActiveCfg = Release|Any CPU 22 | {D2A92505-B1DC-4126-AA3C-BC76F30B2128}.Release|Any CPU.Build.0 = Release|Any CPU 23 | EndGlobalSection 24 | GlobalSection(SolutionProperties) = preSolution 25 | HideSolutionNode = FALSE 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ABANDONED REPOSITORY 2 | =================== 3 | 4 | Feel free to for if you want because this repository will not be maintained anymore. 5 | 6 | 7 | moment-datepicker 8 | ================= 9 | 10 | The best bootstrap datepicker! 11 | 12 | Original code from [Stefan Petre](http://www.eyecon.ro/bootstrap-datepicker/). I also took things from [Andrew Rowls](https://github.com/eternicode/bootstrap-datepicker) and [Aymeric Kodono](https://github.com/Aymkdn/Datepicker-for-Bootstrap). 13 | 14 | Moment Datepicker is ready to work with Knockout, TypeScript and NuGet. It uses Moment.js to parse dates and to localize the literals, and Twitter-Bootstrap (2 or 3) to ensure a nice appearance. 15 | 16 | * [Demo](http://makingsense.github.com/moment-datepicker) 17 | * [NuGet Package](https://nuget.org/packages/MomentDatepicker) 18 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-apollo.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/, 2 | null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-basic.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", 3 | /^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-clj.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (C) 2011 Google Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | var a=null; 17 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], 18 | ["typ",/^:[\dA-Za-z-]+/]]),["clj"]); 19 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//], 2 | ["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-dart.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], 2 | ["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), 3 | ["dart"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-erlang.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], 2 | ["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-go.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); 2 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-llvm.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); 2 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-lua.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], 2 | ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-ml.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], 2 | ["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-mumps.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, 2 | null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-n.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, 3 | a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, 4 | a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); 5 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-pascal.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], 3 | ["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-r.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], 2 | ["pun",/^(?:<>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-rd.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); 2 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-scala.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], 2 | ["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-sql.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, 2 | null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-tcl.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", 3 | /^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-tex.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); 2 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-vb.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, 2 | null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-vhdl.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, 2 | null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], 3 | ["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); 4 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-wiki.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); 2 | PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); 3 | -------------------------------------------------------------------------------- /Scripts/Prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/bg.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : bulgarian (bg) 3 | // author : Krasen Borisov : https://github.com/kraz 4 | (function () { 5 | var lang = { 6 | months : "януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"), 7 | monthsShort : "янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"), 8 | weekdays : "неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"), 9 | weekdaysShort : "нед_пон_вто_сря_чет_пет_съб".split("_"), 10 | weekdaysMin : "нд_пн_вт_ср_чт_пт_сб".split("_"), 11 | longDateFormat : { 12 | LT : "h:mm", 13 | L : "D.MM.YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd, D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : '[Днес в] LT', 20 | nextDay : '[Утре в] LT', 21 | nextWeek : 'dddd [в] LT', 22 | lastDay : '[Вчера в] LT', 23 | lastWeek : function () { 24 | switch (this.day()) { 25 | case 0: 26 | case 3: 27 | case 6: 28 | return '[В изминалата] dddd [в] LT'; 29 | case 1: 30 | case 2: 31 | case 4: 32 | case 5: 33 | return '[В изминалия] dddd [в] LT'; 34 | } 35 | }, 36 | sameElse : 'L' 37 | }, 38 | relativeTime : { 39 | future : "след %s", 40 | past : "преди %s", 41 | s : "няколко секунди", 42 | m : "минута", 43 | mm : "%d минути", 44 | h : "час", 45 | hh : "%d часа", 46 | d : "ден", 47 | dd : "%d дни", 48 | M : "месец", 49 | MM : "%d месеца", 50 | y : "година", 51 | yy : "%d години" 52 | }, 53 | ordinal : function (number) { 54 | return '.'; 55 | } 56 | }; 57 | 58 | // Node 59 | if (typeof module !== 'undefined') { 60 | module.exports = lang; 61 | } 62 | // Browser 63 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 64 | this.moment.lang('bg', lang); 65 | } 66 | }()); 67 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/ca.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : catalan (ca) 3 | // author : Juan G. Hurtado : https://github.com/juanghurtado 4 | (function () { 5 | var lang = { 6 | months : "Gener_Febrer_Març_Abril_Maig_Juny_Juliol_Agost_Setembre_Octubre_Novembre_Desembre".split("_"), 7 | monthsShort : "Gen._Febr._Mar._Abr._Mai._Jun._Jul._Ag._Set._Oct._Nov._Des.".split("_"), 8 | weekdays : "Diumenge_Dilluns_Dimarts_Dimecres_Dijous_Divendres_Dissabte".split("_"), 9 | weekdaysShort : "Dg._Dl._Dt._Dc._Dj._Dv._Ds.".split("_"), 10 | weekdaysMin : "Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"), 11 | longDateFormat : { 12 | LT : "H:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : function () { 20 | return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; 21 | }, 22 | nextDay : function () { 23 | return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; 24 | }, 25 | nextWeek : function () { 26 | return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; 27 | }, 28 | lastDay : function () { 29 | return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; 30 | }, 31 | lastWeek : function () { 32 | return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; 33 | }, 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : "en %s", 38 | past : "fa %s", 39 | s : "uns segons", 40 | m : "un minut", 41 | mm : "%d minuts", 42 | h : "una hora", 43 | hh : "%d hores", 44 | d : "un dia", 45 | dd : "%d dies", 46 | M : "un mes", 47 | MM : "%d mesos", 48 | y : "un any", 49 | yy : "%d anys" 50 | }, 51 | ordinal : function (number) { 52 | return 'º'; 53 | } 54 | }; 55 | 56 | // Node 57 | if (typeof module !== 'undefined' && module.exports) { 58 | module.exports = lang; 59 | } 60 | // Browser 61 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 62 | this.moment.lang('ca', lang); 63 | } 64 | }()); 65 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/cv.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : chuvash (cv) 3 | // author : Anatoly Mironov : https://github.com/mirontoli 4 | (function () { 5 | var lang = { 6 | months : "кăрлач_нарăс_пуш_ака_май_çĕртме_утă_çурла_авăн_юпа_чӳк_раштав".split("_"), 7 | monthsShort : "кăр_нар_пуш_ака_май_çĕр_утă_çур_ав_юпа_чӳк_раш".split("_"), 8 | weekdays : "вырсарникун_тунтикун_ытларикун_юнкун_кĕçнерникун_эрнекун_шăматкун".split("_"), 9 | weekdaysShort : "выр_тун_ытл_юн_кĕç_эрн_шăм".split("_"), 10 | weekdaysMin : "вр_тн_ыт_юн_кç_эр_шм".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "DD-MM-YYYY", 14 | LL : "YYYY çулхи MMMM уйăхĕн D-мĕшĕ", 15 | LLL : "YYYY çулхи MMMM уйăхĕн D-мĕшĕ, LT", 16 | LLLL : "dddd, YYYY çулхи MMMM уйăхĕн D-мĕшĕ, LT" 17 | }, 18 | calendar : { 19 | sameDay: '[Паян] LT [сехетре]', 20 | nextDay: '[Ыран] LT [сехетре]', 21 | lastDay: '[Ĕнер] LT [сехетре]', 22 | nextWeek: '[Çитес] dddd LT [сехетре]', 23 | lastWeek: '[Иртнĕ] dddd LT [сехетре]', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : function(output) { 28 | var affix = /сехет$/i.exec(output) 29 | ? "рен" : /çул$/i.exec(output) ? "тан" : "ран"; 30 | return output + affix; 31 | }, 32 | past : "%s каялла", 33 | s : "пĕр-ик çеккунт", 34 | m : "пĕр минут", 35 | mm : "%d минут", 36 | h : "пĕр сехет", 37 | hh : "%d сехет", 38 | d : "пĕр кун", 39 | dd : "%d кун", 40 | M : "пĕр уйăх", 41 | MM : "%d уйăх", 42 | y : "пĕр çул", 43 | yy : "%d çул" 44 | }, 45 | ordinal : function (number) { 46 | return '-мĕш'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('cv', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/da.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : danish (da) 3 | // author : Ulrik Nielsen : https://github.com/mrbase 4 | (function () { 5 | var lang = { 6 | months : "Januar_Februar_Marts_April_Maj_Juni_Juli_August_September_Oktober_November_December".split("_"), 7 | monthsShort : "Jan_Feb_Mar_Apr_Maj_Jun_Jul_Aug_Sep_Okt_Nov_Dec".split("_"), 8 | weekdays : "Søndag_Mandag_Tirsdag_Onsdag_Torsdag_Fredag_Lørdag".split("_"), 9 | weekdaysShort : "Søn_Man_Tir_Ons_Tor_Fre_Lør".split("_"), 10 | weekdaysMin : "Sø_Ma_Ti_On_To_Fr_Lø".split("_"), 11 | longDateFormat : { 12 | LT : "h:mm A", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY h:mm A", 16 | LLLL : "dddd D. MMMM, YYYY h:mm A" 17 | }, 18 | calendar : { 19 | sameDay : '[I dag kl.] LT', 20 | nextDay : '[I morgen kl.] LT', 21 | nextWeek : 'dddd [kl.] LT', 22 | lastDay : '[I går kl.] LT', 23 | lastWeek : '[sidste] dddd [kl] LT', 24 | sameElse : 'L' 25 | }, 26 | relativeTime : { 27 | future : "om %s", 28 | past : "%s siden", 29 | s : "få sekunder", 30 | m : "minut", 31 | mm : "%d minutter", 32 | h : "time", 33 | hh : "%d timer", 34 | d : "dag", 35 | dd : "%d dage", 36 | M : "månede", 37 | MM : "%d måneder", 38 | y : "år", 39 | yy : "%d år" 40 | }, 41 | ordinal : function (number) { 42 | return '.'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('da', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/de.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : german (de) 3 | // author : lluchs : https://github.com/lluchs 4 | (function () { 5 | var lang = { 6 | months : "Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"), 7 | monthsShort : "Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"), 8 | weekdays : "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"), 9 | weekdaysShort : "So._Mo._Di._Mi._Do._Fr._Sa.".split("_"), 10 | weekdaysMin : "So_Mo_Di_Mi_Do_Fr_Sa".split("_"), 11 | longDateFormat : { 12 | LT: "H:mm U\\hr", 13 | L : "DD.MM.YYYY", 14 | LL : "D. MMMM YYYY", 15 | LLL : "D. MMMM YYYY LT", 16 | LLLL : "dddd, D. MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: "[Heute um] LT", 20 | sameElse: "L", 21 | nextDay: '[Morgen um] LT', 22 | nextWeek: 'dddd [um] LT', 23 | lastDay: '[Gestern um] LT', 24 | lastWeek: '[letzten] dddd [um] LT' 25 | }, 26 | relativeTime : { 27 | future : "in %s", 28 | past : "vor %s", 29 | s : "ein paar Sekunden", 30 | m : "einer Minute", 31 | mm : "%d Minuten", 32 | h : "einer Stunde", 33 | hh : "%d Stunden", 34 | d : "einem Tag", 35 | dd : "%d Tagen", 36 | M : "einem Monat", 37 | MM : "%d Monaten", 38 | y : "einem Jahr", 39 | yy : "%d Jahren" 40 | }, 41 | ordinal : function (number) { 42 | return '.'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('de', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/en-ca.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : canadian english (en-ca) 3 | // author : Jonathan Abourbih : https://github.com/jonbca 4 | (function () { 5 | var lang = { 6 | months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), 7 | monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), 8 | weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), 9 | weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), 10 | weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), 11 | longDateFormat : { 12 | LT : "h:mm A", 13 | L : "YYYY-MM-DD", 14 | LL : "D MMMM, YYYY", 15 | LLL : "D MMMM, YYYY LT", 16 | LLLL : "dddd, D MMMM, YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : '[Today at] LT', 20 | nextDay : '[Tomorrow at] LT', 21 | nextWeek : 'dddd [at] LT', 22 | lastDay : '[Yesterday at] LT', 23 | lastWeek : '[last] dddd [at] LT', 24 | sameElse : 'L' 25 | }, 26 | relativeTime : { 27 | future : "in %s", 28 | past : "%s ago", 29 | s : "a few seconds", 30 | m : "a minute", 31 | mm : "%d minutes", 32 | h : "an hour", 33 | hh : "%d hours", 34 | d : "a day", 35 | dd : "%d days", 36 | M : "a month", 37 | MM : "%d months", 38 | y : "a year", 39 | yy : "%d years" 40 | }, 41 | ordinal : function (number) { 42 | var b = number % 10; 43 | return (~~ (number % 100 / 10) === 1) ? 'th' : 44 | (b === 1) ? 'st' : 45 | (b === 2) ? 'nd' : 46 | (b === 3) ? 'rd' : 'th'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('en-ca', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/en-gb.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : great britain english (en-gb) 3 | // author : Chris Gedrim : https://github.com/chrisgedrim 4 | (function () { 5 | var lang = { 6 | months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), 7 | monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), 8 | weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), 9 | weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), 10 | weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), 11 | longDateFormat : { 12 | LT : "h:mm A", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd, D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : '[Today at] LT', 20 | nextDay : '[Tomorrow at] LT', 21 | nextWeek : 'dddd [at] LT', 22 | lastDay : '[Yesterday at] LT', 23 | lastWeek : '[last] dddd [at] LT', 24 | sameElse : 'L' 25 | }, 26 | relativeTime : { 27 | future : "in %s", 28 | past : "%s ago", 29 | s : "a few seconds", 30 | m : "a minute", 31 | mm : "%d minutes", 32 | h : "an hour", 33 | hh : "%d hours", 34 | d : "a day", 35 | dd : "%d days", 36 | M : "a month", 37 | MM : "%d months", 38 | y : "a year", 39 | yy : "%d years" 40 | }, 41 | ordinal : function (number) { 42 | var b = number % 10; 43 | return (~~ (number % 100 / 10) === 1) ? 'th' : 44 | (b === 1) ? 'st' : 45 | (b === 2) ? 'nd' : 46 | (b === 3) ? 'rd' : 'th'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('en-gb', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/es.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : spanish (es) 3 | // author : Julio Napurí : https://github.com/julionc 4 | (function () { 5 | var lang = { 6 | months : "Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre".split("_"), 7 | monthsShort : "Ene._Feb._Mar._Abr._May._Jun._Jul._Ago._Sep._Oct._Nov._Dic.".split("_"), 8 | weekdays : "Domingo_Lunes_Martes_Miércoles_Jueves_Viernes_Sábado".split("_"), 9 | weekdaysShort : "Dom._Lun._Mar._Mié._Jue._Vie._Sáb.".split("_"), 10 | weekdaysMin : "Do_Lu_Ma_Mi_Ju_Vi_Sá".split("_"), 11 | longDateFormat : { 12 | LT : "H:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : function () { 20 | return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; 21 | }, 22 | nextDay : function () { 23 | return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; 24 | }, 25 | nextWeek : function () { 26 | return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; 27 | }, 28 | lastDay : function () { 29 | return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; 30 | }, 31 | lastWeek : function () { 32 | return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; 33 | }, 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : "en %s", 38 | past : "hace %s", 39 | s : "unos segundos", 40 | m : "un minuto", 41 | mm : "%d minutos", 42 | h : "una hora", 43 | hh : "%d horas", 44 | d : "un día", 45 | dd : "%d días", 46 | M : "un mes", 47 | MM : "%d meses", 48 | y : "un año", 49 | yy : "%d años" 50 | }, 51 | ordinal : function (number) { 52 | return 'º'; 53 | } 54 | }; 55 | 56 | // Node 57 | if (typeof module !== 'undefined' && module.exports) { 58 | module.exports = lang; 59 | } 60 | // Browser 61 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 62 | this.moment.lang('es', lang); 63 | } 64 | }()); 65 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/et.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : estonian (et) 3 | // author : Henry Kehlmann : https://github.com/madhenry 4 | (function () { 5 | 6 | function translate(number, withoutSuffix, key, isFuture) { 7 | var num = number; 8 | 9 | switch (key) { 10 | case 's': 11 | return (isFuture || withoutSuffix) ? 'paari sekundi' : 'paar sekundit'; 12 | default: 13 | } 14 | 15 | return ''; 16 | } 17 | 18 | var lang = { 19 | months : "jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"), 20 | monthsShort : "jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"), 21 | weekdays : "pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"), 22 | weekdaysShort : "P_E_T_K_N_R_L".split("_"), 23 | weekdaysMin : "P_E_T_K_N_R_L".split("_"), 24 | longDateFormat : { 25 | LT : "H:mm", 26 | L : "DD.MM.YYYY", 27 | LL : "D. MMMM YYYY", 28 | LLL : "D. MMMM YYYY LT", 29 | LLLL : "dddd, D. MMMM YYYY LT" 30 | }, 31 | calendar : { 32 | sameDay : '[Täna,] LT', 33 | nextDay : '[Homme,] LT', 34 | nextWeek : '[Järgmine] dddd LT', 35 | lastDay : '[Eile,] LT', 36 | lastWeek : '[Eelmine] dddd LT', 37 | sameElse : 'L' 38 | }, 39 | relativeTime : { 40 | future : "%s pärast", 41 | past : "%s tagasi", 42 | s : translate, 43 | m : "minut", 44 | mm : "%d minutit", 45 | h : "tund", 46 | hh : "%d tundi", 47 | d : "päev", 48 | dd : "%d päeva", 49 | M : "kuu", 50 | MM : "%d kuud", 51 | y : "aasta", 52 | yy : "%d aastat" 53 | }, 54 | ordinal : function (number) { 55 | return '.'; 56 | } 57 | }; 58 | 59 | // Node 60 | if (typeof module !== 'undefined' && module.exports) { 61 | module.exports = lang; 62 | } 63 | // Browser 64 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 65 | this.moment.lang('et', lang); 66 | } 67 | }()); 68 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/eu.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : euskara (eu) 3 | // author : Eneko Illarramendi : https://github.com/eillarra 4 | (function () { 5 | var lang = { 6 | months : "urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"), 7 | monthsShort : "urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"), 8 | weekdays : "igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"), 9 | weekdaysShort : "ig._al._ar._az._og._ol._lr.".split("_"), 10 | weekdaysMin : "ig_al_ar_az_og_ol_lr".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "YYYY-MM-DD", 14 | LL : "YYYYko MMMMren D[a]", 15 | LLL : "YYYYko MMMMren D[a] LT", 16 | LLLL : "dddd, YYYYko MMMMren D[a] LT" 17 | }, 18 | calendar : { 19 | sameDay : '[gaur] LT[etan]', 20 | nextDay : '[bihar] LT[etan]', 21 | nextWeek : 'dddd LT[etan]', 22 | lastDay : '[atzo] LT[etan]', 23 | lastWeek : '[aurreko] dddd LT[etan]', 24 | sameElse : 'L' 25 | }, 26 | relativeTime : { 27 | future : "%s barru", 28 | past : "duela %s", 29 | s : "segundo batzuk", 30 | m : "minutu bat", 31 | mm : "%d minutu", 32 | h : "ordu bat", 33 | hh : "%d ordu", 34 | d : "egun bat", 35 | dd : "%d egun", 36 | M : "hilabete bat", 37 | MM : "%d hilabete", 38 | y : "urte bat", 39 | yy : "%d urte" 40 | }, 41 | ordinal : function (number) { 42 | return '.'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('eu', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/fi.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : finnish (fi) 3 | // author : Tarmo Aidantausta : https://github.com/bleadof 4 | (function () { 5 | var numbers_past = ['nolla', 'yksi', 'kaksi', 'kolme', 'neljä', 'viisi', 6 | 'kuusi', 'seitsemän', 'kahdeksan', 'yhdeksän']; 7 | var numbers_future = ['nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 8 | 'kuuden', numbers_past[7], numbers_past[8], numbers_past[9]]; 9 | 10 | function translate(number, withoutSuffix, key, isFuture) { 11 | var result = ""; 12 | switch (key) { 13 | case 's': 14 | return isFuture ? 'muutaman sekunnin' : 'muutama sekunti'; 15 | case 'm': 16 | return isFuture ? 'minuutin' : 'minuutti'; 17 | case 'mm': 18 | result = isFuture ? 'minuutin' : 'minuuttia'; 19 | break; 20 | case 'h': 21 | return isFuture ? 'tunnin' : 'tunti'; 22 | case 'hh': 23 | result = isFuture ? 'tunnin' : 'tuntia'; 24 | break; 25 | case 'd': 26 | return isFuture ? 'päivän' : 'päivä'; 27 | case 'dd': 28 | result = isFuture ? 'päivän' : 'päivää'; 29 | break; 30 | case 'M': 31 | return isFuture ? 'kuukauden' : 'kuukausi'; 32 | case 'MM': 33 | result = isFuture ? 'kuukauden' : 'kuukautta'; 34 | break; 35 | case 'y': 36 | return isFuture ? 'vuoden' : 'vuosi'; 37 | case 'yy': 38 | result = isFuture ? 'vuoden' : 'vuotta'; 39 | break; 40 | } 41 | result = verbal_number(number, isFuture) + " " + result; 42 | return result; 43 | } 44 | 45 | function verbal_number(number, isFuture) { 46 | return number < 10 ? (isFuture ? numbers_future[number] : numbers_past[number]) : number; 47 | } 48 | 49 | var lang = { 50 | months : "tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"), 51 | monthsShort : "tam_hel_maa_huh_tou_kes_hei_elo_syy_lok_mar_jou".split("_"), 52 | weekdays : "sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"), 53 | weekdaysShort : "su_ma_ti_ke_to_pe_la".split("_"), 54 | weekdaysMin : "su_ma_ti_ke_to_pe_la".split("_"), 55 | longDateFormat : { 56 | LT : "HH.mm", 57 | L : "DD.MM.YYYY", 58 | LL : "Do MMMMt\\a YYYY", 59 | LLL : "Do MMMMt\\a YYYY, klo LT", 60 | LLLL : "dddd, Do MMMMt\\a YYYY, klo LT" 61 | }, 62 | calendar : { 63 | sameDay : '[tänään] [klo] LT', 64 | nextDay : '[huomenna] [klo] LT', 65 | nextWeek : 'dddd [klo] LT', 66 | lastDay : '[eilen] [klo] LT', 67 | lastWeek : '[viime] dddd[na] [klo] LT', 68 | sameElse : 'L' 69 | }, 70 | relativeTime : { 71 | future : "%s päästä", 72 | past : "%s sitten", 73 | s : translate, 74 | m : translate, 75 | mm : translate, 76 | h : translate, 77 | hh : translate, 78 | d : translate, 79 | dd : translate, 80 | M : translate, 81 | MM : translate, 82 | y : translate, 83 | yy : translate 84 | }, 85 | ordinal : function (number) { 86 | return "."; 87 | } 88 | }; 89 | 90 | // Node 91 | if (typeof module !== 'undefined' && module.exports) { 92 | module.exports = lang; 93 | } 94 | // Browser 95 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 96 | this.moment.lang('fi', lang); 97 | } 98 | }()); 99 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/fr-ca.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : canadian french (fr-ca) 3 | // author : Jonathan Abourbih : https://github.com/jonbca 4 | (function () { 5 | var lang = { 6 | months : "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"), 7 | monthsShort : "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"), 8 | weekdays : "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"), 9 | weekdaysShort : "dim._lun._mar._mer._jeu._ven._sam.".split("_"), 10 | weekdaysMin : "Di_Lu_Ma_Me_Je_Ve_Sa".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "YYYY-MM-DD", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: "[Aujourd'hui à] LT", 20 | nextDay: '[Demain à] LT', 21 | nextWeek: 'dddd [à] LT', 22 | lastDay: '[Hier à] LT', 23 | lastWeek: 'dddd [dernier à] LT', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : "dans %s", 28 | past : "il y a %s", 29 | s : "quelques secondes", 30 | m : "une minute", 31 | mm : "%d minutes", 32 | h : "une heure", 33 | hh : "%d heures", 34 | d : "un jour", 35 | dd : "%d jours", 36 | M : "un mois", 37 | MM : "%d mois", 38 | y : "une année", 39 | yy : "%d années" 40 | }, 41 | ordinal : function (number) { 42 | return number === 1 ? 'er' : 'ème'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('fr-ca', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/fr.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : french (fr) 3 | // author : John Fischer : https://github.com/jfroffice 4 | (function () { 5 | var lang = { 6 | months : "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"), 7 | monthsShort : "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"), 8 | weekdays : "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"), 9 | weekdaysShort : "dim._lun._mar._mer._jeu._ven._sam.".split("_"), 10 | weekdaysMin : "Di_Lu_Ma_Me_Je_Ve_Sa".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: "[Aujourd'hui à] LT", 20 | nextDay: '[Demain à] LT', 21 | nextWeek: 'dddd [à] LT', 22 | lastDay: '[Hier à] LT', 23 | lastWeek: 'dddd [dernier à] LT', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : "dans %s", 28 | past : "il y a %s", 29 | s : "quelques secondes", 30 | m : "une minute", 31 | mm : "%d minutes", 32 | h : "une heure", 33 | hh : "%d heures", 34 | d : "un jour", 35 | dd : "%d jours", 36 | M : "un mois", 37 | MM : "%d mois", 38 | y : "une année", 39 | yy : "%d années" 40 | }, 41 | ordinal : function (number) { 42 | return number === 1 ? 'er' : 'ème'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('fr', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/gl.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : galician (gl) 3 | // author : Juan G. Hurtado : https://github.com/juanghurtado 4 | (function () { 5 | var lang = { 6 | months : "Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Octubro_Novembro_Decembro".split("_"), 7 | monthsShort : "Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.".split("_"), 8 | weekdays : "Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado".split("_"), 9 | weekdaysShort : "Dom._Lun._Mar._Mér._Xov._Ven._Sáb.".split("_"), 10 | weekdaysMin : "Do_Lu_Ma_Mé_Xo_Ve_Sá".split("_"), 11 | longDateFormat : { 12 | LT : "H:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay : function () { 20 | return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; 21 | }, 22 | nextDay : function () { 23 | return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; 24 | }, 25 | nextWeek : function () { 26 | return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; 27 | }, 28 | lastDay : function () { 29 | return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT'; 30 | }, 31 | lastWeek : function () { 32 | return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; 33 | }, 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : "en %s", 38 | past : "fai %s", 39 | s : "uns segundo", 40 | m : "un minuto", 41 | mm : "%d minutos", 42 | h : "unha hora", 43 | hh : "%d horas", 44 | d : "un día", 45 | dd : "%d días", 46 | M : "un mes", 47 | MM : "%d meses", 48 | y : "un ano", 49 | yy : "%d anos" 50 | }, 51 | ordinal : function (number) { 52 | return 'º'; 53 | } 54 | }; 55 | 56 | // Node 57 | if (typeof module !== 'undefined' && module.exports) { 58 | module.exports = lang; 59 | } 60 | // Browser 61 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 62 | this.moment.lang('gl', lang); 63 | } 64 | }()); 65 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/he.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : Hebrew (he) 3 | // author : Tomer Cohen : https://github.com/tomer 4 | // author : Moshe Simantov : https://github.com/DevelopmentIL 5 | (function () { 6 | var lang = { 7 | months : "ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"), 8 | monthsShort : "ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"), 9 | weekdays : "ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"), 10 | weekdaysShort : "א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"), 11 | weekdaysMin : "א_ב_ג_ד_ה_ו_ש".split("_"), 12 | longDateFormat : { 13 | LT : "HH:mm", 14 | L : "DD/MM/YYYY", 15 | LL : "D [ב]MMMM YYYY", 16 | LLL : "D [ב]MMMM YYYY LT", 17 | LLLL : "dddd, D [ב]MMMM YYYY LT" 18 | }, 19 | calendar : { 20 | sameDay : '[היום ב־]LT', 21 | nextDay : '[מחר ב־]LT', 22 | nextWeek : 'dddd [בשעה] LT', 23 | lastDay : '[אתמול ב־]LT', 24 | lastWeek : '[ביום] dddd [האחרון בשעה] LT', 25 | sameElse : 'L' 26 | }, 27 | relativeTime : { 28 | future : "בעוד %s", 29 | past : "לפני %s", 30 | s : "מספר שניות", 31 | m : "דקה", 32 | mm : "%d דקות", 33 | h : "שעה", 34 | hh : "%d שעות", 35 | d : "יום", 36 | dd : "%d ימים", 37 | M : "חודש", 38 | MM : "%d חודשים", 39 | y : "שנה", 40 | yy : "%d שנים" 41 | }, 42 | ordinal : function (number) { 43 | return ''; // Function is not required for the Hebrew language. 44 | } 45 | }; 46 | 47 | // Node 48 | if (typeof module !== 'undefined' && module.exports) { 49 | module.exports = lang; 50 | } 51 | // Browser 52 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 53 | this.moment.lang('he', lang); 54 | } 55 | }()); 56 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/hu.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : hungarian (hu) 3 | // author : Adam Brunner : https://github.com/adambrunner 4 | (function() 5 | { 6 | function translate(number, withoutSuffix, key, isFuture) { 7 | var num = number; 8 | 9 | switch (key) { 10 | case 's': 11 | return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce'; 12 | 13 | case 'm': 14 | num = 'egy'; 15 | case 'mm': 16 | return num + (isFuture || withoutSuffix ? ' perc' : ' perce'); 17 | break; 18 | 19 | case 'h': 20 | num = 'egy'; 21 | case 'hh': 22 | return num + (isFuture || withoutSuffix ? ' óra' : ' órája'); 23 | 24 | case 'd': 25 | num = 'egy'; 26 | case 'dd': 27 | return num + (isFuture || withoutSuffix ? ' nap' : ' napja'); 28 | 29 | case 'M': 30 | num = 'egy'; 31 | case 'MM': 32 | return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja'); 33 | 34 | case 'y': 35 | num = 'egy'; 36 | case 'yy': 37 | return num + (isFuture || withoutSuffix ? ' év' : ' éve'); 38 | 39 | default: 40 | } 41 | 42 | return ''; 43 | } 44 | 45 | function week(isFuture) { 46 | var ending = ''; 47 | switch (this.day()) { 48 | case 0: ending = 'vasárnap'; break; 49 | case 1: ending = 'hétfőn'; break; 50 | case 2: ending = 'kedden'; break; 51 | case 3: ending = 'szerdán'; break; 52 | case 4: ending = 'csütörtökön'; break; 53 | case 5: ending = 'pénteken'; break; 54 | case 6: ending = 'szombaton'; break; 55 | } 56 | return (isFuture ? '' : 'múlt ')+'['+ending+'] LT[-kor]'; 57 | } 58 | 59 | var lang = { 60 | months : "január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"), 61 | monthsShort : "jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"), 62 | weekdays : "vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"), 63 | weekdaysShort : "v_h_k_sze_cs_p_szo".split("_"), 64 | longDateFormat : { 65 | LT : "H:mm", 66 | L : "YYYY.MM.DD.", 67 | LL : "YYYY. MMMM D.", 68 | LLL : "YYYY. MMMM D., LT", 69 | LLLL : "YYYY. MMMM D., dddd LT" 70 | }, 71 | calendar : { 72 | sameDay : '[ma] LT[-kor]', 73 | nextDay : '[holnap] LT[-kor]', 74 | nextWeek : function(){return week.call(this, true);}, 75 | lastDay : '[tegnap] LT[-kor]', 76 | lastWeek : function(){return week.call(this, false);}, 77 | sameElse : 'L' 78 | }, 79 | relativeTime : { 80 | future : "%s múlva", 81 | past : "%s", 82 | s : translate, 83 | m : translate, 84 | mm : translate, 85 | h : translate, 86 | hh : translate, 87 | d : translate, 88 | dd : translate, 89 | M : translate, 90 | MM : translate, 91 | y : translate, 92 | yy : translate 93 | }, 94 | ordinal : function(number) { 95 | return '.'; 96 | } 97 | }; 98 | 99 | // Node 100 | if (typeof module !== 'undefined' && module.exports) { 101 | module.exports = lang; 102 | } 103 | 104 | // Browser 105 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 106 | this.moment.lang('hu', lang); 107 | } 108 | }()); 109 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/it.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : italian (it) 3 | // author : Lorenzo : https://github.com/aliem 4 | (function () { 5 | var lang = { 6 | months : "Gennaio_Febbraio_Marzo_Aprile_Maggio_Giugno_Luglio_Agosto_Settembre_Ottobre_Novembre_Dicembre".split("_"), 7 | monthsShort : "Gen_Feb_Mar_Apr_Mag_Giu_Lug_Ago_Set_Ott_Nov_Dic".split("_"), 8 | weekdays : "Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"), 9 | weekdaysShort : "Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"), 10 | weekdaysMin : "D_L_Ma_Me_G_V_S".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd, D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: '[Oggi alle] LT', 20 | nextDay: '[Domani alle] LT', 21 | nextWeek: 'dddd [alle] LT', 22 | lastDay: '[Ieri alle] LT', 23 | lastWeek: '[lo scorso] dddd [alle] LT', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : "in %s", 28 | past : "%s fa", 29 | s : "secondi", 30 | m : "un minuto", 31 | mm : "%d minuti", 32 | h : "un'ora", 33 | hh : "%d ore", 34 | d : "un giorno", 35 | dd : "%d giorni", 36 | M : "un mese", 37 | MM : "%d mesi", 38 | y : "un anno", 39 | yy : "%d anni" 40 | }, 41 | ordinal: function () { 42 | return 'º'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('it', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/ja.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : japanese (ja) 3 | // author : LI Long : https://github.com/baryon 4 | (function () { 5 | var lang = { 6 | months : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 7 | monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 8 | weekdays : "日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"), 9 | weekdaysShort : "日_月_火_水_木_金_土".split("_"), 10 | weekdaysMin : "日_月_火_水_木_金_土".split("_"), 11 | longDateFormat : { 12 | LT : "Ah時m分", 13 | L : "YYYY/MM/DD", 14 | LL : "YYYY年M月D日", 15 | LLL : "YYYY年M月D日LT", 16 | LLLL : "YYYY年M月D日LT dddd" 17 | }, 18 | meridiem : function (hour, minute, isLower) { 19 | if (hour < 12) { 20 | return "午前"; 21 | } else { 22 | return "午後"; 23 | } 24 | }, 25 | calendar : { 26 | sameDay : '[今日] LT', 27 | nextDay : '[明日] LT', 28 | nextWeek : '[来週]dddd LT', 29 | lastDay : '[昨日] LT', 30 | lastWeek : '[前週]dddd LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : "%s後", 35 | past : "%s前", 36 | s : "数秒", 37 | m : "1分", 38 | mm : "%d分", 39 | h : "1時間", 40 | hh : "%d時間", 41 | d : "1日", 42 | dd : "%d日", 43 | M : "1ヶ月", 44 | MM : "%dヶ月", 45 | y : "1年", 46 | yy : "%d年" 47 | }, 48 | ordinal : function (number) { 49 | return ''; 50 | } 51 | }; 52 | 53 | // Node 54 | if (typeof module !== 'undefined' && module.exports) { 55 | module.exports = lang; 56 | } 57 | // Browser 58 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 59 | this.moment.lang('ja', lang); 60 | } 61 | }()); 62 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/jp.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : japanese (jp) 3 | // author : LI Long : https://github.com/baryon 4 | 5 | // This language config was incorrectly named 'jp' instead of 'ja'. 6 | // In version 2.0.0, this will be deprecated and you should use 'ja' instead. 7 | (function () { 8 | var lang = { 9 | months : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 10 | monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 11 | weekdays : "日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"), 12 | weekdaysShort : "日_月_火_水_木_金_土".split("_"), 13 | weekdaysMin : "日_月_火_水_木_金_土".split("_"), 14 | longDateFormat : { 15 | LT : "Ah時m分", 16 | L : "YYYY/MM/DD", 17 | LL : "YYYY年M月D日", 18 | LLL : "YYYY年M月D日LT", 19 | LLLL : "YYYY年M月D日LT dddd" 20 | }, 21 | meridiem : function (hour, minute, isLower) { 22 | if (hour < 12) { 23 | return "午前"; 24 | } else { 25 | return "午後"; 26 | } 27 | }, 28 | calendar : { 29 | sameDay : '[今日] LT', 30 | nextDay : '[明日] LT', 31 | nextWeek : '[来週]dddd LT', 32 | lastDay : '[昨日] LT', 33 | lastWeek : '[前週]dddd LT', 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : "%s後", 38 | past : "%s前", 39 | s : "数秒", 40 | m : "1分", 41 | mm : "%d分", 42 | h : "1時間", 43 | hh : "%d時間", 44 | d : "1日", 45 | dd : "%d日", 46 | M : "1ヶ月", 47 | MM : "%dヶ月", 48 | y : "1年", 49 | yy : "%d年" 50 | }, 51 | ordinal : function (number) { 52 | return ''; 53 | } 54 | }; 55 | 56 | // Node 57 | if (typeof module !== 'undefined' && module.exports) { 58 | module.exports = lang; 59 | } 60 | // Browser 61 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 62 | this.moment.lang('jp', lang); 63 | } 64 | }()); 65 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/ko.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : korean (ko) 3 | // author : Kyungwook, Park : https://github.com/kyungw00k 4 | (function () { 5 | var lang = { 6 | months : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"), 7 | monthsShort : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"), 8 | weekdays : "일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"), 9 | weekdaysShort : "일_월_화_수_목_금_토".split("_"), 10 | weekdaysMin : "일_월_화_수_목_금_토".split("_"), 11 | longDateFormat : { 12 | LT : "A h시 mm분", 13 | L : "YYYY.MM.DD", 14 | LL : "YYYY년 MMMM D일", 15 | LLL : "YYYY년 MMMM D일 LT", 16 | LLLL : "YYYY년 MMMM D일 dddd LT" 17 | }, 18 | meridiem : function (hour, minute, isUpper) { 19 | return hour < 12 ? '오전' : '오후'; 20 | }, 21 | calendar : { 22 | sameDay : '오늘 LT', 23 | nextDay : '내일 LT', 24 | nextWeek : 'dddd LT', 25 | lastDay : '어제 LT', 26 | lastWeek : '지난주 dddd LT', 27 | sameElse : 'L' 28 | }, 29 | relativeTime : { 30 | future : "%s 후", 31 | past : "%s 전", 32 | s : "몇초", 33 | ss : "%d초", 34 | m : "일분", 35 | mm : "%d분", 36 | h : "한시간", 37 | hh : "%d시간", 38 | d : "하루", 39 | dd : "%d일", 40 | M : "한달", 41 | MM : "%d달", 42 | y : "일년", 43 | yy : "%d년" 44 | }, 45 | ordinal : function (number) { 46 | return '일'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('ko', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/kr.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : korean (kr) 3 | // author : Kyungwook, Park : https://github.com/kyungw00k 4 | 5 | // This language config was incorrectly named 'kr' instead of 'ko'. 6 | // In version 2.0.0, this will be deprecated and you should use 'ko' instead. 7 | (function () { 8 | var lang = { 9 | months : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"), 10 | monthsShort : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"), 11 | weekdays : "일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"), 12 | weekdaysShort : "일_월_화_수_목_금_토".split("_"), 13 | weekdaysMin : "일_월_화_수_목_금_토".split("_"), 14 | longDateFormat : { 15 | LT : "A h시 mm분", 16 | L : "YYYY.MM.DD", 17 | LL : "YYYY년 MMMM D일", 18 | LLL : "YYYY년 MMMM D일 LT", 19 | LLLL : "YYYY년 MMMM D일 dddd LT" 20 | }, 21 | meridiem : function (hour, minute, isUpper) { 22 | return hour < 12 ? '오전' : '오후'; 23 | }, 24 | calendar : { 25 | sameDay : '오늘 LT', 26 | nextDay : '내일 LT', 27 | nextWeek : 'dddd LT', 28 | lastDay : '어제 LT', 29 | lastWeek : '지난주 dddd LT', 30 | sameElse : 'L' 31 | }, 32 | relativeTime : { 33 | future : "%s 후", 34 | past : "%s 전", 35 | s : "몇초", 36 | ss : "%d초", 37 | m : "일분", 38 | mm : "%d분", 39 | h : "한시간", 40 | hh : "%d시간", 41 | d : "하루", 42 | dd : "%d일", 43 | M : "한달", 44 | MM : "%d달", 45 | y : "일년", 46 | yy : "%d년" 47 | }, 48 | ordinal : function (number) { 49 | return '일'; 50 | } 51 | }; 52 | 53 | // Node 54 | if (typeof module !== 'undefined' && module.exports) { 55 | module.exports = lang; 56 | } 57 | // Browser 58 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 59 | this.moment.lang('kr', lang); 60 | } 61 | }()); 62 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/nb.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : norwegian bokmål (nb) 3 | // author : Espen Hovlandsdal : https://github.com/rexxars 4 | (function () { 5 | var lang = { 6 | months : "januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"), 7 | monthsShort : "jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"), 8 | weekdays : "søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"), 9 | weekdaysShort : "søn_man_tir_ons_tor_fre_lør".split("_"), 10 | weekdaysMin : "sø_ma_ti_on_to_fr_lø".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "YYYY-MM-DD", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: '[I dag klokken] LT', 20 | nextDay: '[I morgen klokken] LT', 21 | nextWeek: 'dddd [klokken] LT', 22 | lastDay: '[I går klokken] LT', 23 | lastWeek: '[Forrige] dddd [klokken] LT', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : "om %s", 28 | past : "for %s siden", 29 | s : "noen sekunder", 30 | m : "ett minutt", 31 | mm : "%d minutter", 32 | h : "en time", 33 | hh : "%d timer", 34 | d : "en dag", 35 | dd : "%d dager", 36 | M : "en måned", 37 | MM : "%d måneder", 38 | y : "ett år", 39 | yy : "%d år" 40 | }, 41 | ordinal : function (number) { 42 | return '.'; 43 | } 44 | }; 45 | 46 | // Node 47 | if (typeof module !== 'undefined' && module.exports) { 48 | module.exports = lang; 49 | } 50 | // Browser 51 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 52 | this.moment.lang('nb', lang); 53 | } 54 | }()); 55 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/nl.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : dutch (nl) 3 | // author : Joris Röling : https://github.com/jjupiter 4 | (function () { 5 | var monthsShortWithDots = "jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"); 6 | var monthsShortWithoutDots = "jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"); 7 | var lang = { 8 | months : "januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"), 9 | monthsShort : function (m, format) { 10 | if (/-MMM-/.test(format)) { 11 | return monthsShortWithoutDots[m.month()]; 12 | } else { 13 | return monthsShortWithDots[m.month()]; 14 | } 15 | }, 16 | weekdays : "zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"), 17 | weekdaysShort : "zo._ma._di._wo._do._vr._za.".split("_"), 18 | weekdaysMin : "Zo_Ma_Di_Wo_Do_Vr_Za".split("_"), 19 | longDateFormat : { 20 | LT : "HH:mm", 21 | L : "DD-MM-YYYY", 22 | LL : "D MMMM YYYY", 23 | LLL : "D MMMM YYYY LT", 24 | LLLL : "dddd D MMMM YYYY LT" 25 | }, 26 | calendar : { 27 | sameDay: '[Vandaag om] LT', 28 | nextDay: '[Morgen om] LT', 29 | nextWeek: 'dddd [om] LT', 30 | lastDay: '[Gisteren om] LT', 31 | lastWeek: '[afgelopen] dddd [om] LT', 32 | sameElse: 'L' 33 | }, 34 | relativeTime : { 35 | future : "over %s", 36 | past : "%s geleden", 37 | s : "een paar seconden", 38 | m : "één minuut", 39 | mm : "%d minuten", 40 | h : "één uur", 41 | hh : "%d uur", 42 | d : "één dag", 43 | dd : "%d dagen", 44 | M : "één maand", 45 | MM : "%d maanden", 46 | y : "één jaar", 47 | yy : "%d jaar" 48 | }, 49 | ordinal : function (number) { 50 | return (number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'; 51 | } 52 | }; 53 | 54 | // Node 55 | if (typeof module !== 'undefined' && module.exports) { 56 | module.exports = lang; 57 | } 58 | // Browser 59 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 60 | this.moment.lang('nl', lang); 61 | } 62 | }()); 63 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/pl.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : polish (pl) 3 | // author : Rafal Hirsz : https://github.com/evoL 4 | (function () { 5 | var plural = function (n) { 6 | return (n % 10 < 5) && (n % 10 > 1) && (~~(n / 10) !== 1); 7 | }, 8 | 9 | translate = function (number, withoutSuffix, key) { 10 | var result = number + " "; 11 | switch (key) { 12 | case 'm': 13 | return withoutSuffix ? 'minuta' : 'minutę'; 14 | case 'mm': 15 | return result + (plural(number) ? 'minuty' : 'minut'); 16 | case 'h': 17 | return withoutSuffix ? 'godzina' : 'godzinę'; 18 | case 'hh': 19 | return result + (plural(number) ? 'godziny' : 'godzin'); 20 | case 'MM': 21 | return result + (plural(number) ? 'miesiące' : 'miesięcy'); 22 | case 'yy': 23 | return result + (plural(number) ? 'lata' : 'lat'); 24 | } 25 | }, 26 | 27 | lang = { 28 | months : "styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"), 29 | monthsShort : "sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"), 30 | weekdays : "niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"), 31 | weekdaysShort : "nie_pon_wt_śr_czw_pt_sb".split("_"), 32 | weekdaysMin : "N_Pn_Wt_Śr_Cz_Pt_So".split("_"), 33 | longDateFormat : { 34 | LT : "HH:mm", 35 | L : "DD-MM-YYYY", 36 | LL : "D MMMM YYYY", 37 | LLL : "D MMMM YYYY LT", 38 | LLLL : "dddd, D MMMM YYYY LT" 39 | }, 40 | calendar : { 41 | sameDay: '[Dziś o] LT', 42 | nextDay: '[Jutro o] LT', 43 | nextWeek: '[W] dddd [o] LT', 44 | lastDay: '[Wczoraj o] LT', 45 | lastWeek: '[W zeszły/łą] dddd [o] LT', 46 | sameElse: 'L' 47 | }, 48 | relativeTime : { 49 | future : "za %s", 50 | past : "%s temu", 51 | s : "kilka sekund", 52 | m : translate, 53 | mm : translate, 54 | h : translate, 55 | hh : translate, 56 | d : "1 dzień", 57 | dd : '%d dni', 58 | M : "miesiąc", 59 | MM : translate, 60 | y : "rok", 61 | yy : translate 62 | }, 63 | ordinal : function (number) { 64 | return '.'; 65 | } 66 | }; 67 | 68 | // Node 69 | if (typeof module !== 'undefined' && module.exports) { 70 | module.exports = lang; 71 | } 72 | // Browser 73 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 74 | this.moment.lang('pl', lang); 75 | } 76 | }()); 77 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/pt-br.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : brazilian portuguese (pt-br) 3 | // author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira 4 | (function () { 5 | var lang = { 6 | months : "Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"), 7 | monthsShort : "Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"), 8 | weekdays : "Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"), 9 | weekdaysShort : "Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"), 10 | weekdaysMin : "Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D \\de MMMM \\de YYYY", 15 | LLL : "D \\de MMMM \\de YYYY LT", 16 | LLLL : "dddd, D \\de MMMM \\de YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: '[Hoje às] LT', 20 | nextDay: '[Amanhã às] LT', 21 | nextWeek: 'dddd [às] LT', 22 | lastDay: '[Ontem às] LT', 23 | lastWeek: function () { 24 | return (this.day() === 0 || this.day() === 6) ? 25 | '[Último] dddd [às] LT' : // Saturday + Sunday 26 | '[Última] dddd [às] LT'; // Monday - Friday 27 | }, 28 | sameElse: 'L' 29 | }, 30 | relativeTime : { 31 | future : "em %s", 32 | past : "%s atrás", 33 | s : "segundos", 34 | m : "um minuto", 35 | mm : "%d minutos", 36 | h : "uma hora", 37 | hh : "%d horas", 38 | d : "um dia", 39 | dd : "%d dias", 40 | M : "um mês", 41 | MM : "%d meses", 42 | y : "um ano", 43 | yy : "%d anos" 44 | }, 45 | ordinal : function (number) { 46 | return 'º'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('pt-br', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/pt.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : portuguese (pt) 3 | // author : Jefferson : https://github.com/jalex79 4 | (function () { 5 | var lang = { 6 | months : "Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"), 7 | monthsShort : "Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"), 8 | weekdays : "Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"), 9 | weekdaysShort : "Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"), 10 | weekdaysMin : "Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "DD/MM/YYYY", 14 | LL : "D \\de MMMM \\de YYYY", 15 | LLL : "D \\de MMMM \\de YYYY LT", 16 | LLLL : "dddd, D \\de MMMM \\de YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: '[Hoje às] LT', 20 | nextDay: '[Amanhã às] LT', 21 | nextWeek: 'dddd [às] LT', 22 | lastDay: '[Ontem às] LT', 23 | lastWeek: function () { 24 | return (this.day() === 0 || this.day() === 6) ? 25 | '[Último] dddd [às] LT' : // Saturday + Sunday 26 | '[Última] dddd [às] LT'; // Monday - Friday 27 | }, 28 | sameElse: 'L' 29 | }, 30 | relativeTime : { 31 | future : "em %s", 32 | past : "%s atrás", 33 | s : "segundos", 34 | m : "um minuto", 35 | mm : "%d minutos", 36 | h : "uma hora", 37 | hh : "%d horas", 38 | d : "um dia", 39 | dd : "%d dias", 40 | M : "um mês", 41 | MM : "%d meses", 42 | y : "um ano", 43 | yy : "%d anos" 44 | }, 45 | ordinal : function (number) { 46 | return 'º'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('pt', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/ro.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : romanian (ro) 3 | // author : Vlad Gurdiga : https://github.com/gurdiga 4 | // author : Valentin Agachi : https://github.com/avaly 5 | (function () { 6 | var lang = { 7 | months : "Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie".split("_"), 8 | monthsShort : "Ian_Feb_Mar_Apr_Mai_Iun_Iul_Aug_Sep_Oct_Noi_Dec".split("_"), 9 | weekdays : "Duminică_Luni_Marţi_Miercuri_Joi_Vineri_Sâmbătă".split("_"), 10 | weekdaysShort : "Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"), 11 | weekdaysMin : "Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"), 12 | longDateFormat : { 13 | LT : "H:mm", 14 | L : "DD/MM/YYYY", 15 | LL : "D MMMM YYYY", 16 | LLL : "D MMMM YYYY H:mm", 17 | LLLL : "dddd, D MMMM YYYY H:mm" 18 | }, 19 | calendar : { 20 | sameDay: "[azi la] LT", 21 | nextDay: '[mâine la] LT', 22 | nextWeek: 'dddd [la] LT', 23 | lastDay: '[ieri la] LT', 24 | lastWeek: '[fosta] dddd [la] LT', 25 | sameElse: 'L' 26 | }, 27 | relativeTime : { 28 | future : "peste %s", 29 | past : "%s în urmă", 30 | s : "câteva secunde", 31 | m : "un minut", 32 | mm : "%d minute", 33 | h : "o oră", 34 | hh : "%d ore", 35 | d : "o zi", 36 | dd : "%d zile", 37 | M : "o lună", 38 | MM : "%d luni", 39 | y : "un an", 40 | yy : "%d ani" 41 | }, 42 | ordinal : function (number) { 43 | return ''; 44 | } 45 | }; 46 | 47 | // Node 48 | if (typeof module !== 'undefined') { 49 | module.exports = lang; 50 | } 51 | // Browser 52 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 53 | this.moment.lang('ro', lang); 54 | } 55 | }()); 56 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/sv.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : swedish (sv) 3 | // author : Jens Alm : https://github.com/ulmus 4 | (function () { 5 | var lang = { 6 | months : "januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"), 7 | monthsShort : "jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"), 8 | weekdays : "söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"), 9 | weekdaysShort : "sön_mån_tis_ons_tor_fre_lör".split("_"), 10 | weekdaysMin : "sö_må_ti_on_to_fr_lö".split("_"), 11 | longDateFormat : { 12 | LT : "HH:mm", 13 | L : "YYYY-MM-DD", 14 | LL : "D MMMM YYYY", 15 | LLL : "D MMMM YYYY LT", 16 | LLLL : "dddd D MMMM YYYY LT" 17 | }, 18 | calendar : { 19 | sameDay: '[Idag klockan] LT', 20 | nextDay: '[Imorgon klockan] LT', 21 | lastDay: '[Igår klockan] LT', 22 | nextWeek: 'dddd [klockan] LT', 23 | lastWeek: '[Förra] dddd[en klockan] LT', 24 | sameElse: 'L' 25 | }, 26 | relativeTime : { 27 | future : "om %s", 28 | past : "för %s sen", 29 | s : "några sekunder", 30 | m : "en minut", 31 | mm : "%d minuter", 32 | h : "en timme", 33 | hh : "%d timmar", 34 | d : "en dag", 35 | dd : "%d dagar", 36 | M : "en månad", 37 | MM : "%d månader", 38 | y : "ett år", 39 | yy : "%d år" 40 | }, 41 | ordinal : function (number) { 42 | var b = number % 10; 43 | return (~~ (number % 100 / 10) === 1) ? 'e' : 44 | (b === 1) ? 'a' : 45 | (b === 2) ? 'a' : 46 | (b === 3) ? 'e' : 'e'; 47 | } 48 | }; 49 | 50 | // Node 51 | if (typeof module !== 'undefined' && module.exports) { 52 | module.exports = lang; 53 | } 54 | // Browser 55 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 56 | this.moment.lang('sv', lang); 57 | } 58 | }()); 59 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/tr.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : turkish (tr) 3 | // authors : Erhan Gundogan : https://github.com/erhangundogan, 4 | // Burak Yiğit Kaya: https://github.com/BYK 5 | (function () { 6 | var suffixes = { 7 | 1: "'inci", 8 | 5: "'inci", 9 | 8: "'inci", 10 | 70: "'inci", 11 | 80: "'inci", 12 | 13 | 2: "'nci", 14 | 7: "'nci", 15 | 20: "'nci", 16 | 50: "'nci", 17 | 18 | 3: "'üncü", 19 | 4: "'üncü", 20 | 100: "'üncü", 21 | 22 | 6: "'ncı", 23 | 24 | 9: "'uncu", 25 | 10: "'uncu", 26 | 30: "'uncu", 27 | 28 | 60: "'ıncı", 29 | 90: "'ıncı" 30 | }; 31 | var lang = { 32 | months : "Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"), 33 | monthsShort : "Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"), 34 | weekdays : "Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"), 35 | weekdaysShort : "Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"), 36 | weekdaysMin : "Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"), 37 | longDateFormat : { 38 | LT : "HH:mm", 39 | L : "DD.MM.YYYY", 40 | LL : "D MMMM YYYY", 41 | LLL : "D MMMM YYYY LT", 42 | LLLL : "dddd, D MMMM YYYY LT" 43 | }, 44 | calendar : { 45 | sameDay : '[bugün saat] LT', 46 | nextDay : '[yarın saat] LT', 47 | nextWeek : '[haftaya] dddd [saat] LT', 48 | lastDay : '[dün] LT', 49 | lastWeek : '[geçen hafta] dddd [saat] LT', 50 | sameElse : 'L' 51 | }, 52 | relativeTime : { 53 | future : "%s sonra", 54 | past : "%s önce", 55 | s : "birkaç saniye", 56 | m : "bir dakika", 57 | mm : "%d dakika", 58 | h : "bir saat", 59 | hh : "%d saat", 60 | d : "bir gün", 61 | dd : "%d gün", 62 | M : "bir ay", 63 | MM : "%d ay", 64 | y : "bir yıl", 65 | yy : "%d yıl" 66 | }, 67 | ordinal : function (number) { 68 | if (number === 0) { // special case for zero 69 | return "'ıncı"; 70 | } 71 | 72 | var a = number % 10; 73 | var b = number % 100 - a; 74 | var c = number >= 100 ? 100 : null; 75 | 76 | return suffixes[a] || suffixes[b] || suffixes[c]; 77 | } 78 | }; 79 | 80 | // Node 81 | if (typeof module !== 'undefined' && module.exports) { 82 | module.exports = lang; 83 | } 84 | // Browser 85 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 86 | this.moment.lang('tr', lang); 87 | } 88 | }()); 89 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/zh-cn.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : chinese 3 | // author : suupic : https://github.com/suupic 4 | (function () { 5 | var lang = { 6 | months : "一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"), 7 | monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 8 | weekdays : "星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"), 9 | weekdaysShort : "周日_周一_周二_周三_周四_周五_周六".split("_"), 10 | weekdaysMin : "日_一_二_三_四_五_六".split("_"), 11 | longDateFormat : { 12 | LT : "Ah点mm", 13 | L : "YYYY年MMMD日", 14 | LL : "YYYY年MMMD日", 15 | LLL : "YYYY年MMMD日LT", 16 | LLLL : "YYYY年MMMD日ddddLT" 17 | }, 18 | meridiem : function (hour, minute, isLower) { 19 | if (hour < 9) { 20 | return "早上"; 21 | } else if (hour < 11 && minute < 30) { 22 | return "上午"; 23 | } else if (hour < 13 && minute < 30) { 24 | return "中午"; 25 | } else if (hour < 18) { 26 | return "下午"; 27 | } else { 28 | return "晚上"; 29 | } 30 | }, 31 | calendar : { 32 | sameDay : '[今天]LT', 33 | nextDay : '[明天]LT', 34 | nextWeek : '[下]ddddLT', 35 | lastDay : '[昨天]LT', 36 | lastWeek : '[上]ddddLT', 37 | sameElse : 'L' 38 | }, 39 | relativeTime : { 40 | future : "%s内", 41 | past : "%s前", 42 | s : "几秒", 43 | m : "1分钟", 44 | mm : "%d分钟", 45 | h : "1小时", 46 | hh : "%d小时", 47 | d : "1天", 48 | dd : "%d天", 49 | M : "1个月", 50 | MM : "%d个月", 51 | y : "1年", 52 | yy : "%d年" 53 | }, 54 | ordinal : function (number) { 55 | return ''; 56 | } 57 | }; 58 | 59 | // Node 60 | if (typeof module !== 'undefined' && module.exports) { 61 | module.exports = lang; 62 | } 63 | // Browser 64 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 65 | this.moment.lang('zh-cn', lang); 66 | } 67 | }()); 68 | -------------------------------------------------------------------------------- /Scripts/moment.i18n/zh-tw.js: -------------------------------------------------------------------------------- 1 | // moment.js language configuration 2 | // language : traditional chinese (zh-tw) 3 | // author : Ben : https://github.com/ben-lin 4 | (function () { 5 | var lang = { 6 | months : "一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"), 7 | monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"), 8 | weekdays : "星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"), 9 | weekdaysShort : "週日_週一_週二_週三_週四_週五_週六".split("_"), 10 | weekdaysMin : "日_一_二_三_四_五_六".split("_"), 11 | longDateFormat : { 12 | LT : "Ah點mm", 13 | L : "YYYY年MMMD日", 14 | LL : "YYYY年MMMD日", 15 | LLL : "YYYY年MMMD日LT", 16 | LLLL : "YYYY年MMMD日ddddLT" 17 | }, 18 | meridiem : function (hour, minute, isLower) { 19 | if (hour < 9) { 20 | return "早上"; 21 | } else if (hour < 11 && minute < 30) { 22 | return "上午"; 23 | } else if (hour < 13 && minute < 30) { 24 | return "中午"; 25 | } else if (hour < 18) { 26 | return "下午"; 27 | } else { 28 | return "晚上"; 29 | } 30 | }, 31 | calendar : { 32 | sameDay : '[今天]LT', 33 | nextDay : '[明天]LT', 34 | nextWeek : '[下]ddddLT', 35 | lastDay : '[昨天]LT', 36 | lastWeek : '[上]ddddLT', 37 | sameElse : 'L' 38 | }, 39 | relativeTime : { 40 | future : "%s內", 41 | past : "%s前", 42 | s : "幾秒", 43 | m : "一分鐘", 44 | mm : "%d分鐘", 45 | h : "一小時", 46 | hh : "%d小時", 47 | d : "一天", 48 | dd : "%d天", 49 | M : "一個月", 50 | MM : "%d個月", 51 | y : "一年", 52 | yy : "%d年" 53 | }, 54 | ordinal : function (number) { 55 | return ''; 56 | } 57 | }; 58 | 59 | // Node 60 | if (typeof module !== 'undefined' && module.exports) { 61 | module.exports = lang; 62 | } 63 | // Browser 64 | if (typeof window !== 'undefined' && this.moment && this.moment.lang) { 65 | this.moment.lang('zh-tw', lang); 66 | } 67 | }()); 68 | -------------------------------------------------------------------------------- /Scripts/site.js: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// 7 | 8 | $(function () { 9 | window.prettyPrint && window.prettyPrint(); 10 | moment.locale('en'); 11 | 12 | var model = { 13 | birthdayIso: ko.observable('1978-12-02'), 14 | birthdayFormat: ko.observable('2/12/78'), 15 | birthdayDate: ko.observable(new Date('1978-12-02T00:00:00')), 16 | birthdayMoment: ko.observable(moment('1978-12-02T00:00:00')), 17 | birthdayThisYearMoment: ko.observable(moment('2013-12-02T00:00:00')) 18 | }; 19 | 20 | ko.applyBindings(model); 21 | 22 | $('#dp1').datepicker({ 23 | format: 'MM-DD-YYYY', 24 | autoHide: false 25 | }); 26 | $('#dp2').datepicker(); 27 | $('#dp3').datepicker(); 28 | $('#dp3').datepicker(); 29 | $('#dp6').datepicker(); 30 | $('#dpYears').datepicker(); 31 | $('#dpMonths').datepicker(); 32 | 33 | var startDate = moment([2012, 1, 20]); 34 | var endDate = moment([2012, 1, 25]); 35 | var $dp4 = $('#dp4').datepicker(); 36 | $dp4.on('changeDate', function (ev) { 37 | var date = $dp4.datepicker('get'); 38 | $('#startDate').text($dp4.datepicker('getAsText')); 39 | if ((date && date.valueOf()) > (endDate && endDate.valueOf())) { 40 | $('#alert').show().find('strong').text('The start date cannot be after the end date'); 41 | } else { 42 | $('#alert').hide(); 43 | startDate = date; 44 | } 45 | $dp4.datepicker('hide'); 46 | }); 47 | var $dp5 = $('#dp5').datepicker(); 48 | $dp5.on('changeDate', function (ev) { 49 | var date = $dp5.datepicker('get'); 50 | $('#endDate').text($dp5.datepicker('getAsText')); 51 | if ((date && date.valueOf()) < (startDate && startDate.valueOf())) { 52 | $('#alert').show().find('strong').text('The end date cannot be before the start date'); 53 | } else { 54 | $('#alert').hide(); 55 | endDate = date; 56 | } 57 | $dp5.datepicker('hide'); 58 | }); 59 | }); 60 | //# sourceMappingURL=site.js.map 61 | -------------------------------------------------------------------------------- /Scripts/site.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"site.js","sourceRoot":"","sources":["site.ts"],"names":[],"mappings":"AAAA,2DAA2D;AAC3D,mDAAmD;AACnD,uDAAuD;AACvD,mDAAmD;AACnD,yDAAyD;AACzD,oEAAoE;;AAOpE,CAAC,CAAC;IACE,MAAM,CAAC,WAAW,IAAI,MAAM,CAAC,WAAW,CAAC,CAAC;IAC1C,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC;;IAEnB,IAAI,KAAK,GAAG;QACR,WAAW,EAAE,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC;QACxC,cAAc,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC;QACxC,YAAY,EAAE,EAAE,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,qBAAqB,CAAC,CAAC;QAC5D,cAAc,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;QAC5D,sBAAsB,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;KACvE;;IAED,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC;;IAEvB,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC;QACjB,MAAM,EAAE,YAAY;QACpB,QAAQ,EAAE,KAAK;KAClB,CAAC;IACF,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,CAAC;IAC1B,CAAC,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,CAAC;;IAG3B,IAAI,SAAS,GAAG,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;IACrC,IAAI,OAAO,GAAG,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;IACnC,IAAI,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACjC,IAAI,CAAC,EAAE,CAAC,YAAY,EAAE,UAAU,EAAE;QAC9B,IAAI,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC;QACjC,CAAC,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;QAClD,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE;YAC3D,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,6CAA6C,CAAC;SACxF,KAAM;YACH,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC;YAClB,SAAS,GAAG,IAAI;SACnB;QACD,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC;IAC3B,CAAC,CAAC;IACF,IAAI,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IACjC,IAAI,CAAC,EAAE,CAAC,YAAY,EAAE,UAAU,EAAE;QAC9B,IAAI,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC;QACjC,CAAC,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;QAChD,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,IAAI,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE;YAC/D,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,8CAA8C,CAAC;SACzF,KAAM;YACH,CAAC,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC;YAClB,OAAO,GAAG,IAAI;SACjB;QACD,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC;IAC3B,CAAC,CAAC;AACN,CAAC,CAAC"} -------------------------------------------------------------------------------- /Scripts/site.min.js: -------------------------------------------------------------------------------- 1 | $(function(){var u,n;window.prettyPrint&&window.prettyPrint();moment.locale("en");u={birthdayIso:ko.observable("1978-12-02"),birthdayFormat:ko.observable("2/12/78"),birthdayDate:ko.observable(new Date("1978-12-02T00:00:00")),birthdayMoment:ko.observable(moment("1978-12-02T00:00:00")),birthdayThisYearMoment:ko.observable(moment("2013-12-02T00:00:00"))};ko.applyBindings(u);$("#dp1").datepicker({format:"MM-DD-YYYY",autoHide:!1});$("#dp2").datepicker();$("#dp3").datepicker();$("#dp3").datepicker();$("#dp6").datepicker();$("#dpYears").datepicker();$("#dpMonths").datepicker();var i=moment([2012,1,20]),r=moment([2012,1,25]),t=$("#dp4").datepicker();t.on("changeDate",function(){var n=t.datepicker("get");$("#startDate").text(t.datepicker("getAsText"));(n&&n.valueOf())>(r&&r.valueOf())?$("#alert").show().find("strong").text("The start date cannot be after the end date"):($("#alert").hide(),i=n);t.datepicker("hide")});n=$("#dp5").datepicker();n.on("changeDate",function(){var t=n.datepicker("get");$("#endDate").text(n.datepicker("getAsText"));(t&&t.valueOf())<(i&&i.valueOf())?$("#alert").show().find("strong").text("The end date cannot be before the start date"):($("#alert").hide(),r=t);n.datepicker("hide")})}); 2 | //# sourceMappingURL=site.min.js.map 3 | -------------------------------------------------------------------------------- /Scripts/site.min.js.map: -------------------------------------------------------------------------------- 1 | { 2 | "version":3, 3 | "file":"site.min.js", 4 | "lineCount":1, 5 | "mappings":"AAOAA,CAAC,CAAC,QAAS,CAAA,CAAG,CAIV,IAAIC,EAmCAC,CA7BH,CATDC,MAAMC,YAAa,EAAGD,MAAMC,YAAY,CAAA,CAAE,CAC1CC,MAAMC,OAAO,CAAC,IAAD,CAAM,CAEfL,CAAM,CAAE,CACR,WAAW,CAAEM,EAAEC,WAAW,CAAC,YAAD,CAAc,CACxC,cAAc,CAAED,EAAEC,WAAW,CAAC,SAAD,CAAW,CACxC,YAAY,CAAED,EAAEC,WAAW,CAAC,IAAIC,IAAI,CAAC,qBAAD,CAAT,CAAiC,CAC5D,cAAc,CAAEF,EAAEC,WAAW,CAACH,MAAM,CAAC,qBAAD,CAAP,CAA+B,CAC5D,sBAAsB,CAAEE,EAAEC,WAAW,CAACH,MAAM,CAAC,qBAAD,CAAP,CAL7B,C,CAQZE,EAAEG,cAAc,CAACT,CAAD,CAAO,CAEvBD,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAC,CACjB,MAAM,CAAE,YAAY,CACpB,QAAQ,CAAE,CAAA,CAFO,CAAD,CAGlB,CACFX,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,CAAE,CACtBX,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,CAAE,CACtBX,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,CAAE,CACtBX,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,CAAE,CACtBX,CAAC,CAAC,UAAD,CAAYW,WAAW,CAAA,CAAE,CAC1BX,CAAC,CAAC,WAAD,CAAaW,WAAW,CAAA,CAAE,CAE3B,IAAIC,EAAYP,MAAM,CAAC,CAAC,IAAI,CAAE,CAAC,CAAE,EAAV,CAAD,EAClBQ,EAAUR,MAAM,CAAC,CAAC,IAAI,CAAE,CAAC,CAAE,EAAV,CAAD,EAChBS,EAAOd,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,CAFM,CAGrCG,CAAIC,GAAG,CAAC,YAAY,CAAE,QAAS,CAAA,CAAK,CAChC,IAAIC,EAAOF,CAAIH,WAAW,CAAC,KAAD,CAAO,CACjCX,CAAC,CAAC,YAAD,CAAciB,KAAK,CAACH,CAAIH,WAAW,CAAC,WAAD,CAAhB,CAA8B,CAC9C,CAACK,CAAK,EAAGA,CAAIE,QAAQ,CAAA,CAArB,CAAyB,CAAE,CAACL,CAAQ,EAAGA,CAAOK,QAAQ,CAAA,CAA3B,CAA/B,CACIlB,CAAC,CAAC,QAAD,CAAUmB,KAAK,CAAA,CAAEC,KAAK,CAAC,QAAD,CAAUH,KAAK,CAAC,6CAAD,CAD1C,EAGIjB,CAAC,CAAC,QAAD,CAAUqB,KAAK,CAAA,CAAE,CAClBT,CAAU,CAAEI,E,CAEhBF,CAAIH,WAAW,CAAC,MAAD,CATiB,CAA7B,CAUL,CACET,CAAK,CAAEF,CAAC,CAAC,MAAD,CAAQW,WAAW,CAAA,C,CAC/BT,CAAIa,GAAG,CAAC,YAAY,CAAE,QAAS,CAAA,CAAK,CAChC,IAAIC,EAAOd,CAAIS,WAAW,CAAC,KAAD,CAAO,CACjCX,CAAC,CAAC,UAAD,CAAYiB,KAAK,CAACf,CAAIS,WAAW,CAAC,WAAD,CAAhB,CAA8B,CAC5C,CAACK,CAAK,EAAGA,CAAIE,QAAQ,CAAA,CAArB,CAAyB,CAAE,CAACN,CAAU,EAAGA,CAASM,QAAQ,CAAA,CAA/B,CAA/B,CACIlB,CAAC,CAAC,QAAD,CAAUmB,KAAK,CAAA,CAAEC,KAAK,CAAC,QAAD,CAAUH,KAAK,CAAC,8CAAD,CAD1C,EAGIjB,CAAC,CAAC,QAAD,CAAUqB,KAAK,CAAA,CAAE,CAClBR,CAAQ,CAAEG,E,CAEdd,CAAIS,WAAW,CAAC,MAAD,CATiB,CAA7B,CAxCG,CAAb,CAmDC", 6 | "sources":["site.js"], 7 | "names":["$","model","$dp5","window","prettyPrint","moment","locale","ko","observable","Date","applyBindings","datepicker","startDate","endDate","$dp4","on","date","text","valueOf","show","find","hide"] 8 | } 9 | -------------------------------------------------------------------------------- /Scripts/site.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// 7 | 8 | 9 | interface Window extends /*ViewCSS, */MSEventAttachmentTarget, MSWindowExtensions, /*WindowPerformance, ScreenView, */EventTarget, WindowLocalStorage, WindowSessionStorage, WindowTimers { 10 | prettyPrint: () => void; 11 | } 12 | 13 | $(function () { 14 | window.prettyPrint && window.prettyPrint(); 15 | moment.locale('en'); 16 | 17 | var model = { 18 | birthdayIso: ko.observable('1978-12-02'), 19 | birthdayFormat: ko.observable('2/12/78'), 20 | birthdayDate: ko.observable(new Date('1978-12-02T00:00:00')), 21 | birthdayMoment: ko.observable(moment('1978-12-02T00:00:00')), 22 | birthdayThisYearMoment: ko.observable(moment('2013-12-02T00:00:00')) 23 | }; 24 | 25 | ko.applyBindings(model); 26 | 27 | $('#dp1').datepicker({ 28 | format: 'MM-DD-YYYY', 29 | autoHide: false 30 | }); 31 | $('#dp2').datepicker(); 32 | $('#dp3').datepicker(); 33 | $('#dp3').datepicker(); 34 | $('#dp6').datepicker(); 35 | $('#dpYears').datepicker(); 36 | $('#dpMonths').datepicker(); 37 | 38 | 39 | var startDate = moment([2012, 1, 20]); 40 | var endDate = moment([2012, 1, 25]); 41 | var $dp4 = $('#dp4').datepicker(); 42 | $dp4.on('changeDate', function (ev) { 43 | var date = $dp4.datepicker('get'); 44 | $('#startDate').text($dp4.datepicker('getAsText')); 45 | if ((date && date.valueOf()) > (endDate && endDate.valueOf())) { 46 | $('#alert').show().find('strong').text('The start date cannot be after the end date'); 47 | } else { 48 | $('#alert').hide(); 49 | startDate = date; 50 | } 51 | $dp4.datepicker('hide'); 52 | }); 53 | var $dp5 = $('#dp5').datepicker(); 54 | $dp5.on('changeDate', function (ev) { 55 | var date = $dp5.datepicker('get'); 56 | $('#endDate').text($dp5.datepicker('getAsText')); 57 | if ((date && date.valueOf()) < (startDate && startDate.valueOf())) { 58 | $('#alert').show().find('strong').text('The end date cannot be before the start date'); 59 | } else { 60 | $('#alert').hide(); 61 | endDate = date; 62 | } 63 | $dp5.datepicker('hide'); 64 | }); 65 | }); -------------------------------------------------------------------------------- /Scripts/typings/bootstrap/bootstrap.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Bootstrap 2.2 2 | // Project: http://twitter.github.com/bootstrap/ 3 | // Definitions by: Boris Yankov 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | 6 | 7 | /// 8 | 9 | interface ModalOptions { 10 | backdrop?: boolean; 11 | keyboard?: boolean; 12 | show?: boolean; 13 | remote?: string; 14 | } 15 | 16 | interface ModalOptionsBackdropString { 17 | backdrop?: string; // for "static" 18 | keyboard?: boolean; 19 | show?: boolean; 20 | remote?: string; 21 | } 22 | 23 | interface ScrollSpyOptions { 24 | offset?: number; 25 | } 26 | 27 | interface TooltipOptions { 28 | animation?: boolean; 29 | html?: boolean; 30 | placement?: any; 31 | selector?: string; 32 | title?: any; 33 | trigger?: string; 34 | delay?: any; 35 | container?: any; 36 | } 37 | 38 | interface PopoverOptions { 39 | animation?: boolean; 40 | html?: boolean; 41 | placement?: any; 42 | selector?: string; 43 | trigger?: string; 44 | title?: any; 45 | content?: any; 46 | delay?: any; 47 | container?: any; 48 | } 49 | 50 | interface CollapseOptions { 51 | parent?: any; 52 | toggle?: boolean; 53 | } 54 | 55 | interface CarouselOptions { 56 | interval?: number; 57 | pause?: string; 58 | } 59 | 60 | interface TypeaheadOptions { 61 | source?: any; 62 | items?: number; 63 | minLength?: number; 64 | matcher?: (item: any) => boolean; 65 | sorter?: (items: any[]) => any[]; 66 | updater?: (item: any) => any; 67 | highlighter?: (item: any) => string; 68 | } 69 | 70 | interface AffixOptions { 71 | offset?: any; 72 | } 73 | 74 | interface JQuery { 75 | modal(options?: ModalOptions): JQuery; 76 | modal(options?: ModalOptionsBackdropString): JQuery; 77 | modal(command: string): JQuery; 78 | 79 | dropdown(): JQuery; 80 | dropdown(command: string): JQuery; 81 | 82 | scrollspy(command: string): JQuery; 83 | scrollspy(options?: ScrollSpyOptions): JQuery; 84 | 85 | tab(): JQuery; 86 | tab(command: string): JQuery; 87 | 88 | tooltip(options?: TooltipOptions): JQuery; 89 | tooltip(command: string): JQuery; 90 | 91 | popover(options?: PopoverOptions): JQuery; 92 | popover(command: string): JQuery; 93 | 94 | alert(): JQuery; 95 | alert(command: string): JQuery; 96 | 97 | button(): JQuery; 98 | button(command: string): JQuery; 99 | 100 | collapse(options?: CollapseOptions): JQuery; 101 | collapse(command: string): JQuery; 102 | 103 | carousel(options?: CarouselOptions): JQuery; 104 | carousel(command: string): JQuery; 105 | 106 | typeahead(options?: TypeaheadOptions): JQuery; 107 | 108 | affix(options?: AffixOptions): JQuery; 109 | } 110 | -------------------------------------------------------------------------------- /Scripts/typings/knockout/knockout.amd.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Knockout 2.2 (as an AMD module) 2 | // Project: http://knockoutjs.com 3 | // Definitions by: Boris Yankov 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | /// 6 | 7 | declare module 'knockout' { 8 | export var utils: KnockoutUtils; 9 | export var memoization: KnockoutMemoization; 10 | export var bindingHandlers: KnockoutBindingHandlers; 11 | export var virtualElements: KnockoutVirtualElements; 12 | export var extenders: KnockoutExtenders; 13 | export function applyBindings(viewModel: any, rootNode?: any): void; 14 | export function applyBindingsToDescendants(viewModel: any, rootNode: any): void; 15 | export function applyBindingsToNode(node: Element, options: any, viewModel: any): void; 16 | export var subscribable: KnockoutSubscribableStatic; 17 | export var observable: KnockoutObservableStatic; 18 | export var computed: KnockoutComputedStatic; 19 | export var observableArray: KnockoutObservableArrayStatic; 20 | export function contextFor(node: any): any; 21 | export function isSubscribable(instance: any): boolean; 22 | export function toJSON(viewModel: any, replacer?: Function, space?: any): string; 23 | export function toJS(viewModel: any): any; 24 | export function isObservable(instance: any): boolean; 25 | export function isComputed(instance: any): boolean; 26 | export function dataFor(node: any): any; 27 | export function removeNode(node: Element); 28 | export function cleanNode(node: Element); 29 | export function renderTemplate(template: Function, viewModel: any, options?: any, target?: any, renderMode?: any); 30 | export function renderTemplate(template: string, viewModel: any, options?: any, target?: any, renderMode?: any); 31 | 32 | ////////////////////////////////// 33 | //// templateSources.js 34 | //////////////////////////////////// 35 | export var templateSources: KnockoutTemplateSources; 36 | //////////////////////////////////// 37 | //// templateEngine.js 38 | //////////////////////////////////// 39 | export var templateEngine: { 40 | prototype: KnockoutTemplateEngine; 41 | new (): KnockoutTemplateEngine; 42 | }; 43 | //////////////////////////////////// 44 | //// templateRewriting.js 45 | //////////////////////////////////// 46 | export var templateRewriting: { 47 | ensureTemplateIsRewritten(template, templateEngine, templateDocument); 48 | memoizeBindingAttributeSyntax(htmlString: string, templateEngine: KnockoutTemplateEngine); 49 | applyMemoizedBindingsToNextSibling(bindings); 50 | }; 51 | //////////////////////////////////// 52 | //// nativeTemplateEngine.js 53 | //////////////////////////////////// 54 | export var nativeTemplateEngine: { 55 | prototype: KnockoutNativeTemplateEngine; 56 | new (): KnockoutNativeTemplateEngine; 57 | instance: KnockoutNativeTemplateEngine; 58 | }; 59 | //////////////////////////////////// 60 | //// jqueryTmplTemplateEngine.js 61 | //////////////////////////////////// 62 | export var jqueryTmplTemplateEngine: { 63 | prototype: KnockoutTemplateEngine; 64 | renderTemplateSource(templateSource, bindingContext, options); 65 | createJavaScriptEvaluatorBlock(script: string): string; 66 | addTemplate(templateName, templateMarkup); 67 | }; 68 | //////////////////////////////////// 69 | //// templating.js 70 | //////////////////////////////////// 71 | export function setTemplateEngine(templateEngine: KnockoutNativeTemplateEngine); 72 | export function renderTemplate(template, dataOrBindingContext, options, targetNodeOrNodeArray, renderMode); 73 | export function renderTemplateForEach(template, arrayOrObservableArray, options, targetNode, parentBindingContext); 74 | export var expressionRewriting: { 75 | bindingRewriteValidators: any; 76 | }; 77 | 78 | /////////////////////////////////// 79 | export var bindingProvider: any; 80 | } -------------------------------------------------------------------------------- /Scripts/typings/moment/moment.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Moment.js 2.8.0 2 | // Project: https://github.com/timrwood/moment 3 | // Definitions by: Michael Lakerveld , Aaron King , Hiroki Horiuchi , Dick van den Brink , Adi Dahiya , Matt Brooks 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | 6 | /// 7 | 8 | declare var moment: moment.MomentStatic; 9 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "moment-datepicker", 3 | "version": "1.2.0", 4 | "main": ["./moment-datepicker/moment-datepicker.js", "./moment-datepicker/datepicker.css"], 5 | "ignore": [ 6 | ".gitignore", 7 | "Content", 8 | "index.html", 9 | "MomentDatepicker.csproj", 10 | "MomentDatepicker.sln", 11 | "nuget", 12 | "packages", 13 | "packages.config", 14 | "Scripts", 15 | "web.config" 16 | ], 17 | "dependencies": { 18 | "jquery": ">= 2.0.3", 19 | "moment": ">= 2.10.6" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /moment-datepicker/moment-datepicker-ko.js: -------------------------------------------------------------------------------- 1 | (function ($, ko, moment, undefined) { 2 | 3 | //#region Utils 4 | 5 | var detectDataType = function (value) { 6 | for (var fname in detectDataType.typeDetection) { 7 | var f = detectDataType[fname]; 8 | if (f(value)) { 9 | return detectDataType.typeDetection[fname]; 10 | } 11 | } 12 | return null; 13 | }; 14 | 15 | detectDataType.isString = function (value) { 16 | return typeof value === 'string'; 17 | }; 18 | detectDataType.isDate = function (value) { 19 | return typeof value === 'object' && Object.prototype.toString.call(value) === "[object Date]"; 20 | }; 21 | detectDataType.isMoment = function (value) { 22 | return moment.isMoment(value); 23 | }; 24 | detectDataType.typeDetection = { 25 | "isMoment": "moment", 26 | "isString": "string", 27 | "isDate": "date" 28 | }; 29 | 30 | var elBinder = function($el) { 31 | return { 32 | set: function(value) { 33 | if (value === undefined) { 34 | value = null; 35 | } 36 | var funcs = elBinder.functions[$el.data(elBinder.DATATYPE_KEY)] || elBinder.functions['_default']; 37 | var func = funcs['set'] || elBinder.functions['_default']['set']; 38 | return func($el, value); 39 | }, 40 | get: function() { 41 | var funcs = elBinder.functions[$el.data(elBinder.DATATYPE_KEY)] || elBinder.functions['_default']; 42 | var func = funcs['get'] || elBinder.functions['_default']['get']; 43 | return func($el); 44 | }, 45 | register: function(dataType) { 46 | $el.data(elBinder.DATATYPE_KEY, dataType); 47 | } 48 | } 49 | }; 50 | 51 | elBinder.DATATYPE_KEY = "datepicker.ko.dataType"; 52 | 53 | elBinder.functions = { 54 | '_default': { 55 | get: function ($el) { 56 | return $el.datepicker('get'); 57 | }, 58 | set: function ($el, value) { 59 | $el.datepicker('set', value); 60 | } 61 | }, 62 | 'iso': { 63 | get: function ($el) { 64 | var value = $el.datepicker('get'); 65 | return (value && value.format('YYYY-MM-DD')); 66 | }, 67 | set: function ($el, value) { 68 | var mnt = moment(value); 69 | $el.datepicker('set', mnt); 70 | } 71 | }, 72 | 'format': { 73 | get: function ($el) { 74 | return $el.datepicker('getAsText'); 75 | } 76 | }, 77 | 'date': { 78 | get: function ($el) { 79 | var value = $el.datepicker('get'); 80 | return (value && value.toDate()); 81 | } 82 | } 83 | }; 84 | 85 | //#endregion 86 | 87 | ko.bindingHandlers.datepicker = { 88 | init: function (element, valueAccessor, allBindingsAccessor) { 89 | var options = allBindingsAccessor().datepickerOptions || {}; 90 | var dataType = options.dataType || detectDataType(ko.utils.unwrapObservable(valueAccessor())); 91 | dataType = !dataType || dataType == 'string' ? 'iso' : dataType; 92 | var $el = $(element).datepicker(options); 93 | 94 | elBinder($el).register(dataType); 95 | 96 | ko.utils.registerEventHandler(element, "changeDate", function (event) { 97 | var accessor = valueAccessor(); 98 | if (ko.isObservable(accessor)) { 99 | var value = elBinder($el).get(); 100 | accessor(value); 101 | } 102 | }); 103 | }, 104 | update: function (element, valueAccessor) { 105 | elBinder($(element)) 106 | .set(ko.utils.unwrapObservable(valueAccessor())); 107 | } 108 | }; 109 | })(jQuery, this.ko, this.moment); 110 | -------------------------------------------------------------------------------- /moment-datepicker/moment-datepicker.d.ts: -------------------------------------------------------------------------------- 1 | interface JQuery { 2 | datepicker(options?: any): JQuery; 3 | datepicker(action: string, value?: any): any; 4 | } -------------------------------------------------------------------------------- /nuget/MomentDatepicker.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MomentDatepicker 5 | 1.2.0 6 | andresmoschini 7 | andresmoschini 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | http://makingsense.github.com/moment-datepicker/ 10 | false 11 | A JavaScript Datepicker that takes advantage of twitter-bootstrap and moment.js. Ready for TypeScript and Knockout 12 | Remove dependencies restriction and fix nuspec file 13 | Copyright 2015 14 | Datepicker Bootstrap Moment jQuery Knockout TypeScript 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /nuget/pack.cmd: -------------------------------------------------------------------------------- 1 | ..\packages\NuGet.CommandLine.2.7.1\tools\NuGet.exe pack MomentDatepicker.nuspec 2 | -------------------------------------------------------------------------------- /nuget/pack.sh: -------------------------------------------------------------------------------- 1 | mono --runtime=v4.0 ../packages/NuGet.CommandLine.2.2.1/tools/NuGet.exe pack MomentDatepicker.nuspec 2 | -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Bootstrap.Typescript.Definitions.1.0.0/Bootstrap.Typescript.Definitions.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Bootstrap.Typescript.Definitions.1.0.0/Bootstrap.Typescript.Definitions.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Bootstrap.Typescript.Definitions.1.0.0/Bootstrap.Typescript.Definitions.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bootstrap.Typescript.Definitions 5 | 1.0.0 6 | 7 | <authors>Derik Whittaker</authors> 8 | <owners>Derik Whittaker</owners> 9 | <licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl> 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 11 | <description>Typescript Definitions for Twitter Bootstrap</description> 12 | <releaseNotes>d.ts file from https://github.com/borisyankov/DefinitelyTyped</releaseNotes> 13 | <dependencies> 14 | <dependency id="jquery.Typescript.Definitions" version="1.0.0" /> 15 | </dependencies> 16 | <references /> 17 | </metadata> 18 | </package> -------------------------------------------------------------------------------- /packages/Bootstrap.Typescript.Definitions.1.0.0/content/Scripts/d.ts/bootstrap/bootstrap.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Bootstrap 2.2 2 | // Project: http://twitter.github.com/bootstrap/ 3 | // Definitions by: Boris Yankov <https://github.com/borisyankov/> 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | 6 | /// <reference path="../jquery/jquery.d.ts" /> 7 | 8 | interface ModalOptions { 9 | backdrop?: bool; 10 | keyboard?: bool; 11 | show?: bool; 12 | remote?: string; 13 | } 14 | 15 | interface ScrollSpyOptions { 16 | offset?: number; 17 | } 18 | 19 | interface TooltipOptions { 20 | animation?: bool; 21 | html?: bool; 22 | placement?: any; 23 | selector?: string; 24 | title?: any; 25 | trigger?: string; 26 | delay?: any; 27 | } 28 | 29 | interface PopoverOptions { 30 | animation?: bool; 31 | html?: bool; 32 | placement?: any; 33 | selector?: string; 34 | trigger?: string; 35 | title?: any; 36 | content?: any; 37 | delay?: any; 38 | } 39 | 40 | interface CollapseOptions { 41 | parent?: any; 42 | toggle?: bool; 43 | } 44 | 45 | interface CarouselOptions { 46 | interval?: number; 47 | pause?: string; 48 | } 49 | 50 | interface TypeaheadOptions { 51 | source?: any; 52 | items?: number; 53 | minLength?: number; 54 | matcher?: () => any; 55 | sorter?: () => any; 56 | highlighter?: () => any; 57 | } 58 | 59 | interface AffixOptions { 60 | offset?: any; 61 | } 62 | 63 | interface JQuery { 64 | modal(options?: ModalOptions): JQuery; 65 | modal(command: string): JQuery; 66 | 67 | dropdown(): JQuery; 68 | dropdown(command: string): JQuery; 69 | 70 | scrollspy(command: string): JQuery; 71 | scrollspy(options?: ScrollSpyOptions): JQuery; 72 | 73 | tab(): JQuery; 74 | tab(command: string): JQuery; 75 | 76 | tooltip(options?: TooltipOptions): JQuery; 77 | tooltip(command: string): JQuery; 78 | 79 | popover(options?: PopoverOptions): JQuery; 80 | popover(command: string): JQuery; 81 | 82 | alert(): JQuery; 83 | alert(command: string): JQuery; 84 | 85 | button(): JQuery; 86 | button(command: string): JQuery; 87 | 88 | collapse(options?: CollapseOptions): JQuery; 89 | collapse(command: string): JQuery; 90 | 91 | carousel(options?: CarouselOptions): JQuery; 92 | carousel(command: string): JQuery; 93 | 94 | typeahead(options?: TypeaheadOptions): JQuery; 95 | 96 | affix(options?: AffixOptions): JQuery; 97 | } 98 | -------------------------------------------------------------------------------- /packages/Knockout.Typescript.Definitions.1.0.0/Knockout.Typescript.Definitions.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Knockout.Typescript.Definitions.1.0.0/Knockout.Typescript.Definitions.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Knockout.Typescript.Definitions.1.0.0/Knockout.Typescript.Definitions.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>Knockout.Typescript.Definitions</id> 5 | <version>1.0.0</version> 6 | <title /> 7 | <authors>Derik Whittaker</authors> 8 | <owners>Derik Whittaker</owners> 9 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 10 | <description>Typescript Definitions for Knockoutjs</description> 11 | <references /> 12 | </metadata> 13 | </package> -------------------------------------------------------------------------------- /packages/Moment.Typescript.Definitions.1.0.0/Moment.Typescript.Definitions.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Moment.Typescript.Definitions.1.0.0/Moment.Typescript.Definitions.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Moment.Typescript.Definitions.1.0.0/Moment.Typescript.Definitions.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>Moment.Typescript.Definitions</id> 5 | <version>1.0.0</version> 6 | <title /> 7 | <authors>Derik Whittaker</authors> 8 | <owners>Derik Whittaker</owners> 9 | <licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl> 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 11 | <description>Typescript Definitions for Moment</description> 12 | <releaseNotes>d.ts file from https://github.com/borisyankov/DefinitelyTyped</releaseNotes> 13 | <references /> 14 | </metadata> 15 | </package> -------------------------------------------------------------------------------- /packages/Moment.js.2.10.6/Moment.js.2.10.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Moment.js.2.10.6/Moment.js.2.10.6.nupkg -------------------------------------------------------------------------------- /packages/NuGet.CommandLine.2.2.1/tools/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/NuGet.CommandLine.2.2.1/tools/Microsoft.Build.dll -------------------------------------------------------------------------------- /packages/NuGet.CommandLine.2.7.1/NuGet.CommandLine.2.7.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/NuGet.CommandLine.2.7.1/NuGet.CommandLine.2.7.1.nupkg -------------------------------------------------------------------------------- /packages/NuGet.CommandLine.2.7.1/NuGet.CommandLine.2.7.1.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>NuGet.CommandLine</id> 5 | <version>2.7.1</version> 6 | <authors>Outercurve Foundation</authors> 7 | <owners>Outercurve Foundation</owners> 8 | <licenseUrl>http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm</licenseUrl> 9 | <projectUrl>http://nuget.codeplex.com/</projectUrl> 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 11 | <description>NuGet Command Line Tool</description> 12 | <copyright>Copyright 2013 Microsoft. NuGet is made possible by the Outercurve Foundation's open source project.</copyright> 13 | </metadata> 14 | </package> -------------------------------------------------------------------------------- /packages/NuGet.CommandLine.2.7.1/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/NuGet.CommandLine.2.7.1/tools/NuGet.exe -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nupkg -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>Prettify</id> 5 | <version>3.3.04.2013</version> 6 | <title>google-code-prettify 7 | Mike Samuel 8 | Mike Samuel 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | http://code.google.com/p/google-code-prettify/ 11 | http://www.gstatic.com/codesite/ph/images/search-48.gif 12 | false 13 | A Javascript module and CSS file that allows syntax highlighting of source code snippets in an html page. 14 | 15 | I've included all minified scripts and themes avaialble on the google code project site. 16 | - http://google-code-prettify.googlecode.com/svn/trunk/CHANGES.html 17 | ©2013 Google 18 | en-US 19 | syntax highlight css javascript prettify code 20 | 21 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/desert.css: -------------------------------------------------------------------------------- 1 | /* desert scheme ported from vim to google prettify */ 2 | pre.prettyprint { display: block; background-color: #333 } 3 | pre .nocode { background-color: none; color: #000 } 4 | pre .str { color: #ffa0a0 } /* string - pink */ 5 | pre .kwd { color: #f0e68c; font-weight: bold } 6 | pre .com { color: #87ceeb } /* comment - skyblue */ 7 | pre .typ { color: #98fb98 } /* type - lightgreen */ 8 | pre .lit { color: #cd5c5c } /* literal - darkred */ 9 | pre .pun { color: #fff } /* punctuation */ 10 | pre .pln { color: #fff } /* plaintext */ 11 | pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag - lightyellow */ 12 | pre .atn { color: #bdb76b; font-weight: bold } /* attribute name - khaki */ 13 | pre .atv { color: #ffa0a0 } /* attribute value - pink */ 14 | pre .dec { color: #98fb98 } /* decimal - lightgreen */ 15 | 16 | /* Specify class=linenums on a pre to get line numbering */ 17 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */ 18 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 19 | /* Alternate shading for lines */ 20 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 21 | 22 | @media print { 23 | pre.prettyprint { background-color: none } 24 | pre .str, code .str { color: #060 } 25 | pre .kwd, code .kwd { color: #006; font-weight: bold } 26 | pre .com, code .com { color: #600; font-style: italic } 27 | pre .typ, code .typ { color: #404; font-weight: bold } 28 | pre .lit, code .lit { color: #044 } 29 | pre .pun, code .pun { color: #440 } 30 | pre .pln, code .pln { color: #000 } 31 | pre .tag, code .tag { color: #006; font-weight: bold } 32 | pre .atn, code .atn { color: #404 } 33 | pre .atv, code .atv { color: #060 } 34 | } 35 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/doxy.css: -------------------------------------------------------------------------------- 1 | /* Doxy pretty-printing styles. Used with prettify.js. */ 2 | 3 | pre .str, code .str { color: #fec243; } /* string - eggyolk gold */ 4 | pre .kwd, code .kwd { color: #8470FF; } /* keyword - light slate blue */ 5 | pre .com, code .com { color: #32cd32; font-style: italic; } /* comment - green */ 6 | pre .typ, code .typ { color: #6ecbcc; } /* type - turq green */ 7 | pre .lit, code .lit { color: #d06; } /* literal - cherry red */ 8 | pre .pun, code .pun { color: #8B8970; } /* punctuation - lemon chiffon4 */ 9 | pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */ 10 | pre .tag, code .tag { color: #9c9cff; } /* html/xml tag (bluey) */ 11 | pre .htm, code .htm { color: #dda0dd; } /* html tag light purply*/ 12 | pre .xsl, code .xsl { color: #d0a0d0; } /* xslt tag light purply*/ 13 | pre .atn, code .atn { color: #46eeee; font-weight: normal;} /* html/xml attribute name - lt turquoise */ 14 | pre .atv, code .atv { color: #EEB4B4; } /* html/xml attribute value - rosy brown2 */ 15 | pre .dec, code .dec { color: #3387CC; } /* decimal - blue */ 16 | 17 | a { 18 | text-decoration: none; 19 | } 20 | pre.prettyprint, code.prettyprint { 21 | font-family:'Droid Sans Mono','CPMono_v07 Bold','Droid Sans'; 22 | font-weight: bold; 23 | font-size: 9pt; 24 | background-color: #0f0f0f; 25 | -moz-border-radius: 8px; 26 | -webkit-border-radius: 8px; 27 | -o-border-radius: 8px; 28 | -ms-border-radius: 8px; 29 | -khtml-border-radius: 8px; 30 | border-radius: 8px; 31 | } /* background is black (well, just a tad less dark ) */ 32 | 33 | pre.prettyprint { 34 | width: 95%; 35 | margin: 1em auto; 36 | padding: 1em; 37 | white-space: pre-wrap; 38 | } 39 | 40 | pre.prettyprint a, code.prettyprint a { 41 | text-decoration:none; 42 | } 43 | /* Specify class=linenums on a pre to get line numbering; line numbers themselves are the same color as punctuation */ 44 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #8B8970; } /* IE indents via margin-left */ 45 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 46 | /* Alternate shading for lines */ 47 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 48 | 49 | /* print is mostly unchanged from default at present */ 50 | @media print { 51 | pre.prettyprint, code.prettyprint { background-color: #fff; } 52 | pre .str, code .str { color: #088; } 53 | pre .kwd, code .kwd { color: #006; font-weight: bold; } 54 | pre .com, code .com { color: #oc3; font-style: italic; } 55 | pre .typ, code .typ { color: #404; font-weight: bold; } 56 | pre .lit, code .lit { color: #044; } 57 | pre .pun, code .pun { color: #440; } 58 | pre .pln, code .pln { color: #000; } 59 | pre .tag, code .tag { color: #b66ff7; font-weight: bold; } 60 | pre .htm, code .htm { color: #606; font-weight: bold; } 61 | pre .xsl, code .xsl { color: #606; font-weight: bold; } 62 | pre .atn, code .atn { color: #c71585; font-weight: normal; } 63 | pre .atv, code .atv { color: #088; font-weight: normal; } 64 | } 65 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sons-of-obsidian.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Derived from einaros's Sons of Obsidian theme at 3 | * http://studiostyl.es/schemes/son-of-obsidian by 4 | * Alex Ford of CodeTunnel: 5 | * http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme 6 | */ 7 | 8 | .str 9 | { 10 | color: #EC7600; 11 | } 12 | .kwd 13 | { 14 | color: #93C763; 15 | } 16 | .com 17 | { 18 | color: #66747B; 19 | } 20 | .typ 21 | { 22 | color: #678CB1; 23 | } 24 | .lit 25 | { 26 | color: #FACD22; 27 | } 28 | .pun 29 | { 30 | color: #F1F2F3; 31 | } 32 | .pln 33 | { 34 | color: #F1F2F3; 35 | } 36 | .tag 37 | { 38 | color: #8AC763; 39 | } 40 | .atn 41 | { 42 | color: #E0E2E4; 43 | } 44 | .atv 45 | { 46 | color: #EC7600; 47 | } 48 | .dec 49 | { 50 | color: purple; 51 | } 52 | pre.prettyprint 53 | { 54 | border: 0px solid #888; 55 | } 56 | ol.linenums 57 | { 58 | margin-top: 0; 59 | margin-bottom: 0; 60 | } 61 | .prettyprint { 62 | background: #000; 63 | } 64 | li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 65 | { 66 | color: #555; 67 | list-style-type: decimal; 68 | } 69 | li.L1, li.L3, li.L5, li.L7, li.L9 { 70 | background: #111; 71 | } 72 | @media print 73 | { 74 | .str 75 | { 76 | color: #060; 77 | } 78 | .kwd 79 | { 80 | color: #006; 81 | font-weight: bold; 82 | } 83 | .com 84 | { 85 | color: #600; 86 | font-style: italic; 87 | } 88 | .typ 89 | { 90 | color: #404; 91 | font-weight: bold; 92 | } 93 | .lit 94 | { 95 | color: #044; 96 | } 97 | .pun 98 | { 99 | color: #440; 100 | } 101 | .pln 102 | { 103 | color: #000; 104 | } 105 | .tag 106 | { 107 | color: #006; 108 | font-weight: bold; 109 | } 110 | .atn 111 | { 112 | color: #404; 113 | } 114 | .atv 115 | { 116 | color: #060; 117 | } 118 | } -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sunburst.css: -------------------------------------------------------------------------------- 1 | /* Pretty printing styles. Used with prettify.js. */ 2 | /* Vim sunburst theme by David Leibovic */ 3 | 4 | pre .str, code .str { color: #65B042; } /* string - green */ 5 | pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */ 6 | pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */ 7 | pre .typ, code .typ { color: #89bdff; } /* type - light blue */ 8 | pre .lit, code .lit { color: #3387CC; } /* literal - blue */ 9 | pre .pun, code .pun { color: #fff; } /* punctuation - white */ 10 | pre .pln, code .pln { color: #fff; } /* plaintext - white */ 11 | pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */ 12 | pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */ 13 | pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */ 14 | pre .dec, code .dec { color: #3387CC; } /* decimal - blue */ 15 | 16 | pre.prettyprint, code.prettyprint { 17 | background-color: #000; 18 | -moz-border-radius: 8px; 19 | -webkit-border-radius: 8px; 20 | -o-border-radius: 8px; 21 | -ms-border-radius: 8px; 22 | -khtml-border-radius: 8px; 23 | border-radius: 8px; 24 | } 25 | 26 | pre.prettyprint { 27 | width: 95%; 28 | margin: 1em auto; 29 | padding: 1em; 30 | white-space: pre-wrap; 31 | } 32 | 33 | 34 | /* Specify class=linenums on a pre to get line numbering */ 35 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents via margin-left */ 36 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 37 | /* Alternate shading for lines */ 38 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 39 | 40 | @media print { 41 | pre .str, code .str { color: #060; } 42 | pre .kwd, code .kwd { color: #006; font-weight: bold; } 43 | pre .com, code .com { color: #600; font-style: italic; } 44 | pre .typ, code .typ { color: #404; font-weight: bold; } 45 | pre .lit, code .lit { color: #044; } 46 | pre .pun, code .pun { color: #440; } 47 | pre .pln, code .pln { color: #000; } 48 | pre .tag, code .tag { color: #006; font-weight: bold; } 49 | pre .atn, code .atn { color: #404; } 50 | pre .atv, code .atv { color: #060; } 51 | } 52 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Content/Prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-apollo.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/, 2 | null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-basic.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", 3 | /^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-clj.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (C) 2011 Google Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | var a=null; 17 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], 18 | ["typ",/^:[\dA-Za-z-]+/]]),["clj"]); 19 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//], 2 | ["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-dart.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], 2 | ["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), 3 | ["dart"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-erlang.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], 2 | ["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-go.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); 2 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-llvm.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); 2 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lua.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], 2 | ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-ml.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], 2 | ["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-mumps.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, 2 | null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-n.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, 3 | a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, 4 | a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); 5 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-pascal.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], 3 | ["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-r.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], 2 | ["pun",/^(?:<>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-rd.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); 2 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-scala.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], 2 | ["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-sql.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, 2 | null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tcl.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", 3 | /^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tex.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); 2 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vb.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, 2 | null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vhdl.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, 2 | null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], 3 | ["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); 4 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-wiki.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); 2 | PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); 3 | -------------------------------------------------------------------------------- /packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Twitter.Bootstrap 5 | 3.0.0 6 | Bootstrap 7 | Jacob Thornton, Mark Otto 8 | Jacob Thornton, Mark Otto 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | http://getbootstrap.com/ 11 | http://blog.getbootstrap.com/public/ico/apple-touch-icon-144-precomposed.png 12 | false 13 | Sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development. Package issues? Please post them here https://github.com/sirkirby/twitter-bootstrap-nuget/issues 14 | Copyright 2012 Twitter, Inc. 15 | 16 | Licensed under the Apache License, Version 2.0 (the "License"); 17 | you may not use this file except in compliance with the License. 18 | http://blog.getbootstrap.com/2013/08/19/bootstrap-3-released/ 19 | en-US 20 | twitter css css3 html5 less jquery bootstrap responsive 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/Underscore.Typescript.Definitions.1.0.1/Underscore.Typescript.Definitions.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/Underscore.Typescript.Definitions.1.0.1/Underscore.Typescript.Definitions.1.0.1.nupkg -------------------------------------------------------------------------------- /packages/Underscore.Typescript.Definitions.1.0.1/Underscore.Typescript.Definitions.1.0.1.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Underscore.Typescript.Definitions 5 | 1.0.1 6 | 7 | <authors>Derik Whittaker</authors> 8 | <owners>Derik Whittaker</owners> 9 | <licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl> 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 11 | <description>Typescript Definitions for UnderscoreJs</description> 12 | <releaseNotes>d.ts file from https://github.com/borisyankov/DefinitelyTyped</releaseNotes> 13 | <references /> 14 | </metadata> 15 | </package> -------------------------------------------------------------------------------- /packages/bootstrap.TypeScript.DefinitelyTyped.0.0.5/Content/Scripts/typings/bootstrap/bootstrap.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Bootstrap 2.2 2 | // Project: http://twitter.github.com/bootstrap/ 3 | // Definitions by: Boris Yankov <https://github.com/borisyankov/> 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | 6 | 7 | /// <reference path="../jquery/jquery.d.ts"/> 8 | 9 | interface ModalOptions { 10 | backdrop?: boolean; 11 | keyboard?: boolean; 12 | show?: boolean; 13 | remote?: string; 14 | } 15 | 16 | interface ModalOptionsBackdropString { 17 | backdrop?: string; // for "static" 18 | keyboard?: boolean; 19 | show?: boolean; 20 | remote?: string; 21 | } 22 | 23 | interface ScrollSpyOptions { 24 | offset?: number; 25 | } 26 | 27 | interface TooltipOptions { 28 | animation?: boolean; 29 | html?: boolean; 30 | placement?: any; 31 | selector?: string; 32 | title?: any; 33 | trigger?: string; 34 | delay?: any; 35 | container?: any; 36 | } 37 | 38 | interface PopoverOptions { 39 | animation?: boolean; 40 | html?: boolean; 41 | placement?: any; 42 | selector?: string; 43 | trigger?: string; 44 | title?: any; 45 | content?: any; 46 | delay?: any; 47 | container?: any; 48 | } 49 | 50 | interface CollapseOptions { 51 | parent?: any; 52 | toggle?: boolean; 53 | } 54 | 55 | interface CarouselOptions { 56 | interval?: number; 57 | pause?: string; 58 | } 59 | 60 | interface TypeaheadOptions { 61 | source?: any; 62 | items?: number; 63 | minLength?: number; 64 | matcher?: (item: any) => boolean; 65 | sorter?: (items: any[]) => any[]; 66 | updater?: (item: any) => any; 67 | highlighter?: (item: any) => string; 68 | } 69 | 70 | interface AffixOptions { 71 | offset?: any; 72 | } 73 | 74 | interface JQuery { 75 | modal(options?: ModalOptions): JQuery; 76 | modal(options?: ModalOptionsBackdropString): JQuery; 77 | modal(command: string): JQuery; 78 | 79 | dropdown(): JQuery; 80 | dropdown(command: string): JQuery; 81 | 82 | scrollspy(command: string): JQuery; 83 | scrollspy(options?: ScrollSpyOptions): JQuery; 84 | 85 | tab(): JQuery; 86 | tab(command: string): JQuery; 87 | 88 | tooltip(options?: TooltipOptions): JQuery; 89 | tooltip(command: string): JQuery; 90 | 91 | popover(options?: PopoverOptions): JQuery; 92 | popover(command: string): JQuery; 93 | 94 | alert(): JQuery; 95 | alert(command: string): JQuery; 96 | 97 | button(): JQuery; 98 | button(command: string): JQuery; 99 | 100 | collapse(options?: CollapseOptions): JQuery; 101 | collapse(command: string): JQuery; 102 | 103 | carousel(options?: CarouselOptions): JQuery; 104 | carousel(command: string): JQuery; 105 | 106 | typeahead(options?: TypeaheadOptions): JQuery; 107 | 108 | affix(options?: AffixOptions): JQuery; 109 | } 110 | -------------------------------------------------------------------------------- /packages/bootstrap.TypeScript.DefinitelyTyped.0.0.5/bootstrap.TypeScript.DefinitelyTyped.0.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/bootstrap.TypeScript.DefinitelyTyped.0.0.5/bootstrap.TypeScript.DefinitelyTyped.0.0.5.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.TypeScript.DefinitelyTyped.0.0.5/bootstrap.TypeScript.DefinitelyTyped.0.0.5.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>bootstrap.TypeScript.DefinitelyTyped</id> 5 | <version>0.0.5</version> 6 | <title>bootstrap.TypeScript.DefinitelyTyped 7 | Jason Jarrett 8 | Jason Jarrett 9 | https://github.com/DefinitelyTyped/NugetAutomation/blob/master/LICENSE.MIT 10 | https://github.com/DefinitelyTyped/ 11 | http://www.gravatar.com/avatar/7226aa211e53b8d7447756fbc1f15e12?s=200 12 | false 13 | TypeScript Definitions (d.ts) for bootstrap. Generated based off the DefinitelyTyped repository [git commit: 43825c61af8f3ec500f46d9cb3a7dd96f3f1fd27]. http://github.com/DefinitelyTyped 14 | 15 | Copyright 2013 16 | 17 | TypeScript JavaScript 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/common.ps1: -------------------------------------------------------------------------------- 1 | function Get-Checksum($file) { 2 | $cryptoProvider = New-Object "System.Security.Cryptography.MD5CryptoServiceProvider" 3 | 4 | $fileInfo = Get-Item $file 5 | trap { ; 6 | continue } $stream = $fileInfo.OpenRead() 7 | if ($? -eq $false) { 8 | # Couldn't open file for reading 9 | return $null 10 | } 11 | 12 | $bytes = $cryptoProvider.ComputeHash($stream) 13 | $checksum = '' 14 | foreach ($byte in $bytes) { 15 | $checksum += $byte.ToString('x2') 16 | } 17 | 18 | $stream.Close() | Out-Null 19 | 20 | return $checksum 21 | } 22 | 23 | function AddOrUpdate-Reference($scriptsFolderProjectItem, $fileNamePattern, $newFileName) { 24 | try { 25 | $referencesFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("_references.js") 26 | } 27 | catch { 28 | # _references.js file not found 29 | return 30 | } 31 | 32 | if ($referencesFileProjectItem -eq $null) { 33 | # _references.js file not found 34 | return 35 | } 36 | 37 | $referencesFilePath = $referencesFileProjectItem.FileNames(1) 38 | $referencesTempFilePath = Join-Path $env:TEMP "_references.tmp.js" 39 | 40 | if ((Select-String $referencesFilePath -pattern $fileNamePattern).Length -eq 0) { 41 | # File has no existing matching reference line 42 | # Add the full reference line to the beginning of the file 43 | "/// " | Add-Content $referencesTempFilePath -Encoding UTF8 44 | Get-Content $referencesFilePath | Add-Content $referencesTempFilePath 45 | } 46 | else { 47 | # Loop through file and replace old file name with new file name 48 | Get-Content $referencesFilePath | ForEach-Object { $_ -replace $fileNamePattern, $newFileName } > $referencesTempFilePath 49 | } 50 | 51 | # Copy over the new _references.js file 52 | Copy-Item $referencesTempFilePath $referencesFilePath -Force 53 | Remove-Item $referencesTempFilePath -Force 54 | } 55 | 56 | function Remove-Reference($scriptsFolderProjectItem, $fileNamePattern) { 57 | try { 58 | $referencesFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("_references.js") 59 | } 60 | catch { 61 | # _references.js file not found 62 | return 63 | } 64 | 65 | if ($referencesFileProjectItem -eq $null) { 66 | return 67 | } 68 | 69 | $referencesFilePath = $referencesFileProjectItem.FileNames(1) 70 | $referencesTempFilePath = Join-Path $env:TEMP "_references.tmp.js" 71 | 72 | if ((Select-String $referencesFilePath -pattern $fileNamePattern).Length -eq 1) { 73 | # Delete the line referencing the file 74 | Get-Content $referencesFilePath | ForEach-Object { if (-not ($_ -match $fileNamePattern)) { $_ } } > $referencesTempFilePath 75 | 76 | # Copy over the new _references.js file 77 | Copy-Item $referencesTempFilePath $referencesFilePath -Force 78 | Remove-Item $referencesTempFilePath -Force 79 | } 80 | } 81 | 82 | function Delete-ProjectItem($item) { 83 | $itemDeleted = $false 84 | for ($1=1; $i -le 5; $i++) { 85 | try { 86 | $item.Delete() 87 | $itemDeleted = $true 88 | break 89 | } 90 | catch { 91 | # Try again in 200ms 92 | [System.Threading.Thread]::Sleep(200) 93 | } 94 | } 95 | if ($itemDeleted -eq $false) { 96 | throw "Unable to delete project item after five attempts." 97 | } 98 | } 99 | 100 | # Extract the version number from the jquery file in the package's content\scripts folder 101 | $packageScriptsFolder = Join-Path $installPath Content\Scripts 102 | $jqueryFileName = Join-Path $packageScriptsFolder "jquery-*.js" | Get-ChildItem -Exclude "*.min.js","*-vsdoc.js" | Split-Path -Leaf 103 | $jqueryFileNameRegEx = "jquery-((?:\d+\.)?(?:\d+\.)?(?:\d+\.)?(?:\d+)).js" 104 | $jqueryFileName -match $jqueryFileNameRegEx 105 | $ver = $matches[1] 106 | 107 | $intelliSenseFileName = "jquery-$ver.intellisense.js" 108 | 109 | # Get the project item for the scripts folder 110 | try { 111 | $scriptsFolderProjectItem = $project.ProjectItems.Item("Scripts") 112 | $projectScriptsFolderPath = $scriptsFolderProjectItem.FileNames(1) 113 | } 114 | catch { 115 | # No Scripts folder 116 | Write-Host "No scripts folder found" 117 | } -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $vsVersion = [System.Version]::Parse($dte.Version) 7 | $supportsJsIntelliSenseFile = $vsVersion.Major -ge 11 8 | 9 | if (-not $supportsJsIntelliSenseFile) { 10 | $displayVersion = $vsVersion.Major 11 | Write-Host "IntelliSense JS files are not supported by your version of Visual Studio: $displayVersion" 12 | exit 13 | } 14 | 15 | if ($scriptsFolderProjectItem -eq $null) { 16 | # No Scripts folder 17 | Write-Host "No Scripts folder found" 18 | exit 19 | } 20 | 21 | # Delete the vsdoc file from the project 22 | try { 23 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 24 | Delete-ProjectItem $vsDocProjectItem 25 | } 26 | catch { 27 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 28 | exit 29 | } 30 | 31 | # Copy the intellisense file to the project from the tools folder 32 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 33 | try { 34 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 35 | } 36 | catch { 37 | # This will throw if the file already exists, so we need to catch here 38 | } 39 | 40 | # Update the _references.js file 41 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/jQuery.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/jQuery.2.0.3/jQuery.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/jQuery.2.0.3/jQuery.2.0.3.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jQuery 5 | 2.0.3 6 | jQuery 7 | jQuery Foundation, Inc. 8 | jQuery Foundation, Inc. 9 | http://jquery.org/license 10 | http://jquery.com/ 11 | false 12 | jQuery is a new kind of JavaScript Library. 13 | jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. 14 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/ 15 | en-US 16 | jQuery 17 | 18 | -------------------------------------------------------------------------------- /packages/jquery.TypeScript.DefinitelyTyped.0.3.0/jquery.TypeScript.DefinitelyTyped.0.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/jquery.TypeScript.DefinitelyTyped.0.3.0/jquery.TypeScript.DefinitelyTyped.0.3.0.nupkg -------------------------------------------------------------------------------- /packages/jquery.TypeScript.DefinitelyTyped.0.3.0/jquery.TypeScript.DefinitelyTyped.0.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jquery.TypeScript.DefinitelyTyped 5 | 0.3.0 6 | jquery.TypeScript.DefinitelyTyped 7 | Jason Jarrett 8 | Jason Jarrett 9 | https://github.com/DefinitelyTyped/NugetAutomation/blob/master/LICENSE.MIT 10 | https://github.com/DefinitelyTyped/ 11 | http://www.gravatar.com/avatar/7226aa211e53b8d7447756fbc1f15e12?s=200 12 | false 13 | TypeScript Definitions (d.ts) for jquery. Generated based off the DefinitelyTyped repository [git commit: 3e74a74f907ded3b8bad626c06e30674884bd689]. http://github.com/DefinitelyTyped 14 | 15 | Copyright 2013 16 | 17 | TypeScript JavaScript 18 | 19 | -------------------------------------------------------------------------------- /packages/jquery.Typescript.Definitions.1.0.0/jquery.Typescript.Definitions.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/jquery.Typescript.Definitions.1.0.0/jquery.Typescript.Definitions.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/jquery.Typescript.Definitions.1.0.0/jquery.Typescript.Definitions.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jquery.Typescript.Definitions 5 | 1.0.0 6 | 7 | <authors>Derik Whittaker</authors> 8 | <owners>Derik Whittaker</owners> 9 | <licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl> 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> 11 | <description>Typescript Definitions for jQuery</description> 12 | <releaseNotes>d.ts file from https://github.com/borisyankov/DefinitelyTyped</releaseNotes> 13 | <references /> 14 | </metadata> 15 | </package> -------------------------------------------------------------------------------- /packages/knockout.TypeScript.DefinitelyTyped.0.3.2/Content/Scripts/typings/knockout/knockout.amd.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Knockout 2.2 (as an AMD module) 2 | // Project: http://knockoutjs.com 3 | // Definitions by: Boris Yankov <https://github.com/borisyankov/> 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | ///<reference path="knockout.d.ts" /> 6 | 7 | declare module 'knockout' { 8 | export var utils: KnockoutUtils; 9 | export var memoization: KnockoutMemoization; 10 | export var bindingHandlers: KnockoutBindingHandlers; 11 | export var virtualElements: KnockoutVirtualElements; 12 | export var extenders: KnockoutExtenders; 13 | export function applyBindings(viewModel: any, rootNode?: any): void; 14 | export function applyBindingsToDescendants(viewModel: any, rootNode: any): void; 15 | export function applyBindingsToNode(node: Element, options: any, viewModel: any): void; 16 | export var subscribable: KnockoutSubscribableStatic; 17 | export var observable: KnockoutObservableStatic; 18 | export var computed: KnockoutComputedStatic; 19 | export var observableArray: KnockoutObservableArrayStatic; 20 | export function contextFor(node: any): any; 21 | export function isSubscribable(instance: any): boolean; 22 | export function toJSON(viewModel: any, replacer?: Function, space?: any): string; 23 | export function toJS(viewModel: any): any; 24 | export function isObservable(instance: any): boolean; 25 | export function isComputed(instance: any): boolean; 26 | export function dataFor(node: any): any; 27 | export function removeNode(node: Element); 28 | export function cleanNode(node: Element); 29 | export function renderTemplate(template: Function, viewModel: any, options?: any, target?: any, renderMode?: any); 30 | export function renderTemplate(template: string, viewModel: any, options?: any, target?: any, renderMode?: any); 31 | 32 | ////////////////////////////////// 33 | //// templateSources.js 34 | //////////////////////////////////// 35 | export var templateSources: KnockoutTemplateSources; 36 | //////////////////////////////////// 37 | //// templateEngine.js 38 | //////////////////////////////////// 39 | export var templateEngine: { 40 | prototype: KnockoutTemplateEngine; 41 | new (): KnockoutTemplateEngine; 42 | }; 43 | //////////////////////////////////// 44 | //// templateRewriting.js 45 | //////////////////////////////////// 46 | export var templateRewriting: { 47 | ensureTemplateIsRewritten(template, templateEngine, templateDocument); 48 | memoizeBindingAttributeSyntax(htmlString: string, templateEngine: KnockoutTemplateEngine); 49 | applyMemoizedBindingsToNextSibling(bindings); 50 | }; 51 | //////////////////////////////////// 52 | //// nativeTemplateEngine.js 53 | //////////////////////////////////// 54 | export var nativeTemplateEngine: { 55 | prototype: KnockoutNativeTemplateEngine; 56 | new (): KnockoutNativeTemplateEngine; 57 | instance: KnockoutNativeTemplateEngine; 58 | }; 59 | //////////////////////////////////// 60 | //// jqueryTmplTemplateEngine.js 61 | //////////////////////////////////// 62 | export var jqueryTmplTemplateEngine: { 63 | prototype: KnockoutTemplateEngine; 64 | renderTemplateSource(templateSource, bindingContext, options); 65 | createJavaScriptEvaluatorBlock(script: string): string; 66 | addTemplate(templateName, templateMarkup); 67 | }; 68 | //////////////////////////////////// 69 | //// templating.js 70 | //////////////////////////////////// 71 | export function setTemplateEngine(templateEngine: KnockoutNativeTemplateEngine); 72 | export function renderTemplate(template, dataOrBindingContext, options, targetNodeOrNodeArray, renderMode); 73 | export function renderTemplateForEach(template, arrayOrObservableArray, options, targetNode, parentBindingContext); 74 | export var expressionRewriting: { 75 | bindingRewriteValidators: any; 76 | }; 77 | 78 | /////////////////////////////////// 79 | export var bindingProvider: any; 80 | } -------------------------------------------------------------------------------- /packages/knockout.TypeScript.DefinitelyTyped.0.3.2/knockout.TypeScript.DefinitelyTyped.0.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/knockout.TypeScript.DefinitelyTyped.0.3.2/knockout.TypeScript.DefinitelyTyped.0.3.2.nupkg -------------------------------------------------------------------------------- /packages/knockout.TypeScript.DefinitelyTyped.0.3.2/knockout.TypeScript.DefinitelyTyped.0.3.2.nuspec: -------------------------------------------------------------------------------- 1 | <?xml version="1.0"?> 2 | <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> 3 | <metadata> 4 | <id>knockout.TypeScript.DefinitelyTyped</id> 5 | <version>0.3.2</version> 6 | <title>knockout.TypeScript.DefinitelyTyped 7 | Jason Jarrett 8 | Jason Jarrett 9 | https://github.com/DefinitelyTyped/NugetAutomation/blob/master/LICENSE.MIT 10 | https://github.com/DefinitelyTyped/ 11 | http://www.gravatar.com/avatar/7226aa211e53b8d7447756fbc1f15e12?s=200 12 | false 13 | TypeScript Definitions (d.ts) for knockout. Generated based off the DefinitelyTyped repository [git commit: 207b3fd04a96a1cb2fdb9bbd22100e104b506f5a]. http://github.com/DefinitelyTyped 14 | 15 | Copyright 2013 16 | 17 | TypeScript JavaScript 18 | 19 | -------------------------------------------------------------------------------- /packages/knockoutjs.2.3.0/knockoutjs.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/knockoutjs.2.3.0/knockoutjs.2.3.0.nupkg -------------------------------------------------------------------------------- /packages/knockoutjs.2.3.0/knockoutjs.2.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | knockoutjs 5 | 2.3.0 6 | Steven Sanderson 7 | Steven Sanderson 8 | http://www.opensource.org/licenses/mit-license.php 9 | http://knockoutjs.com/ 10 | http://github.com/SteveSanderson/knockout.nuget/raw/master/logo.png 11 | false 12 | A JavaScript MVVM library to help you create rich, dynamic user interfaces with clean maintainable code 13 | en-US 14 | knockout mvvm 15 | 16 | -------------------------------------------------------------------------------- /packages/moment.TypeScript.DefinitelyTyped.1.1.6/Content/Scripts/typings/moment/moment.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Moment.js 2.8.0 2 | // Project: https://github.com/timrwood/moment 3 | // Definitions by: Michael Lakerveld , Aaron King , Hiroki Horiuchi , Dick van den Brink , Adi Dahiya , Matt Brooks 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped 5 | 6 | /// 7 | 8 | declare var moment: moment.MomentStatic; 9 | -------------------------------------------------------------------------------- /packages/moment.TypeScript.DefinitelyTyped.1.1.6/moment.TypeScript.DefinitelyTyped.1.1.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/moment.TypeScript.DefinitelyTyped.1.1.6/moment.TypeScript.DefinitelyTyped.1.1.6.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /packages/underscore.TypeScript.DefinitelyTyped.0.2.4/underscore.TypeScript.DefinitelyTyped.0.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/underscore.TypeScript.DefinitelyTyped.0.2.4/underscore.TypeScript.DefinitelyTyped.0.2.4.nupkg -------------------------------------------------------------------------------- /packages/underscore.TypeScript.DefinitelyTyped.0.2.4/underscore.TypeScript.DefinitelyTyped.0.2.4.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | underscore.TypeScript.DefinitelyTyped 5 | 0.2.4 6 | underscore.TypeScript.DefinitelyTyped 7 | Jason Jarrett 8 | Jason Jarrett 9 | https://github.com/DefinitelyTyped/NugetAutomation/blob/master/LICENSE.MIT 10 | https://github.com/DefinitelyTyped/ 11 | http://www.gravatar.com/avatar/7226aa211e53b8d7447756fbc1f15e12?s=200 12 | false 13 | TypeScript Definitions (d.ts) for underscore. Generated based off the DefinitelyTyped repository [git commit: 685e52414a26f2a456f3a8dfd6047746fe9e1f74]. http://github.com/DefinitelyTyped 14 | 15 | Copyright 2013 16 | 17 | TypeScript JavaScript 18 | 19 | -------------------------------------------------------------------------------- /packages/underscore.js.1.5.1/underscore.js.1.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakingSense/moment-datepicker/3f5ef0beaae1ef8a5439c0da1745e7d35d2b57c5/packages/underscore.js.1.5.1/underscore.js.1.5.1.nupkg -------------------------------------------------------------------------------- /packages/underscore.js.1.5.1/underscore.js.1.5.1.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | underscore.js 5 | 1.5.1 6 | Jeremy Ashkenas 7 | Jeremy Ashkenas 8 | https://github.com/documentcloud/underscore/blob/master/LICENSE 9 | http://documentcloud.github.com/underscore 10 | true 11 | JavaScripts functional programming helper library. 12 | functional client util browser 13 | 14 | -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------