the class "CodeMirror-activeline-background".
6 |
7 | (function() {
8 | "use strict";
9 | var WRAP_CLASS = "CodeMirror-activeline";
10 | var BACK_CLASS = "CodeMirror-activeline-background";
11 |
12 | CodeMirror.defineOption("styleActiveLine", false, function(cm, val, old) {
13 | var prev = old && old != CodeMirror.Init;
14 | if (val && !prev) {
15 | updateActiveLine(cm);
16 | cm.on("cursorActivity", updateActiveLine);
17 | } else if (!val && prev) {
18 | cm.off("cursorActivity", updateActiveLine);
19 | clearActiveLine(cm);
20 | delete cm.state.activeLine;
21 | }
22 | });
23 |
24 | function clearActiveLine(cm) {
25 | if ("activeLine" in cm.state) {
26 | cm.removeLineClass(cm.state.activeLine, "wrap", WRAP_CLASS);
27 | cm.removeLineClass(cm.state.activeLine, "background", BACK_CLASS);
28 | }
29 | }
30 |
31 | function updateActiveLine(cm) {
32 | var line = cm.getLineHandleVisualStart(cm.getCursor().line);
33 | if (cm.state.activeLine == line) return;
34 | clearActiveLine(cm);
35 | cm.addLineClass(line, "wrap", WRAP_CLASS);
36 | cm.addLineClass(line, "background", BACK_CLASS);
37 | cm.state.activeLine = line;
38 | }
39 | })();
40 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("WebApplicationRdn")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("WebApplicationRdn")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("e1e960cc-16b1-4442-b39d-98180b29b4b2")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Revision and Build Numbers
33 | // by using the '*' as shown below:
34 | [assembly: AssemblyVersion("1.0.0.0")]
35 | [assembly: AssemblyFileVersion("1.0.0.0")]
36 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/angular-loader.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.18
3 | (c) 2010-2014 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(){'use strict';function d(a){return function(){var c=arguments[0],b,c="["+(a?a+":":"")+c+"] http://errors.angularjs.org/1.2.18/"+(a?a+"/":"")+c;for(b=1;b
0 ? stack[stack.length - 1] : "";
17 | if (token.string == ":" || lastToken.indexOf("property") == 0)
18 | token.type = "variable";
19 | else if (token.string == "{" || lastToken.indexOf("rule") == 0)
20 | token.type = "property";
21 | }
22 |
23 | if (!token.type)
24 | return;
25 |
26 | var spec = CodeMirror.resolveMode("text/css");
27 | var keywords = null;
28 | if (token.type.indexOf("property") == 0)
29 | keywords = spec.propertyKeywords;
30 | else if (token.type.indexOf("variable") == 0)
31 | keywords = spec.valueKeywords;
32 |
33 | if (!keywords)
34 | return;
35 |
36 | var result = [];
37 | for (var name in keywords) {
38 | if (name.indexOf(token.string) == 0 /* > -1 */)
39 | result.push(name);
40 | }
41 |
42 | return {
43 | list: result,
44 | from: CodeMirror.Pos(cur.line, token.start),
45 | to: CodeMirror.Pos(cur.line, token.end)
46 | };
47 | }
48 |
49 | CodeMirror.registerHelper("hint", "css", getHints);
50 | })();
51 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/paraiso-dark.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: Paraíso (Dark)
4 | Author: Jan T. Sott
5 |
6 | Color scheme by Jan T. Sott (https://github.com/idleberg/Paraiso-CodeMirror)
7 | Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
8 |
9 | */
10 |
11 | .cm-s-paraiso-dark.CodeMirror {background: #2f1e2e; color: #b9b6b0;}
12 | .cm-s-paraiso-dark div.CodeMirror-selected {background: #41323f !important;}
13 | .cm-s-paraiso-dark .CodeMirror-gutters {background: #2f1e2e; border-right: 0px;}
14 | .cm-s-paraiso-dark .CodeMirror-linenumber {color: #776e71;}
15 | .cm-s-paraiso-dark .CodeMirror-cursor {border-left: 1px solid #8d8687 !important;}
16 |
17 | .cm-s-paraiso-dark span.cm-comment {color: #e96ba8;}
18 | .cm-s-paraiso-dark span.cm-atom {color: #815ba4;}
19 | .cm-s-paraiso-dark span.cm-number {color: #815ba4;}
20 |
21 | .cm-s-paraiso-dark span.cm-property, .cm-s-paraiso-dark span.cm-attribute {color: #48b685;}
22 | .cm-s-paraiso-dark span.cm-keyword {color: #ef6155;}
23 | .cm-s-paraiso-dark span.cm-string {color: #fec418;}
24 |
25 | .cm-s-paraiso-dark span.cm-variable {color: #48b685;}
26 | .cm-s-paraiso-dark span.cm-variable-2 {color: #06b6ef;}
27 | .cm-s-paraiso-dark span.cm-def {color: #f99b15;}
28 | .cm-s-paraiso-dark span.cm-bracket {color: #b9b6b0;}
29 | .cm-s-paraiso-dark span.cm-tag {color: #ef6155;}
30 | .cm-s-paraiso-dark span.cm-link {color: #815ba4;}
31 | .cm-s-paraiso-dark span.cm-error {background: #ef6155; color: #8d8687;}
32 |
33 | .cm-s-paraiso-dark .CodeMirror-activeline-background {background: #4D344A !important;}
34 | .cm-s-paraiso-dark .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/keymap/extra.js:
--------------------------------------------------------------------------------
1 | // A number of additional default bindings that are too obscure to
2 | // include in the core codemirror.js file.
3 |
4 | (function() {
5 | "use strict";
6 |
7 | var Pos = CodeMirror.Pos;
8 |
9 | function moveLines(cm, start, end, dist) {
10 | if (!dist || start > end) return 0;
11 |
12 | var from = cm.clipPos(Pos(start, 0)), to = cm.clipPos(Pos(end));
13 | var text = cm.getRange(from, to);
14 |
15 | if (start <= cm.firstLine())
16 | cm.replaceRange("", from, Pos(to.line + 1, 0));
17 | else
18 | cm.replaceRange("", Pos(from.line - 1), to);
19 | var target = from.line + dist;
20 | if (target <= cm.firstLine()) {
21 | cm.replaceRange(text + "\n", Pos(target, 0));
22 | return cm.firstLine() - from.line;
23 | } else {
24 | var targetPos = cm.clipPos(Pos(target - 1));
25 | cm.replaceRange("\n" + text, targetPos);
26 | return targetPos.line + 1 - from.line;
27 | }
28 | }
29 |
30 | function moveSelectedLines(cm, dist) {
31 | var head = cm.getCursor("head"), anchor = cm.getCursor("anchor");
32 | cm.operation(function() {
33 | var moved = moveLines(cm, Math.min(head.line, anchor.line), Math.max(head.line, anchor.line), dist);
34 | cm.setSelection(Pos(anchor.line + moved, anchor.ch), Pos(head.line + moved, head.ch));
35 | });
36 | }
37 |
38 | CodeMirror.commands.moveLinesUp = function(cm) { moveSelectedLines(cm, -1); };
39 | CodeMirror.commands.moveLinesDown = function(cm) { moveSelectedLines(cm, 1); };
40 |
41 | CodeMirror.keyMap["default"]["Alt-Up"] = "moveLinesUp";
42 | CodeMirror.keyMap["default"]["Alt-Down"] = "moveLinesDown";
43 | })();
44 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/3024-night.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: 3024 night
4 | Author: Jan T. Sott (http://github.com/idleberg)
5 |
6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
8 |
9 | */
10 |
11 | .cm-s-3024-night.CodeMirror {background: #090300; color: #d6d5d4;}
12 | .cm-s-3024-night div.CodeMirror-selected {background: #3a3432 !important;}
13 | .cm-s-3024-night .CodeMirror-gutters {background: #090300; border-right: 0px;}
14 | .cm-s-3024-night .CodeMirror-linenumber {color: #5c5855;}
15 | .cm-s-3024-night .CodeMirror-cursor {border-left: 1px solid #807d7c !important;}
16 |
17 | .cm-s-3024-night span.cm-comment {color: #cdab53;}
18 | .cm-s-3024-night span.cm-atom {color: #a16a94;}
19 | .cm-s-3024-night span.cm-number {color: #a16a94;}
20 |
21 | .cm-s-3024-night span.cm-property, .cm-s-3024-night span.cm-attribute {color: #01a252;}
22 | .cm-s-3024-night span.cm-keyword {color: #db2d20;}
23 | .cm-s-3024-night span.cm-string {color: #fded02;}
24 |
25 | .cm-s-3024-night span.cm-variable {color: #01a252;}
26 | .cm-s-3024-night span.cm-variable-2 {color: #01a0e4;}
27 | .cm-s-3024-night span.cm-def {color: #e8bbd0;}
28 | .cm-s-3024-night span.cm-bracket {color: #d6d5d4;}
29 | .cm-s-3024-night span.cm-tag {color: #db2d20;}
30 | .cm-s-3024-night span.cm-link {color: #a16a94;}
31 | .cm-s-3024-night span.cm-error {background: #db2d20; color: #807d7c;}
32 |
33 | .cm-s-3024-night .CodeMirror-activeline-background {background: #2F2F2F !important;}
34 | .cm-s-3024-night .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/paraiso-light.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: Paraíso (Light)
4 | Author: Jan T. Sott
5 |
6 | Color scheme by Jan T. Sott (https://github.com/idleberg/Paraiso-CodeMirror)
7 | Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
8 |
9 | */
10 |
11 | .cm-s-paraiso-light.CodeMirror {background: #e7e9db; color: #41323f;}
12 | .cm-s-paraiso-light div.CodeMirror-selected {background: #b9b6b0 !important;}
13 | .cm-s-paraiso-light .CodeMirror-gutters {background: #e7e9db; border-right: 0px;}
14 | .cm-s-paraiso-light .CodeMirror-linenumber {color: #8d8687;}
15 | .cm-s-paraiso-light .CodeMirror-cursor {border-left: 1px solid #776e71 !important;}
16 |
17 | .cm-s-paraiso-light span.cm-comment {color: #e96ba8;}
18 | .cm-s-paraiso-light span.cm-atom {color: #815ba4;}
19 | .cm-s-paraiso-light span.cm-number {color: #815ba4;}
20 |
21 | .cm-s-paraiso-light span.cm-property, .cm-s-paraiso-light span.cm-attribute {color: #48b685;}
22 | .cm-s-paraiso-light span.cm-keyword {color: #ef6155;}
23 | .cm-s-paraiso-light span.cm-string {color: #fec418;}
24 |
25 | .cm-s-paraiso-light span.cm-variable {color: #48b685;}
26 | .cm-s-paraiso-light span.cm-variable-2 {color: #06b6ef;}
27 | .cm-s-paraiso-light span.cm-def {color: #f99b15;}
28 | .cm-s-paraiso-light span.cm-bracket {color: #41323f;}
29 | .cm-s-paraiso-light span.cm-tag {color: #ef6155;}
30 | .cm-s-paraiso-light span.cm-link {color: #815ba4;}
31 | .cm-s-paraiso-light span.cm-error {background: #ef6155; color: #776e71;}
32 |
33 | .cm-s-paraiso-light .CodeMirror-activeline-background {background: #CFD1C4 !important;}
34 | .cm-s-paraiso-light .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/base16-dark.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: Base16 Default Dark
4 | Author: Chris Kempson (http://chriskempson.com)
5 |
6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools)
7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
8 |
9 | */
10 |
11 | .cm-s-base16-dark.CodeMirror {background: #151515; color: #e0e0e0;}
12 | .cm-s-base16-dark div.CodeMirror-selected {background: #202020 !important;}
13 | .cm-s-base16-dark .CodeMirror-gutters {background: #151515; border-right: 0px;}
14 | .cm-s-base16-dark .CodeMirror-linenumber {color: #505050;}
15 | .cm-s-base16-dark .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;}
16 |
17 | .cm-s-base16-dark span.cm-comment {color: #8f5536;}
18 | .cm-s-base16-dark span.cm-atom {color: #aa759f;}
19 | .cm-s-base16-dark span.cm-number {color: #aa759f;}
20 |
21 | .cm-s-base16-dark span.cm-property, .cm-s-base16-dark span.cm-attribute {color: #90a959;}
22 | .cm-s-base16-dark span.cm-keyword {color: #ac4142;}
23 | .cm-s-base16-dark span.cm-string {color: #f4bf75;}
24 |
25 | .cm-s-base16-dark span.cm-variable {color: #90a959;}
26 | .cm-s-base16-dark span.cm-variable-2 {color: #6a9fb5;}
27 | .cm-s-base16-dark span.cm-def {color: #d28445;}
28 | .cm-s-base16-dark span.cm-bracket {color: #e0e0e0;}
29 | .cm-s-base16-dark span.cm-tag {color: #ac4142;}
30 | .cm-s-base16-dark span.cm-link {color: #aa759f;}
31 | .cm-s-base16-dark span.cm-error {background: #ac4142; color: #b0b0b0;}
32 |
33 | .cm-s-base16-dark .CodeMirror-activeline-background {background: #2F2F2F !important;}
34 | .cm-s-base16-dark .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/vibrant-ink.css:
--------------------------------------------------------------------------------
1 | /* Taken from the popular Visual Studio Vibrant Ink Schema */
2 |
3 | .cm-s-vibrant-ink.CodeMirror { background: black; color: white; }
4 | .cm-s-vibrant-ink .CodeMirror-selected { background: #35493c !important; }
5 |
6 | .cm-s-vibrant-ink .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
7 | .cm-s-vibrant-ink .CodeMirror-linenumber { color: #d0d0d0; }
8 | .cm-s-vibrant-ink .CodeMirror-cursor { border-left: 1px solid white !important; }
9 |
10 | .cm-s-vibrant-ink .cm-keyword { color: #CC7832; }
11 | .cm-s-vibrant-ink .cm-atom { color: #FC0; }
12 | .cm-s-vibrant-ink .cm-number { color: #FFEE98; }
13 | .cm-s-vibrant-ink .cm-def { color: #8DA6CE; }
14 | .cm-s-vibrant-ink span.cm-variable-2, .cm-s-vibrant span.cm-tag { color: #FFC66D }
15 | .cm-s-vibrant-ink span.cm-variable-3, .cm-s-vibrant span.cm-def { color: #FFC66D }
16 | .cm-s-vibrant-ink .cm-operator { color: #888; }
17 | .cm-s-vibrant-ink .cm-comment { color: gray; font-weight: bold; }
18 | .cm-s-vibrant-ink .cm-string { color: #A5C25C }
19 | .cm-s-vibrant-ink .cm-string-2 { color: red }
20 | .cm-s-vibrant-ink .cm-meta { color: #D8FA3C; }
21 | .cm-s-vibrant-ink .cm-builtin { color: #8DA6CE; }
22 | .cm-s-vibrant-ink .cm-tag { color: #8DA6CE; }
23 | .cm-s-vibrant-ink .cm-attribute { color: #8DA6CE; }
24 | .cm-s-vibrant-ink .cm-header { color: #FF6400; }
25 | .cm-s-vibrant-ink .cm-hr { color: #AEAEAE; }
26 | .cm-s-vibrant-ink .cm-link { color: blue; }
27 | .cm-s-vibrant-ink .cm-error { border-bottom: 1px solid red; }
28 |
29 | .cm-s-vibrant-ink .CodeMirror-activeline-background {background: #27282E !important;}
30 | .cm-s-vibrant-ink .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
31 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/base16-light.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: Base16 Default Light
4 | Author: Chris Kempson (http://chriskempson.com)
5 |
6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools)
7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
8 |
9 | */
10 |
11 | .cm-s-base16-light.CodeMirror {background: #f5f5f5; color: #202020;}
12 | .cm-s-base16-light div.CodeMirror-selected {background: #e0e0e0 !important;}
13 | .cm-s-base16-light .CodeMirror-gutters {background: #f5f5f5; border-right: 0px;}
14 | .cm-s-base16-light .CodeMirror-linenumber {color: #b0b0b0;}
15 | .cm-s-base16-light .CodeMirror-cursor {border-left: 1px solid #505050 !important;}
16 |
17 | .cm-s-base16-light span.cm-comment {color: #8f5536;}
18 | .cm-s-base16-light span.cm-atom {color: #aa759f;}
19 | .cm-s-base16-light span.cm-number {color: #aa759f;}
20 |
21 | .cm-s-base16-light span.cm-property, .cm-s-base16-light span.cm-attribute {color: #90a959;}
22 | .cm-s-base16-light span.cm-keyword {color: #ac4142;}
23 | .cm-s-base16-light span.cm-string {color: #f4bf75;}
24 |
25 | .cm-s-base16-light span.cm-variable {color: #90a959;}
26 | .cm-s-base16-light span.cm-variable-2 {color: #6a9fb5;}
27 | .cm-s-base16-light span.cm-def {color: #d28445;}
28 | .cm-s-base16-light span.cm-bracket {color: #202020;}
29 | .cm-s-base16-light span.cm-tag {color: #ac4142;}
30 | .cm-s-base16-light span.cm-link {color: #aa759f;}
31 | .cm-s-base16-light span.cm-error {background: #ac4142; color: #505050;}
32 |
33 | .cm-s-base16-light .CodeMirror-activeline-background {background: #DDDCDC !important;}
34 | .cm-s-base16-light .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/twilight.css:
--------------------------------------------------------------------------------
1 | .cm-s-twilight.CodeMirror { background: #141414; color: #f7f7f7; } /**/
2 | .cm-s-twilight .CodeMirror-selected { background: #323232 !important; } /**/
3 |
4 | .cm-s-twilight .CodeMirror-gutters { background: #222; border-right: 1px solid #aaa; }
5 | .cm-s-twilight .CodeMirror-linenumber { color: #aaa; }
6 | .cm-s-twilight .CodeMirror-cursor { border-left: 1px solid white !important; }
7 |
8 | .cm-s-twilight .cm-keyword { color: #f9ee98; } /**/
9 | .cm-s-twilight .cm-atom { color: #FC0; }
10 | .cm-s-twilight .cm-number { color: #ca7841; } /**/
11 | .cm-s-twilight .cm-def { color: #8DA6CE; }
12 | .cm-s-twilight span.cm-variable-2, .cm-s-twilight span.cm-tag { color: #607392; } /**/
13 | .cm-s-twilight span.cm-variable-3, .cm-s-twilight span.cm-def { color: #607392; } /**/
14 | .cm-s-twilight .cm-operator { color: #cda869; } /**/
15 | .cm-s-twilight .cm-comment { color:#777; font-style:italic; font-weight:normal; } /**/
16 | .cm-s-twilight .cm-string { color:#8f9d6a; font-style:italic; } /**/
17 | .cm-s-twilight .cm-string-2 { color:#bd6b18 } /*?*/
18 | .cm-s-twilight .cm-meta { background-color:#141414; color:#f7f7f7; } /*?*/
19 | .cm-s-twilight .cm-builtin { color: #cda869; } /*?*/
20 | .cm-s-twilight .cm-tag { color: #997643; } /**/
21 | .cm-s-twilight .cm-attribute { color: #d6bb6d; } /*?*/
22 | .cm-s-twilight .cm-header { color: #FF6400; }
23 | .cm-s-twilight .cm-hr { color: #AEAEAE; }
24 | .cm-s-twilight .cm-link { color:#ad9361; font-style:italic; text-decoration:none; } /**/
25 | .cm-s-twilight .cm-error { border-bottom: 1px solid red; }
26 |
27 | .cm-s-twilight .CodeMirror-activeline-background {background: #27282E !important;}
28 | .cm-s-twilight .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
29 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/midnight.css:
--------------------------------------------------------------------------------
1 | /* Based on the theme at http://bonsaiden.github.com/JavaScript-Garden */
2 |
3 | /**/
4 | .cm-s-midnight span.CodeMirror-matchhighlight { background: #494949 }
5 | .cm-s-midnight.CodeMirror-focused span.CodeMirror-matchhighlight { background: #314D67 !important; }
6 |
7 | /**/
8 | .cm-s-midnight .CodeMirror-activeline-background {background: #253540 !important;}
9 |
10 | .cm-s-midnight.CodeMirror {
11 | background: #0F192A;
12 | color: #D1EDFF;
13 | }
14 |
15 | .cm-s-midnight.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
16 |
17 | .cm-s-midnight div.CodeMirror-selected {background: #314D67 !important;}
18 | .cm-s-midnight .CodeMirror-gutters {background: #0F192A; border-right: 1px solid;}
19 | .cm-s-midnight .CodeMirror-linenumber {color: #D0D0D0;}
20 | .cm-s-midnight .CodeMirror-cursor {
21 | border-left: 1px solid #F8F8F0 !important;
22 | }
23 |
24 | .cm-s-midnight span.cm-comment {color: #428BDD;}
25 | .cm-s-midnight span.cm-atom {color: #AE81FF;}
26 | .cm-s-midnight span.cm-number {color: #D1EDFF;}
27 |
28 | .cm-s-midnight span.cm-property, .cm-s-midnight span.cm-attribute {color: #A6E22E;}
29 | .cm-s-midnight span.cm-keyword {color: #E83737;}
30 | .cm-s-midnight span.cm-string {color: #1DC116;}
31 |
32 | .cm-s-midnight span.cm-variable {color: #FFAA3E;}
33 | .cm-s-midnight span.cm-variable-2 {color: #FFAA3E;}
34 | .cm-s-midnight span.cm-def {color: #4DD;}
35 | .cm-s-midnight span.cm-bracket {color: #D1EDFF;}
36 | .cm-s-midnight span.cm-tag {color: #449;}
37 | .cm-s-midnight span.cm-link {color: #AE81FF;}
38 | .cm-s-midnight span.cm-error {background: #F92672; color: #F8F8F0;}
39 |
40 | .cm-s-midnight .CodeMirror-matchingbracket {
41 | text-decoration: underline;
42 | color: white !important;
43 | }
44 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/mode/javascript/typescript.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | CodeMirror: TypeScript mode
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |

13 |
14 |
19 |
23 |
24 |
25 |
26 | TypeScript mode
27 |
28 |
29 |
51 |
52 |
59 |
60 | This is a specialization of the JavaScript mode.
61 |
62 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/erlang-dark.css:
--------------------------------------------------------------------------------
1 | .cm-s-erlang-dark.CodeMirror { background: #002240; color: white; }
2 | .cm-s-erlang-dark div.CodeMirror-selected { background: #b36539 !important; }
3 | .cm-s-erlang-dark .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
4 | .cm-s-erlang-dark .CodeMirror-linenumber { color: #d0d0d0; }
5 | .cm-s-erlang-dark .CodeMirror-cursor { border-left: 1px solid white !important; }
6 |
7 | .cm-s-erlang-dark span.cm-atom { color: #f133f1; }
8 | .cm-s-erlang-dark span.cm-attribute { color: #ff80e1; }
9 | .cm-s-erlang-dark span.cm-bracket { color: #ff9d00; }
10 | .cm-s-erlang-dark span.cm-builtin { color: #eaa; }
11 | .cm-s-erlang-dark span.cm-comment { color: #77f; }
12 | .cm-s-erlang-dark span.cm-def { color: #e7a; }
13 | .cm-s-erlang-dark span.cm-keyword { color: #ffee80; }
14 | .cm-s-erlang-dark span.cm-meta { color: #50fefe; }
15 | .cm-s-erlang-dark span.cm-number { color: #ffd0d0; }
16 | .cm-s-erlang-dark span.cm-operator { color: #d55; }
17 | .cm-s-erlang-dark span.cm-property { color: #ccc; }
18 | .cm-s-erlang-dark span.cm-qualifier { color: #ccc; }
19 | .cm-s-erlang-dark span.cm-quote { color: #ccc; }
20 | .cm-s-erlang-dark span.cm-special { color: #ffbbbb; }
21 | .cm-s-erlang-dark span.cm-string { color: #3ad900; }
22 | .cm-s-erlang-dark span.cm-string-2 { color: #ccc; }
23 | .cm-s-erlang-dark span.cm-tag { color: #9effff; }
24 | .cm-s-erlang-dark span.cm-variable { color: #50fe50; }
25 | .cm-s-erlang-dark span.cm-variable-2 { color: #e0e; }
26 | .cm-s-erlang-dark span.cm-variable-3 { color: #ccc; }
27 | .cm-s-erlang-dark span.cm-error { color: #9d1e15; }
28 |
29 | .cm-s-erlang-dark .CodeMirror-activeline-background {background: #013461 !important;}
30 | .cm-s-erlang-dark .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
31 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/display/placeholder.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | CodeMirror.defineOption("placeholder", "", function(cm, val, old) {
3 | var prev = old && old != CodeMirror.Init;
4 | if (val && !prev) {
5 | cm.on("focus", onFocus);
6 | cm.on("blur", onBlur);
7 | cm.on("change", onChange);
8 | onChange(cm);
9 | } else if (!val && prev) {
10 | cm.off("focus", onFocus);
11 | cm.off("blur", onBlur);
12 | cm.off("change", onChange);
13 | clearPlaceholder(cm);
14 | var wrapper = cm.getWrapperElement();
15 | wrapper.className = wrapper.className.replace(" CodeMirror-empty", "");
16 | }
17 |
18 | if (val && !cm.hasFocus()) onBlur(cm);
19 | });
20 |
21 | function clearPlaceholder(cm) {
22 | if (cm.state.placeholder) {
23 | cm.state.placeholder.parentNode.removeChild(cm.state.placeholder);
24 | cm.state.placeholder = null;
25 | }
26 | }
27 | function setPlaceholder(cm) {
28 | clearPlaceholder(cm);
29 | var elt = cm.state.placeholder = document.createElement("pre");
30 | elt.style.cssText = "height: 0; overflow: visible";
31 | elt.className = "CodeMirror-placeholder";
32 | elt.appendChild(document.createTextNode(cm.getOption("placeholder")));
33 | cm.display.lineSpace.insertBefore(elt, cm.display.lineSpace.firstChild);
34 | }
35 |
36 | function onFocus(cm) {
37 | clearPlaceholder(cm);
38 | }
39 | function onBlur(cm) {
40 | if (isEmpty(cm)) setPlaceholder(cm);
41 | }
42 | function onChange(cm) {
43 | var wrapper = cm.getWrapperElement(), empty = isEmpty(cm);
44 | wrapper.className = wrapper.className.replace(" CodeMirror-empty", "") + (empty ? " CodeMirror-empty" : "");
45 |
46 | if (cm.hasFocus()) return;
47 | if (empty) setPlaceholder(cm);
48 | else clearPlaceholder(cm);
49 | }
50 |
51 | function isEmpty(cm) {
52 | return (cm.lineCount() === 1) && (cm.getLine(0) === "");
53 | }
54 | })();
55 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/tomorrow-night-eighties.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Name: Tomorrow Night - Eighties
4 | Author: Chris Kempson
5 |
6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
8 |
9 | */
10 |
11 | .cm-s-tomorrow-night-eighties.CodeMirror {background: #000000; color: #CCCCCC;}
12 | .cm-s-tomorrow-night-eighties div.CodeMirror-selected {background: #2D2D2D !important;}
13 | .cm-s-tomorrow-night-eighties .CodeMirror-gutters {background: #000000; border-right: 0px;}
14 | .cm-s-tomorrow-night-eighties .CodeMirror-linenumber {color: #515151;}
15 | .cm-s-tomorrow-night-eighties .CodeMirror-cursor {border-left: 1px solid #6A6A6A !important;}
16 |
17 | .cm-s-tomorrow-night-eighties span.cm-comment {color: #d27b53;}
18 | .cm-s-tomorrow-night-eighties span.cm-atom {color: #a16a94;}
19 | .cm-s-tomorrow-night-eighties span.cm-number {color: #a16a94;}
20 |
21 | .cm-s-tomorrow-night-eighties span.cm-property, .cm-s-tomorrow-night-eighties span.cm-attribute {color: #99cc99;}
22 | .cm-s-tomorrow-night-eighties span.cm-keyword {color: #f2777a;}
23 | .cm-s-tomorrow-night-eighties span.cm-string {color: #ffcc66;}
24 |
25 | .cm-s-tomorrow-night-eighties span.cm-variable {color: #99cc99;}
26 | .cm-s-tomorrow-night-eighties span.cm-variable-2 {color: #6699cc;}
27 | .cm-s-tomorrow-night-eighties span.cm-def {color: #f99157;}
28 | .cm-s-tomorrow-night-eighties span.cm-bracket {color: #CCCCCC;}
29 | .cm-s-tomorrow-night-eighties span.cm-tag {color: #f2777a;}
30 | .cm-s-tomorrow-night-eighties span.cm-link {color: #a16a94;}
31 | .cm-s-tomorrow-night-eighties span.cm-error {background: #f2777a; color: #6A6A6A;}
32 |
33 | .cm-s-tomorrow-night-eighties .CodeMirror-activeline-background {background: #343600 !important;}
34 | .cm-s-tomorrow-night-eighties .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
35 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/mode/loadmode.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | if (!CodeMirror.modeURL) CodeMirror.modeURL = "../mode/%N/%N.js";
3 |
4 | var loading = {};
5 | function splitCallback(cont, n) {
6 | var countDown = n;
7 | return function() { if (--countDown == 0) cont(); };
8 | }
9 | function ensureDeps(mode, cont) {
10 | var deps = CodeMirror.modes[mode].dependencies;
11 | if (!deps) return cont();
12 | var missing = [];
13 | for (var i = 0; i < deps.length; ++i) {
14 | if (!CodeMirror.modes.hasOwnProperty(deps[i]))
15 | missing.push(deps[i]);
16 | }
17 | if (!missing.length) return cont();
18 | var split = splitCallback(cont, missing.length);
19 | for (var i = 0; i < missing.length; ++i)
20 | CodeMirror.requireMode(missing[i], split);
21 | }
22 |
23 | CodeMirror.requireMode = function(mode, cont) {
24 | if (typeof mode != "string") mode = mode.name;
25 | if (CodeMirror.modes.hasOwnProperty(mode)) return ensureDeps(mode, cont);
26 | if (loading.hasOwnProperty(mode)) return loading[mode].push(cont);
27 |
28 | var script = document.createElement("script");
29 | script.src = CodeMirror.modeURL.replace(/%N/g, mode);
30 | var others = document.getElementsByTagName("script")[0];
31 | others.parentNode.insertBefore(script, others);
32 | var list = loading[mode] = [cont];
33 | var count = 0, poll = setInterval(function() {
34 | if (++count > 100) return clearInterval(poll);
35 | if (CodeMirror.modes.hasOwnProperty(mode)) {
36 | clearInterval(poll);
37 | loading[mode] = null;
38 | ensureDeps(mode, function() {
39 | for (var i = 0; i < list.length; ++i) list[i]();
40 | });
41 | }
42 | }, 200);
43 | };
44 |
45 | CodeMirror.autoLoadMode = function(instance, mode) {
46 | if (!CodeMirror.modes.hasOwnProperty(mode))
47 | CodeMirror.requireMode(mode, function() {
48 | instance.setOption("mode", instance.getOption("mode"));
49 | });
50 | };
51 | }());
52 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/mode/properties/properties.js:
--------------------------------------------------------------------------------
1 | CodeMirror.defineMode("properties", function() {
2 | return {
3 | token: function(stream, state) {
4 | var sol = stream.sol() || state.afterSection;
5 | var eol = stream.eol();
6 |
7 | state.afterSection = false;
8 |
9 | if (sol) {
10 | if (state.nextMultiline) {
11 | state.inMultiline = true;
12 | state.nextMultiline = false;
13 | } else {
14 | state.position = "def";
15 | }
16 | }
17 |
18 | if (eol && ! state.nextMultiline) {
19 | state.inMultiline = false;
20 | state.position = "def";
21 | }
22 |
23 | if (sol) {
24 | while(stream.eatSpace());
25 | }
26 |
27 | var ch = stream.next();
28 |
29 | if (sol && (ch === "#" || ch === "!" || ch === ";")) {
30 | state.position = "comment";
31 | stream.skipToEnd();
32 | return "comment";
33 | } else if (sol && ch === "[") {
34 | state.afterSection = true;
35 | stream.skipTo("]"); stream.eat("]");
36 | return "header";
37 | } else if (ch === "=" || ch === ":") {
38 | state.position = "quote";
39 | return null;
40 | } else if (ch === "\\" && state.position === "quote") {
41 | if (stream.next() !== "u") { // u = Unicode sequence \u1234
42 | // Multiline value
43 | state.nextMultiline = true;
44 | }
45 | }
46 |
47 | return state.position;
48 | },
49 |
50 | startState: function() {
51 | return {
52 | position : "def", // Current position, "def", "quote" or "comment"
53 | nextMultiline : false, // Is the next line multiline value
54 | inMultiline : false, // Is the current line a multiline value
55 | afterSection : false // Did we just open a section
56 | };
57 | }
58 |
59 | };
60 | });
61 |
62 | CodeMirror.defineMIME("text/x-properties", "properties");
63 | CodeMirror.defineMIME("text/x-ini", "properties");
64 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2 | [Bb]in/
3 | [Oo]bj/
4 |
5 | # mstest test results
6 | TestResults
7 |
8 | ## Ignore Visual Studio temporary files, build results, and
9 | ## files generated by popular Visual Studio add-ons.
10 |
11 | # User-specific files
12 | *.suo
13 | *.user
14 | *.sln.docstates
15 |
16 | # Build results
17 | [Dd]ebug/
18 | [Rr]elease/
19 | x64/
20 | *_i.c
21 | *_p.c
22 | *.ilk
23 | *.meta
24 | *.obj
25 | *.pch
26 | *.pdb
27 | *.pgc
28 | *.pgd
29 | *.rsp
30 | *.sbr
31 | *.tlb
32 | *.tli
33 | *.tlh
34 | *.tmp
35 | *.log
36 | *.vspscc
37 | *.vssscc
38 | .builds
39 |
40 | # Visual C++ cache files
41 | ipch/
42 | *.aps
43 | *.ncb
44 | *.opensdf
45 | *.sdf
46 |
47 | # Visual Studio profiler
48 | *.psess
49 | *.vsp
50 | *.vspx
51 |
52 | # Guidance Automation Toolkit
53 | *.gpState
54 |
55 | # ReSharper is a .NET coding add-in
56 | _ReSharper*
57 |
58 | # NCrunch
59 | *.ncrunch*
60 | .*crunch*.local.xml
61 |
62 | # Installshield output folder
63 | [Ee]xpress
64 |
65 | # DocProject is a documentation generator add-in
66 | DocProject/buildhelp/
67 | DocProject/Help/*.HxT
68 | DocProject/Help/*.HxC
69 | DocProject/Help/*.hhc
70 | DocProject/Help/*.hhk
71 | DocProject/Help/*.hhp
72 | DocProject/Help/Html2
73 | DocProject/Help/html
74 |
75 | # Click-Once directory
76 | publish
77 |
78 | # Publish Web Output
79 | *.Publish.xml
80 |
81 | # NuGet Packages Directory
82 | packages
83 |
84 | # Windows Azure Build Output
85 | csx
86 | *.build.csdef
87 |
88 | # Windows Store app package directory
89 | AppPackages/
90 |
91 | # Others
92 | [Bb]in
93 | [Oo]bj
94 | sql
95 | TestResults
96 | [Tt]est[Rr]esult*
97 | *.Cache
98 | ClientBin
99 | [Ss]tyle[Cc]op.*
100 | ~$*
101 | *.dbmdl
102 | Generated_Code #added for RIA/Silverlight projects
103 |
104 | # Backup & report files from converting an old project file to a newer
105 | # Visual Studio version. Backup files are not needed, because we have git ;-)
106 | _UpgradeReport_Files/
107 | Backup*/
108 | UpgradeLog*.XML
109 | .vs/
110 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/edit/matchtags.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | "use strict";
3 |
4 | CodeMirror.defineOption("matchTags", false, function(cm, val, old) {
5 | if (old && old != CodeMirror.Init) {
6 | cm.off("cursorActivity", doMatchTags);
7 | cm.off("viewportChange", maybeUpdateMatch);
8 | clear(cm);
9 | }
10 | if (val) {
11 | cm.state.matchBothTags = typeof val == "object" && val.bothTags;
12 | cm.on("cursorActivity", doMatchTags);
13 | cm.on("viewportChange", maybeUpdateMatch);
14 | doMatchTags(cm);
15 | }
16 | });
17 |
18 | function clear(cm) {
19 | if (cm.state.tagHit) cm.state.tagHit.clear();
20 | if (cm.state.tagOther) cm.state.tagOther.clear();
21 | cm.state.tagHit = cm.state.tagOther = null;
22 | }
23 |
24 | function doMatchTags(cm) {
25 | cm.state.failedTagMatch = false;
26 | cm.operation(function() {
27 | clear(cm);
28 | if (cm.somethingSelected()) return;
29 | var cur = cm.getCursor(), range = cm.getViewport();
30 | range.from = Math.min(range.from, cur.line); range.to = Math.max(cur.line + 1, range.to);
31 | var match = CodeMirror.findMatchingTag(cm, cur, range);
32 | if (!match) return;
33 | if (cm.state.matchBothTags) {
34 | var hit = match.at == "open" ? match.open : match.close;
35 | if (hit) cm.state.tagHit = cm.markText(hit.from, hit.to, {className: "CodeMirror-matchingtag"});
36 | }
37 | var other = match.at == "close" ? match.open : match.close;
38 | if (other)
39 | cm.state.tagOther = cm.markText(other.from, other.to, {className: "CodeMirror-matchingtag"});
40 | else
41 | cm.state.failedTagMatch = true;
42 | });
43 | }
44 |
45 | function maybeUpdateMatch(cm) {
46 | if (cm.state.failedTagMatch) doMatchTags(cm);
47 | }
48 |
49 | CodeMirror.commands.toMatchingTag = function(cm) {
50 | var found = CodeMirror.findMatchingTag(cm, cm.getCursor());
51 | if (found) {
52 | var other = found.at == "close" ? found.open : found.close;
53 | if (other) cm.setSelection(other.to, other.from);
54 | }
55 | };
56 | })();
57 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/runmode/runmode.js:
--------------------------------------------------------------------------------
1 | CodeMirror.runMode = function(string, modespec, callback, options) {
2 | var mode = CodeMirror.getMode(CodeMirror.defaults, modespec);
3 | var ie = /MSIE \d/.test(navigator.userAgent);
4 | var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9);
5 |
6 | if (callback.nodeType == 1) {
7 | var tabSize = (options && options.tabSize) || CodeMirror.defaults.tabSize;
8 | var node = callback, col = 0;
9 | node.innerHTML = "";
10 | callback = function(text, style) {
11 | if (text == "\n") {
12 | // Emitting LF or CRLF on IE8 or earlier results in an incorrect display.
13 | // Emitting a carriage return makes everything ok.
14 | node.appendChild(document.createTextNode(ie_lt9 ? '\r' : text));
15 | col = 0;
16 | return;
17 | }
18 | var content = "";
19 | // replace tabs
20 | for (var pos = 0;;) {
21 | var idx = text.indexOf("\t", pos);
22 | if (idx == -1) {
23 | content += text.slice(pos);
24 | col += text.length - pos;
25 | break;
26 | } else {
27 | col += idx - pos;
28 | content += text.slice(pos, idx);
29 | var size = tabSize - col % tabSize;
30 | col += size;
31 | for (var i = 0; i < size; ++i) content += " ";
32 | pos = idx + 1;
33 | }
34 | }
35 |
36 | if (style) {
37 | var sp = node.appendChild(document.createElement("span"));
38 | sp.className = "cm-" + style.replace(/ +/g, " cm-");
39 | sp.appendChild(document.createTextNode(content));
40 | } else {
41 | node.appendChild(document.createTextNode(content));
42 | }
43 | };
44 | }
45 |
46 | var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode);
47 | for (var i = 0, e = lines.length; i < e; ++i) {
48 | if (i) callback("\n");
49 | var stream = new CodeMirror.StringStream(lines[i]);
50 | while (!stream.eol()) {
51 | var style = mode.token(stream, state);
52 | callback(stream.current(), style, i, stream.start, state);
53 | stream.start = stream.pos;
54 | }
55 | }
56 | };
57 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/tern/tern.css:
--------------------------------------------------------------------------------
1 | .CodeMirror-Tern-completion {
2 | padding-left: 22px;
3 | position: relative;
4 | }
5 | .CodeMirror-Tern-completion:before {
6 | position: absolute;
7 | left: 2px;
8 | bottom: 2px;
9 | border-radius: 50%;
10 | font-size: 12px;
11 | font-weight: bold;
12 | height: 15px;
13 | width: 15px;
14 | line-height: 16px;
15 | text-align: center;
16 | color: white;
17 | -moz-box-sizing: border-box;
18 | box-sizing: border-box;
19 | }
20 | .CodeMirror-Tern-completion-unknown:before {
21 | content: "?";
22 | background: #4bb;
23 | }
24 | .CodeMirror-Tern-completion-object:before {
25 | content: "O";
26 | background: #77c;
27 | }
28 | .CodeMirror-Tern-completion-fn:before {
29 | content: "F";
30 | background: #7c7;
31 | }
32 | .CodeMirror-Tern-completion-array:before {
33 | content: "A";
34 | background: #c66;
35 | }
36 | .CodeMirror-Tern-completion-number:before {
37 | content: "1";
38 | background: #999;
39 | }
40 | .CodeMirror-Tern-completion-string:before {
41 | content: "S";
42 | background: #999;
43 | }
44 | .CodeMirror-Tern-completion-bool:before {
45 | content: "B";
46 | background: #999;
47 | }
48 |
49 | .CodeMirror-Tern-completion-guess {
50 | color: #999;
51 | }
52 |
53 | .CodeMirror-Tern-tooltip {
54 | border: 1px solid silver;
55 | border-radius: 3px;
56 | color: #444;
57 | padding: 2px 5px;
58 | font-size: 90%;
59 | font-family: monospace;
60 | background-color: white;
61 | white-space: pre-wrap;
62 |
63 | max-width: 40em;
64 | position: absolute;
65 | z-index: 10;
66 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
67 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
68 | box-shadow: 2px 3px 5px rgba(0,0,0,.2);
69 |
70 | transition: opacity 1s;
71 | -moz-transition: opacity 1s;
72 | -webkit-transition: opacity 1s;
73 | -o-transition: opacity 1s;
74 | -ms-transition: opacity 1s;
75 | }
76 |
77 | .CodeMirror-Tern-hint-doc {
78 | max-width: 25em;
79 | }
80 |
81 | .CodeMirror-Tern-fname { color: black; }
82 | .CodeMirror-Tern-farg { color: #70a; }
83 | .CodeMirror-Tern-farg-current { text-decoration: underline; }
84 | .CodeMirror-Tern-type { color: #07c; }
85 | .CodeMirror-Tern-fhint-guess { opacity: .7; }
86 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/angular-cookies.min.js.map:
--------------------------------------------------------------------------------
1 | {
2 | "version":3,
3 | "file":"angular-cookies.min.js",
4 | "lineCount":7,
5 | "mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAmBtCD,CAAAE,OAAA,CAAe,WAAf,CAA4B,CAAC,IAAD,CAA5B,CAAAC,QAAA,CAyBW,UAzBX,CAyBuB,CAAC,YAAD,CAAe,UAAf,CAA2B,QAAS,CAACC,CAAD,CAAaC,CAAb,CAAuB,CAAA,IACxEC,EAAU,EAD8D,CAExEC,EAAc,EAF0D,CAGxEC,CAHwE,CAIxEC,EAAU,CAAA,CAJ8D,CAKxEC,EAAOV,CAAAU,KALiE,CAMxEC,EAAcX,CAAAW,YAGlBN,EAAAO,UAAA,CAAmB,QAAQ,EAAG,CAC5B,IAAIC,EAAiBR,CAAAC,QAAA,EACjBE,EAAJ,EAA0BK,CAA1B,GACEL,CAGA,CAHqBK,CAGrB,CAFAH,CAAA,CAAKG,CAAL,CAAqBN,CAArB,CAEA,CADAG,CAAA,CAAKG,CAAL,CAAqBP,CAArB,CACA,CAAIG,CAAJ,EAAaL,CAAAU,OAAA,EAJf,CAF4B,CAA9B,CAAA,EAUAL,EAAA,CAAU,CAAA,CAKVL,EAAAW,OAAA,CASAC,QAAa,EAAG,CAAA,IACVC,CADU,CAEVC,CAFU,CAIVC,CAGJ,KAAKF,CAAL,GAAaV,EAAb,CACMI,CAAA,CAAYL,CAAA,CAAQW,CAAR,CAAZ,CAAJ,EACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBhB,CAAvB,CAKJ,KAAIgB,CAAJ,GAAYX,EAAZ,CACEY,CAKA,CALQZ,CAAA,CAAQW,CAAR,CAKR,CAJKjB,CAAAoB,SAAA,CAAiBF,CAAjB,CAIL,GAHEA,CACA,CADQ,EACR,CADaA,CACb,CAAAZ,CAAA,CAAQW,CAAR,CAAA,CAAgBC,CAElB,EAAIA,CAAJ,GAAcX,CAAA,CAAYU,CAAZ,CAAd,GACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBC,CAAvB,CACA,CAAAC,CAAA,CAAU,CAAA,CAFZ,CAOF,IAAIA,CAAJ,CAIE,IAAKF,CAAL,GAFAI,EAEaf,CAFID,CAAAC,QAAA,EAEJA,CAAAA,CAAb,CACMA,CAAA,CAAQW,CAAR,CAAJ,GAAsBI,CAAA,CAAeJ,CAAf,CAAtB,GAEMN,CAAA,CAAYU,CAAA,CAAeJ,CAAf,CAAZ,CAAJ,CACE,OAAOX,CAAA,CAAQW,CAAR,CADT,CAGEX,CAAA,CAAQW,CAAR,CAHF,CAGkBI,CAAA,CAAeJ,CAAf,CALpB,CAhCU,CAThB,CAEA,OAAOX,EA1BqE,CAA3D,CAzBvB,CAAAH,QAAA,CAkIW,cAlIX;AAkI2B,CAAC,UAAD,CAAa,QAAQ,CAACmB,CAAD,CAAW,CAErD,MAAO,KAWAC,QAAQ,CAACC,CAAD,CAAM,CAEjB,MAAO,CADHN,CACG,CADKI,CAAA,CAASE,CAAT,CACL,EAAQxB,CAAAyB,SAAA,CAAiBP,CAAjB,CAAR,CAAkCA,CAFxB,CAXd,KA0BAQ,QAAQ,CAACF,CAAD,CAAMN,CAAN,CAAa,CACxBI,CAAA,CAASE,CAAT,CAAA,CAAgBxB,CAAA2B,OAAA,CAAeT,CAAf,CADQ,CA1BrB,QAuCGU,QAAQ,CAACJ,CAAD,CAAM,CACpB,OAAOF,CAAA,CAASE,CAAT,CADa,CAvCjB,CAF8C,CAAhC,CAlI3B,CAnBsC,CAArC,CAAA,CAsMEzB,MAtMF,CAsMUA,MAAAC,QAtMV;",
6 | "sources":["angular-cookies.js"],
7 | "names":["window","angular","undefined","module","factory","$rootScope","$browser","cookies","lastCookies","lastBrowserCookies","runEval","copy","isUndefined","addPollFn","currentCookies","$apply","$watch","push","name","value","updated","isString","browserCookies","$cookies","get","key","fromJson","put","toJson","remove"]
8 | }
9 |
--------------------------------------------------------------------------------
/WebApplicationRdn/App_Start/BundleConfig.cs:
--------------------------------------------------------------------------------
1 | using System.Web;
2 | using System.Web.Optimization;
3 |
4 | namespace WebApplicationRdn
5 | {
6 | public class BundleConfig
7 | {
8 | // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
9 | public static void RegisterBundles(BundleCollection bundles)
10 | {
11 | bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
12 | "~/Scripts/jquery-{version}.js"));
13 |
14 | bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
15 | "~/Scripts/jquery-ui-{version}.js"));
16 |
17 | bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
18 | "~/Scripts/jquery.unobtrusive*",
19 | "~/Scripts/jquery.validate*"));
20 |
21 | // Use the development version of Modernizr to develop with and learn from. Then, when you're
22 | // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
23 | bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
24 | "~/Scripts/modernizr-*"));
25 |
26 | bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
27 |
28 | bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
29 | "~/Content/themes/base/jquery.ui.core.css",
30 | "~/Content/themes/base/jquery.ui.resizable.css",
31 | "~/Content/themes/base/jquery.ui.selectable.css",
32 | "~/Content/themes/base/jquery.ui.accordion.css",
33 | "~/Content/themes/base/jquery.ui.autocomplete.css",
34 | "~/Content/themes/base/jquery.ui.button.css",
35 | "~/Content/themes/base/jquery.ui.dialog.css",
36 | "~/Content/themes/base/jquery.ui.slider.css",
37 | "~/Content/themes/base/jquery.ui.tabs.css",
38 | "~/Content/themes/base/jquery.ui.datepicker.css",
39 | "~/Content/themes/base/jquery.ui.progressbar.css",
40 | "~/Content/themes/base/jquery.ui.theme.css"));
41 | }
42 | }
43 | }
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_ms-bn.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "PG",
8 | "PTG"
9 | ],
10 | "DAY": [
11 | "Ahad",
12 | "Isnin",
13 | "Selasa",
14 | "Rabu",
15 | "Khamis",
16 | "Jumaat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Mac",
23 | "April",
24 | "Mei",
25 | "Jun",
26 | "Julai",
27 | "Ogos",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Disember"
32 | ],
33 | "SHORTDAY": [
34 | "Ahd",
35 | "Isn",
36 | "Sel",
37 | "Rab",
38 | "Kha",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ogos",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "dd MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd/MM/yyyy h:mm:ss a",
59 | "mediumDate": "dd/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "RM",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "ms-bn",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_ms-my.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "PG",
8 | "PTG"
9 | ],
10 | "DAY": [
11 | "Ahad",
12 | "Isnin",
13 | "Selasa",
14 | "Rabu",
15 | "Khamis",
16 | "Jumaat",
17 | "Sabtu"
18 | ],
19 | "MONTH": [
20 | "Januari",
21 | "Februari",
22 | "Mac",
23 | "April",
24 | "Mei",
25 | "Jun",
26 | "Julai",
27 | "Ogos",
28 | "September",
29 | "Oktober",
30 | "November",
31 | "Disember"
32 | ],
33 | "SHORTDAY": [
34 | "Ahd",
35 | "Isn",
36 | "Sel",
37 | "Rab",
38 | "Kha",
39 | "Jum",
40 | "Sab"
41 | ],
42 | "SHORTMONTH": [
43 | "Jan",
44 | "Feb",
45 | "Mac",
46 | "Apr",
47 | "Mei",
48 | "Jun",
49 | "Jul",
50 | "Ogos",
51 | "Sep",
52 | "Okt",
53 | "Nov",
54 | "Dis"
55 | ],
56 | "fullDate": "EEEE, d MMMM y",
57 | "longDate": "d MMMM y",
58 | "medium": "dd/MM/yyyy h:mm:ss a",
59 | "mediumDate": "dd/MM/yyyy",
60 | "mediumTime": "h:mm:ss a",
61 | "short": "d/MM/yy h:mm a",
62 | "shortDate": "d/MM/yy",
63 | "shortTime": "h:mm a"
64 | },
65 | "NUMBER_FORMATS": {
66 | "CURRENCY_SYM": "RM",
67 | "DECIMAL_SEP": ".",
68 | "GROUP_SEP": ",",
69 | "PATTERNS": [
70 | {
71 | "gSize": 3,
72 | "lgSize": 3,
73 | "macFrac": 0,
74 | "maxFrac": 3,
75 | "minFrac": 0,
76 | "minInt": 1,
77 | "negPre": "-",
78 | "negSuf": "",
79 | "posPre": "",
80 | "posSuf": ""
81 | },
82 | {
83 | "gSize": 3,
84 | "lgSize": 3,
85 | "macFrac": 0,
86 | "maxFrac": 2,
87 | "minFrac": 2,
88 | "minInt": 1,
89 | "negPre": "(\u00a4",
90 | "negSuf": ")",
91 | "posPre": "\u00a4",
92 | "posSuf": ""
93 | }
94 | ]
95 | },
96 | "id": "ms-my",
97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
98 | });
99 | }]);
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/comment/continuecomment.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var modes = ["clike", "css", "javascript"];
3 | for (var i = 0; i < modes.length; ++i)
4 | CodeMirror.extendMode(modes[i], {blockCommentContinue: " * "});
5 |
6 | function continueComment(cm) {
7 | var pos = cm.getCursor(), token = cm.getTokenAt(pos);
8 | if (token.type != "comment") return CodeMirror.Pass;
9 | var mode = CodeMirror.innerMode(cm.getMode(), token.state).mode;
10 |
11 | var insert;
12 | if (mode.blockCommentStart && mode.blockCommentContinue) {
13 | var end = token.string.indexOf(mode.blockCommentEnd);
14 | var full = cm.getRange(CodeMirror.Pos(pos.line, 0), CodeMirror.Pos(pos.line, token.end)), found;
15 | if (end != -1 && end == token.string.length - mode.blockCommentEnd.length) {
16 | // Comment ended, don't continue it
17 | } else if (token.string.indexOf(mode.blockCommentStart) == 0) {
18 | insert = full.slice(0, token.start);
19 | if (!/^\s*$/.test(insert)) {
20 | insert = "";
21 | for (var i = 0; i < token.start; ++i) insert += " ";
22 | }
23 | } else if ((found = full.indexOf(mode.blockCommentContinue)) != -1 &&
24 | found + mode.blockCommentContinue.length > token.start &&
25 | /^\s*$/.test(full.slice(0, found))) {
26 | insert = full.slice(0, found);
27 | }
28 | if (insert != null) insert += mode.blockCommentContinue;
29 | }
30 | if (insert == null && mode.lineComment) {
31 | var line = cm.getLine(pos.line), found = line.indexOf(mode.lineComment);
32 | if (found > -1) {
33 | insert = line.slice(0, found);
34 | if (/\S/.test(insert)) insert = null;
35 | else insert += mode.lineComment + line.slice(found + mode.lineComment.length).match(/^\s*/)[0];
36 | }
37 | }
38 |
39 | if (insert != null)
40 | cm.replaceSelection("\n" + insert, "end");
41 | else
42 | return CodeMirror.Pass;
43 | }
44 |
45 | CodeMirror.defineOption("continueComments", null, function(cm, val, prev) {
46 | if (prev && prev != CodeMirror.Init)
47 | cm.removeKeyMap("continueComment");
48 | if (val) {
49 | var map = {name: "continueComment"};
50 | map[typeof val == "string" ? val : "Enter"] = continueComment;
51 | cm.addKeyMap(map);
52 | }
53 | });
54 | })();
55 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/xq-light.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (C) 2011 by MarkLogic Corporation
3 | Author: Mike Brevoort
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 | */
23 | .cm-s-xq-light span.cm-keyword {line-height: 1em; font-weight: bold; color: #5A5CAD; }
24 | .cm-s-xq-light span.cm-atom {color: #6C8CD5;}
25 | .cm-s-xq-light span.cm-number {color: #164;}
26 | .cm-s-xq-light span.cm-def {text-decoration:underline;}
27 | .cm-s-xq-light span.cm-variable {color: black; }
28 | .cm-s-xq-light span.cm-variable-2 {color:black;}
29 | .cm-s-xq-light span.cm-variable-3 {color: black; }
30 | .cm-s-xq-light span.cm-property {}
31 | .cm-s-xq-light span.cm-operator {}
32 | .cm-s-xq-light span.cm-comment {color: #0080FF; font-style: italic;}
33 | .cm-s-xq-light span.cm-string {color: red;}
34 | .cm-s-xq-light span.cm-meta {color: yellow;}
35 | .cm-s-xq-light span.cm-qualifier {color: grey}
36 | .cm-s-xq-light span.cm-builtin {color: #7EA656;}
37 | .cm-s-xq-light span.cm-bracket {color: #cc7;}
38 | .cm-s-xq-light span.cm-tag {color: #3F7F7F;}
39 | .cm-s-xq-light span.cm-attribute {color: #7F007F;}
40 | .cm-s-xq-light span.cm-error {color: #f00;}
41 |
42 | .cm-s-xq-light .CodeMirror-activeline-background {background: #e8f2ff !important;}
43 | .cm-s-xq-light .CodeMirror-matchingbracket {outline:1px solid grey;color:black !important;background:yellow;}
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/lesser-dark.css:
--------------------------------------------------------------------------------
1 | /*
2 | http://lesscss.org/ dark theme
3 | Ported to CodeMirror by Peter Kroon
4 | */
5 | .cm-s-lesser-dark {
6 | line-height: 1.3em;
7 | }
8 | .cm-s-lesser-dark {
9 | font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Monaco', Courier, monospace !important;
10 | }
11 |
12 | .cm-s-lesser-dark.CodeMirror { background: #262626; color: #EBEFE7; text-shadow: 0 -1px 1px #262626; }
13 | .cm-s-lesser-dark div.CodeMirror-selected {background: #45443B !important;} /* 33322B*/
14 | .cm-s-lesser-dark .CodeMirror-cursor { border-left: 1px solid white !important; }
15 | .cm-s-lesser-dark pre { padding: 0 8px; }/*editable code holder*/
16 |
17 | .cm-s-lesser-dark.CodeMirror span.CodeMirror-matchingbracket { color: #7EFC7E; }/*65FC65*/
18 |
19 | .cm-s-lesser-dark .CodeMirror-gutters { background: #262626; border-right:1px solid #aaa; }
20 | .cm-s-lesser-dark .CodeMirror-linenumber { color: #777; }
21 |
22 | .cm-s-lesser-dark span.cm-keyword { color: #599eff; }
23 | .cm-s-lesser-dark span.cm-atom { color: #C2B470; }
24 | .cm-s-lesser-dark span.cm-number { color: #B35E4D; }
25 | .cm-s-lesser-dark span.cm-def {color: white;}
26 | .cm-s-lesser-dark span.cm-variable { color:#D9BF8C; }
27 | .cm-s-lesser-dark span.cm-variable-2 { color: #669199; }
28 | .cm-s-lesser-dark span.cm-variable-3 { color: white; }
29 | .cm-s-lesser-dark span.cm-property {color: #92A75C;}
30 | .cm-s-lesser-dark span.cm-operator {color: #92A75C;}
31 | .cm-s-lesser-dark span.cm-comment { color: #666; }
32 | .cm-s-lesser-dark span.cm-string { color: #BCD279; }
33 | .cm-s-lesser-dark span.cm-string-2 {color: #f50;}
34 | .cm-s-lesser-dark span.cm-meta { color: #738C73; }
35 | .cm-s-lesser-dark span.cm-qualifier {color: #555;}
36 | .cm-s-lesser-dark span.cm-builtin { color: #ff9e59; }
37 | .cm-s-lesser-dark span.cm-bracket { color: #EBEFE7; }
38 | .cm-s-lesser-dark span.cm-tag { color: #669199; }
39 | .cm-s-lesser-dark span.cm-attribute {color: #00c;}
40 | .cm-s-lesser-dark span.cm-header {color: #a0a;}
41 | .cm-s-lesser-dark span.cm-quote {color: #090;}
42 | .cm-s-lesser-dark span.cm-hr {color: #999;}
43 | .cm-s-lesser-dark span.cm-link {color: #00c;}
44 | .cm-s-lesser-dark span.cm-error { color: #9d1e15; }
45 |
46 | .cm-s-lesser-dark .CodeMirror-activeline-background {background: #3C3A3A !important;}
47 | .cm-s-lesser-dark .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
48 |
--------------------------------------------------------------------------------
/WebApplicationRdn/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/addon/mode/overlay.js:
--------------------------------------------------------------------------------
1 | // Utility function that allows modes to be combined. The mode given
2 | // as the base argument takes care of most of the normal mode
3 | // functionality, but a second (typically simple) mode is used, which
4 | // can override the style of text. Both modes get to parse all of the
5 | // text, but when both assign a non-null style to a piece of code, the
6 | // overlay wins, unless the combine argument was true, in which case
7 | // the styles are combined.
8 |
9 | // overlayParser is the old, deprecated name
10 | CodeMirror.overlayMode = CodeMirror.overlayParser = function(base, overlay, combine) {
11 | return {
12 | startState: function() {
13 | return {
14 | base: CodeMirror.startState(base),
15 | overlay: CodeMirror.startState(overlay),
16 | basePos: 0, baseCur: null,
17 | overlayPos: 0, overlayCur: null
18 | };
19 | },
20 | copyState: function(state) {
21 | return {
22 | base: CodeMirror.copyState(base, state.base),
23 | overlay: CodeMirror.copyState(overlay, state.overlay),
24 | basePos: state.basePos, baseCur: null,
25 | overlayPos: state.overlayPos, overlayCur: null
26 | };
27 | },
28 |
29 | token: function(stream, state) {
30 | if (stream.start == state.basePos) {
31 | state.baseCur = base.token(stream, state.base);
32 | state.basePos = stream.pos;
33 | }
34 | if (stream.start == state.overlayPos) {
35 | stream.pos = stream.start;
36 | state.overlayCur = overlay.token(stream, state.overlay);
37 | state.overlayPos = stream.pos;
38 | }
39 | stream.pos = Math.min(state.basePos, state.overlayPos);
40 | if (stream.eol()) state.basePos = state.overlayPos = 0;
41 |
42 | if (state.overlayCur == null) return state.baseCur;
43 | if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur;
44 | else return state.overlayCur;
45 | },
46 |
47 | indent: base.indent && function(state, textAfter) {
48 | return base.indent(state.base, textAfter);
49 | },
50 | electricChars: base.electricChars,
51 |
52 | innerMode: function(state) { return {state: state.base, mode: base}; },
53 |
54 | blankLine: function(state) {
55 | if (base.blankLine) base.blankLine(state.base);
56 | if (overlay.blankLine) overlay.blankLine(state.overlay);
57 | }
58 | };
59 | };
60 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_ms.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "PG",
8 | "PTG"
9 | ],
10 | "DAY": [
11 | "Ahad",
12 | "Isnin",
13 | "Selasa",
14 | "Rabu",
15 | "Khamis",
16 | "Jumaat",
17 | "Sabtu"
18 | ],
19 | "ERANAMES": [
20 | "S.M.",
21 | "TM"
22 | ],
23 | "ERAS": [
24 | "S.M.",
25 | "TM"
26 | ],
27 | "MONTH": [
28 | "Januari",
29 | "Februari",
30 | "Mac",
31 | "April",
32 | "Mei",
33 | "Jun",
34 | "Julai",
35 | "Ogos",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Disember"
40 | ],
41 | "SHORTDAY": [
42 | "Ahd",
43 | "Isn",
44 | "Sel",
45 | "Rab",
46 | "Kha",
47 | "Jum",
48 | "Sab"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mac",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Ogo",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Dis"
63 | ],
64 | "fullDate": "EEEE, d MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y h:mm:ss a",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "d/MM/yy h:mm a",
70 | "shortDate": "d/MM/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "RM",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "ms",
103 | "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_id.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "ERANAMES": [
20 | "Sebelum Masehi",
21 | "M"
22 | ],
23 | "ERAS": [
24 | "SM",
25 | "M"
26 | ],
27 | "MONTH": [
28 | "Januari",
29 | "Februari",
30 | "Maret",
31 | "April",
32 | "Mei",
33 | "Juni",
34 | "Juli",
35 | "Agustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "Min",
43 | "Sen",
44 | "Sel",
45 | "Rab",
46 | "Kam",
47 | "Jum",
48 | "Sab"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mar",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Agt",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE, dd MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH.mm.ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH.mm.ss",
69 | "short": "dd/MM/yy HH.mm",
70 | "shortDate": "dd/MM/yy",
71 | "shortTime": "HH.mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Rp",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "id",
103 | "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_in.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "ERANAMES": [
20 | "Sebelum Masehi",
21 | "M"
22 | ],
23 | "ERAS": [
24 | "SM",
25 | "M"
26 | ],
27 | "MONTH": [
28 | "Januari",
29 | "Februari",
30 | "Maret",
31 | "April",
32 | "Mei",
33 | "Juni",
34 | "Juli",
35 | "Agustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "Min",
43 | "Sen",
44 | "Sel",
45 | "Rab",
46 | "Kam",
47 | "Jum",
48 | "Sab"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mar",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Agt",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE, dd MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH.mm.ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH.mm.ss",
69 | "short": "dd/MM/yy HH.mm",
70 | "shortDate": "dd/MM/yy",
71 | "shortTime": "HH.mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Rp",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "in",
103 | "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/SourceRCode/Program.cs:
--------------------------------------------------------------------------------
1 | using RDotNet;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace SourceRCode
9 | {
10 | class Program
11 | {
12 | static void Main(string[] args)
13 | {
14 | if (args.Length == 0)
15 | {
16 | Console.WriteLine(@"Usage:");
17 | Console.WriteLine(@"SourceRCode.exe c:/path/to/source.r");
18 | Console.WriteLine(@" (!) Do note that you should use forward slashes (simpler than backslashes here)");
19 | return;
20 | }
21 | REngine.SetEnvironmentVariables();
22 | REngine engine = REngine.GetInstance();
23 | engine.Evaluate("source('"+ args[0] + "')");
24 | /*
25 | * // Say your R file contains:
26 |
27 | sqr <- function(x) {
28 | return(x*x)
29 | }
30 | */
31 | Console.WriteLine("By default, autoprint on the console");
32 | double[] a = engine.Evaluate("sqr(0:5)").AsNumeric().ToArray();
33 |
34 | Console.WriteLine("However, for manipulation of larger data, autoprint on the console is probably not a good idea");
35 | engine.AutoPrint = false;
36 | a = engine.Evaluate("sqr(0:1000)").AsNumeric().ToArray();
37 |
38 | Console.WriteLine("Length(a) is "+a.Length+", but the vector has not been written out to the console");
39 |
40 | /*
41 | // if testing for http://stackoverflow.com/questions/32236596/calling-user-defined-functions-inside-a-script-in-r-net
42 | double value1 = 1, value2 = 2;
43 | var dataframe = engine.Evaluate(string.Format(
44 | CultureInfo.InvariantCulture,
45 | "dataframe <- userDefinedFunctionOne(parameter1 = {0}, parameter2 = {1})",
46 | value1,
47 | value2)).AsDataFrame();
48 | // with
49 | // userDefinedFunctionOne <- function(parameter1, parameter2) {
50 | // return( data.frame(a=parameter1, b=parameter2) )
51 | // }
52 |
53 | */
54 |
55 | Console.WriteLine("Press any key to exit the program");
56 | Console.ReadKey();
57 | engine.Dispose();
58 | }
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_id-id.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "Minggu",
12 | "Senin",
13 | "Selasa",
14 | "Rabu",
15 | "Kamis",
16 | "Jumat",
17 | "Sabtu"
18 | ],
19 | "ERANAMES": [
20 | "Sebelum Masehi",
21 | "M"
22 | ],
23 | "ERAS": [
24 | "SM",
25 | "M"
26 | ],
27 | "MONTH": [
28 | "Januari",
29 | "Februari",
30 | "Maret",
31 | "April",
32 | "Mei",
33 | "Juni",
34 | "Juli",
35 | "Agustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "Min",
43 | "Sen",
44 | "Sel",
45 | "Rab",
46 | "Kam",
47 | "Jum",
48 | "Sab"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mar",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Agt",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE, dd MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH.mm.ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH.mm.ss",
69 | "short": "dd/MM/yy HH.mm",
70 | "shortDate": "dd/MM/yy",
71 | "shortTime": "HH.mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Rp",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "id-id",
103 | "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/RDotNetSetup/RDotNetSetup.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {5A41CEBA-0BB9-4802-915E-86B951A41AF0}
8 | Library
9 | Properties
10 | RDotNetSetup
11 | RDotNetSetup
12 | 512
13 | 12.0.0
14 | 2.0
15 |
16 |
17 | true
18 | full
19 | false
20 | bin\Debug\
21 | DEBUG;TRACE
22 | prompt
23 | 4
24 |
25 |
26 | pdbonly
27 | true
28 | bin\Release\
29 | TRACE
30 | prompt
31 | 4
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
54 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_af.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "ERANAMES": [
20 | "voor Christus",
21 | "na Christus"
22 | ],
23 | "ERAS": [
24 | "v.C.",
25 | "n.C."
26 | ],
27 | "MONTH": [
28 | "Januarie",
29 | "Februarie",
30 | "Maart",
31 | "April",
32 | "Mei",
33 | "Junie",
34 | "Julie",
35 | "Augustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "So",
43 | "Ma",
44 | "Di",
45 | "Wo",
46 | "Do",
47 | "Vr",
48 | "Sa"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan.",
52 | "Feb.",
53 | "Mrt.",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Aug",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE, dd MMMM y",
65 | "longDate": "dd MMMM y",
66 | "medium": "dd MMM y h:mm:ss a",
67 | "mediumDate": "dd MMM y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "y-MM-dd h:mm a",
70 | "shortDate": "y-MM-dd",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "R",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "af",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_af-na.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "ERANAMES": [
20 | "voor Christus",
21 | "na Christus"
22 | ],
23 | "ERAS": [
24 | "v.C.",
25 | "n.C."
26 | ],
27 | "MONTH": [
28 | "Januarie",
29 | "Februarie",
30 | "Maart",
31 | "April",
32 | "Mei",
33 | "Junie",
34 | "Julie",
35 | "Augustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "So",
43 | "Ma",
44 | "Di",
45 | "Wo",
46 | "Do",
47 | "Vr",
48 | "Sa"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan.",
52 | "Feb.",
53 | "Mrt.",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Aug",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE d MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH:mm:ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "y-MM-dd HH:mm",
70 | "shortDate": "y-MM-dd",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4\u00a0-",
96 | "negSuf": "",
97 | "posPre": "\u00a4\u00a0",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "af-na",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_af-za.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vm.",
8 | "nm."
9 | ],
10 | "DAY": [
11 | "Sondag",
12 | "Maandag",
13 | "Dinsdag",
14 | "Woensdag",
15 | "Donderdag",
16 | "Vrydag",
17 | "Saterdag"
18 | ],
19 | "ERANAMES": [
20 | "voor Christus",
21 | "na Christus"
22 | ],
23 | "ERAS": [
24 | "v.C.",
25 | "n.C."
26 | ],
27 | "MONTH": [
28 | "Januarie",
29 | "Februarie",
30 | "Maart",
31 | "April",
32 | "Mei",
33 | "Junie",
34 | "Julie",
35 | "Augustus",
36 | "September",
37 | "Oktober",
38 | "November",
39 | "Desember"
40 | ],
41 | "SHORTDAY": [
42 | "So",
43 | "Ma",
44 | "Di",
45 | "Wo",
46 | "Do",
47 | "Vr",
48 | "Sa"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan.",
52 | "Feb.",
53 | "Mrt.",
54 | "Apr",
55 | "Mei",
56 | "Jun",
57 | "Jul",
58 | "Aug",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Des"
63 | ],
64 | "fullDate": "EEEE, dd MMMM y",
65 | "longDate": "dd MMMM y",
66 | "medium": "dd MMM y h:mm:ss a",
67 | "mediumDate": "dd MMM y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "y-MM-dd h:mm a",
70 | "shortDate": "y-MM-dd",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "R",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "af-za",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_zu.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "Ekuseni",
8 | "Ntambama"
9 | ],
10 | "DAY": [
11 | "Sonto",
12 | "Msombuluko",
13 | "Lwesibili",
14 | "Lwesithathu",
15 | "Lwesine",
16 | "Lwesihlanu",
17 | "Mgqibelo"
18 | ],
19 | "ERANAMES": [
20 | "BC",
21 | "AD"
22 | ],
23 | "ERAS": [
24 | "BC",
25 | "AD"
26 | ],
27 | "MONTH": [
28 | "Januwari",
29 | "Februwari",
30 | "Mashi",
31 | "Apreli",
32 | "Meyi",
33 | "Juni",
34 | "Julayi",
35 | "Agasti",
36 | "Septhemba",
37 | "Okthoba",
38 | "Novemba",
39 | "Disemba"
40 | ],
41 | "SHORTDAY": [
42 | "Son",
43 | "Mso",
44 | "Bil",
45 | "Tha",
46 | "Sin",
47 | "Hla",
48 | "Mgq"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mas",
54 | "Apr",
55 | "Mey",
56 | "Jun",
57 | "Jul",
58 | "Aga",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Dis"
63 | ],
64 | "fullDate": "EEEE, MMMM d, y",
65 | "longDate": "MMMM d, y",
66 | "medium": "MMM d, y h:mm:ss a",
67 | "mediumDate": "MMM d, y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "M/d/yy h:mm a",
70 | "shortDate": "M/d/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "R",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "zu",
103 | "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_no.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.m.",
8 | "p.m."
9 | ],
10 | "DAY": [
11 | "s\u00f8ndag",
12 | "mandag",
13 | "tirsdag",
14 | "onsdag",
15 | "torsdag",
16 | "fredag",
17 | "l\u00f8rdag"
18 | ],
19 | "ERANAMES": [
20 | "f.Kr.",
21 | "e.Kr."
22 | ],
23 | "ERAS": [
24 | "f.Kr.",
25 | "e.Kr."
26 | ],
27 | "MONTH": [
28 | "januar",
29 | "februar",
30 | "mars",
31 | "april",
32 | "mai",
33 | "juni",
34 | "juli",
35 | "august",
36 | "september",
37 | "oktober",
38 | "november",
39 | "desember"
40 | ],
41 | "SHORTDAY": [
42 | "s\u00f8n.",
43 | "man.",
44 | "tir.",
45 | "ons.",
46 | "tor.",
47 | "fre.",
48 | "l\u00f8r."
49 | ],
50 | "SHORTMONTH": [
51 | "jan.",
52 | "feb.",
53 | "mar.",
54 | "apr.",
55 | "mai",
56 | "jun.",
57 | "jul.",
58 | "aug.",
59 | "sep.",
60 | "okt.",
61 | "nov.",
62 | "des."
63 | ],
64 | "fullDate": "EEEE d. MMMM y",
65 | "longDate": "d. MMMM y",
66 | "medium": "d. MMM y HH.mm.ss",
67 | "mediumDate": "d. MMM y",
68 | "mediumTime": "HH.mm.ss",
69 | "short": "dd.MM.y HH.mm",
70 | "shortDate": "dd.MM.y",
71 | "shortTime": "HH.mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "kr",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4\u00a0-",
96 | "negSuf": "",
97 | "posPre": "\u00a4\u00a0",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "no",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_zu-za.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "Ekuseni",
8 | "Ntambama"
9 | ],
10 | "DAY": [
11 | "Sonto",
12 | "Msombuluko",
13 | "Lwesibili",
14 | "Lwesithathu",
15 | "Lwesine",
16 | "Lwesihlanu",
17 | "Mgqibelo"
18 | ],
19 | "ERANAMES": [
20 | "BC",
21 | "AD"
22 | ],
23 | "ERAS": [
24 | "BC",
25 | "AD"
26 | ],
27 | "MONTH": [
28 | "Januwari",
29 | "Februwari",
30 | "Mashi",
31 | "Apreli",
32 | "Meyi",
33 | "Juni",
34 | "Julayi",
35 | "Agasti",
36 | "Septhemba",
37 | "Okthoba",
38 | "Novemba",
39 | "Disemba"
40 | ],
41 | "SHORTDAY": [
42 | "Son",
43 | "Mso",
44 | "Bil",
45 | "Tha",
46 | "Sin",
47 | "Hla",
48 | "Mgq"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "Mas",
54 | "Apr",
55 | "Mey",
56 | "Jun",
57 | "Jul",
58 | "Aga",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Dis"
63 | ],
64 | "fullDate": "EEEE, MMMM d, y",
65 | "longDate": "MMMM d, y",
66 | "medium": "MMM d, y h:mm:ss a",
67 | "mediumDate": "MMM d, y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "M/d/yy h:mm a",
70 | "shortDate": "M/d/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "R",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "zu-za",
103 | "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-mx.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.m.",
8 | "p.m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "Anno Domini"
22 | ],
23 | "ERAS": [
24 | "a.C.",
25 | "d.C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "septiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom",
43 | "lun",
44 | "mar",
45 | "mi\u00e9",
46 | "jue",
47 | "vie",
48 | "s\u00e1b"
49 | ],
50 | "SHORTMONTH": [
51 | "ene",
52 | "feb",
53 | "mar",
54 | "abr",
55 | "may",
56 | "jun",
57 | "jul",
58 | "ago",
59 | "sep",
60 | "oct",
61 | "nov",
62 | "dic"
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "dd/MM/y H:mm:ss",
67 | "mediumDate": "dd/MM/y",
68 | "mediumTime": "H:mm:ss",
69 | "short": "dd/MM/yy H:mm",
70 | "shortDate": "dd/MM/yy",
71 | "shortTime": "H:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-mx",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_eu.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "igandea",
12 | "astelehena",
13 | "asteartea",
14 | "asteazkena",
15 | "osteguna",
16 | "ostirala",
17 | "larunbata"
18 | ],
19 | "ERANAMES": [
20 | "K.a.",
21 | "K.o."
22 | ],
23 | "ERAS": [
24 | "K.a.",
25 | "K.o."
26 | ],
27 | "MONTH": [
28 | "urtarrilak",
29 | "otsailak",
30 | "martxoak",
31 | "apirilak",
32 | "maiatzak",
33 | "ekainak",
34 | "uztailak",
35 | "abuztuak",
36 | "irailak",
37 | "urriak",
38 | "azaroak",
39 | "abenduak"
40 | ],
41 | "SHORTDAY": [
42 | "ig.",
43 | "al.",
44 | "ar.",
45 | "az.",
46 | "og.",
47 | "or.",
48 | "lr."
49 | ],
50 | "SHORTMONTH": [
51 | "urt.",
52 | "ots.",
53 | "mar.",
54 | "api.",
55 | "mai.",
56 | "eka.",
57 | "uzt.",
58 | "abu.",
59 | "ira.",
60 | "urr.",
61 | "aza.",
62 | "abe."
63 | ],
64 | "fullDate": "y('e')'ko' MMMM d, EEEE",
65 | "longDate": "y('e')'ko' MMMM d",
66 | "medium": "y MMM d HH:mm:ss",
67 | "mediumDate": "y MMM d",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "y/MM/dd HH:mm",
70 | "shortDate": "y/MM/dd",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "\u20ac",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "eu",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/mode/toml/toml.js:
--------------------------------------------------------------------------------
1 | CodeMirror.defineMode("toml", function () {
2 | return {
3 | startState: function () {
4 | return {
5 | inString: false,
6 | stringType: "",
7 | lhs: true,
8 | inArray: 0
9 | };
10 | },
11 | token: function (stream, state) {
12 | //check for state changes
13 | if (!state.inString && ((stream.peek() == '"') || (stream.peek() == "'"))) {
14 | state.stringType = stream.peek();
15 | stream.next(); // Skip quote
16 | state.inString = true; // Update state
17 | }
18 | if (stream.sol() && state.inArray === 0) {
19 | state.lhs = true;
20 | }
21 | //return state
22 | if (state.inString) {
23 | while (state.inString && !stream.eol()) {
24 | if (stream.peek() === state.stringType) {
25 | stream.next(); // Skip quote
26 | state.inString = false; // Clear flag
27 | } else if (stream.peek() === '\\') {
28 | stream.next();
29 | stream.next();
30 | } else {
31 | stream.match(/^.[^\\\"\']*/);
32 | }
33 | }
34 | return state.lhs ? "property string" : "string"; // Token style
35 | } else if (state.inArray && stream.peek() === ']') {
36 | stream.next();
37 | state.inArray--;
38 | return 'bracket';
39 | } else if (state.lhs && stream.peek() === '[' && stream.skipTo(']')) {
40 | stream.next();//skip closing ]
41 | return "atom";
42 | } else if (stream.peek() === "#") {
43 | stream.skipToEnd();
44 | return "comment";
45 | } else if (stream.eatSpace()) {
46 | return null;
47 | } else if (state.lhs && stream.eatWhile(function (c) { return c != '=' && c != ' '; })) {
48 | return "property";
49 | } else if (state.lhs && stream.peek() === "=") {
50 | stream.next();
51 | state.lhs = false;
52 | return null;
53 | } else if (!state.lhs && stream.match(/^\d\d\d\d[\d\-\:\.T]*Z/)) {
54 | return 'atom'; //date
55 | } else if (!state.lhs && (stream.match('true') || stream.match('false'))) {
56 | return 'atom';
57 | } else if (!state.lhs && stream.peek() === '[') {
58 | state.inArray++;
59 | stream.next();
60 | return 'bracket';
61 | } else if (!state.lhs && stream.match(/^\-?\d+(?:\.\d+)?/)) {
62 | return 'number';
63 | } else if (!stream.eatSpace()) {
64 | stream.next();
65 | }
66 | return null;
67 | }
68 | };
69 | });
70 |
71 | CodeMirror.defineMIME('text/x-toml', 'toml');
72 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_eu-es.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "igandea",
12 | "astelehena",
13 | "asteartea",
14 | "asteazkena",
15 | "osteguna",
16 | "ostirala",
17 | "larunbata"
18 | ],
19 | "ERANAMES": [
20 | "K.a.",
21 | "K.o."
22 | ],
23 | "ERAS": [
24 | "K.a.",
25 | "K.o."
26 | ],
27 | "MONTH": [
28 | "urtarrilak",
29 | "otsailak",
30 | "martxoak",
31 | "apirilak",
32 | "maiatzak",
33 | "ekainak",
34 | "uztailak",
35 | "abuztuak",
36 | "irailak",
37 | "urriak",
38 | "azaroak",
39 | "abenduak"
40 | ],
41 | "SHORTDAY": [
42 | "ig.",
43 | "al.",
44 | "ar.",
45 | "az.",
46 | "og.",
47 | "or.",
48 | "lr."
49 | ],
50 | "SHORTMONTH": [
51 | "urt.",
52 | "ots.",
53 | "mar.",
54 | "api.",
55 | "mai.",
56 | "eka.",
57 | "uzt.",
58 | "abu.",
59 | "ira.",
60 | "urr.",
61 | "aza.",
62 | "abe."
63 | ],
64 | "fullDate": "y('e')'ko' MMMM d, EEEE",
65 | "longDate": "y('e')'ko' MMMM d",
66 | "medium": "y MMM d HH:mm:ss",
67 | "mediumDate": "y MMM d",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "y/MM/dd HH:mm",
70 | "shortDate": "y/MM/dd",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "\u20ac",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "eu-es",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_gsw.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vorm.",
8 | "nam."
9 | ],
10 | "DAY": [
11 | "Sunntig",
12 | "M\u00e4\u00e4ntig",
13 | "Ziischtig",
14 | "Mittwuch",
15 | "Dunschtig",
16 | "Friitig",
17 | "Samschtig"
18 | ],
19 | "ERANAMES": [
20 | "v. Chr.",
21 | "n. Chr."
22 | ],
23 | "ERAS": [
24 | "v. Chr.",
25 | "n. Chr."
26 | ],
27 | "MONTH": [
28 | "Januar",
29 | "Februar",
30 | "M\u00e4rz",
31 | "April",
32 | "Mai",
33 | "Juni",
34 | "Juli",
35 | "Auguscht",
36 | "Sept\u00e4mber",
37 | "Oktoober",
38 | "Nov\u00e4mber",
39 | "Dez\u00e4mber"
40 | ],
41 | "SHORTDAY": [
42 | "Su.",
43 | "M\u00e4.",
44 | "Zi.",
45 | "Mi.",
46 | "Du.",
47 | "Fr.",
48 | "Sa."
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "M\u00e4r",
54 | "Apr",
55 | "Mai",
56 | "Jun",
57 | "Jul",
58 | "Aug",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Dez"
63 | ],
64 | "fullDate": "EEEE, d. MMMM y",
65 | "longDate": "d. MMMM y",
66 | "medium": "dd.MM.y HH:mm:ss",
67 | "mediumDate": "dd.MM.y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "dd.MM.yy HH:mm",
70 | "shortDate": "dd.MM.yy",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "CHF",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": "\u2019",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "gsw",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_gsw-ch.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "vorm.",
8 | "nam."
9 | ],
10 | "DAY": [
11 | "Sunntig",
12 | "M\u00e4\u00e4ntig",
13 | "Ziischtig",
14 | "Mittwuch",
15 | "Dunschtig",
16 | "Friitig",
17 | "Samschtig"
18 | ],
19 | "ERANAMES": [
20 | "v. Chr.",
21 | "n. Chr."
22 | ],
23 | "ERAS": [
24 | "v. Chr.",
25 | "n. Chr."
26 | ],
27 | "MONTH": [
28 | "Januar",
29 | "Februar",
30 | "M\u00e4rz",
31 | "April",
32 | "Mai",
33 | "Juni",
34 | "Juli",
35 | "Auguscht",
36 | "Sept\u00e4mber",
37 | "Oktoober",
38 | "Nov\u00e4mber",
39 | "Dez\u00e4mber"
40 | ],
41 | "SHORTDAY": [
42 | "Su.",
43 | "M\u00e4.",
44 | "Zi.",
45 | "Mi.",
46 | "Du.",
47 | "Fr.",
48 | "Sa."
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Feb",
53 | "M\u00e4r",
54 | "Apr",
55 | "Mai",
56 | "Jun",
57 | "Jul",
58 | "Aug",
59 | "Sep",
60 | "Okt",
61 | "Nov",
62 | "Dez"
63 | ],
64 | "fullDate": "EEEE, d. MMMM y",
65 | "longDate": "d. MMMM y",
66 | "medium": "dd.MM.y HH:mm:ss",
67 | "mediumDate": "dd.MM.y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "dd.MM.yy HH:mm",
70 | "shortDate": "dd.MM.yy",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "CHF",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": "\u2019",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "gsw-ch",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_tr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "\u00d6\u00d6",
8 | "\u00d6S"
9 | ],
10 | "DAY": [
11 | "Pazar",
12 | "Pazartesi",
13 | "Sal\u0131",
14 | "\u00c7ar\u015famba",
15 | "Per\u015fembe",
16 | "Cuma",
17 | "Cumartesi"
18 | ],
19 | "ERANAMES": [
20 | "Milattan \u00d6nce",
21 | "Milattan Sonra"
22 | ],
23 | "ERAS": [
24 | "M\u00d6",
25 | "MS"
26 | ],
27 | "MONTH": [
28 | "Ocak",
29 | "\u015eubat",
30 | "Mart",
31 | "Nisan",
32 | "May\u0131s",
33 | "Haziran",
34 | "Temmuz",
35 | "A\u011fustos",
36 | "Eyl\u00fcl",
37 | "Ekim",
38 | "Kas\u0131m",
39 | "Aral\u0131k"
40 | ],
41 | "SHORTDAY": [
42 | "Paz",
43 | "Pzt",
44 | "Sal",
45 | "\u00c7ar",
46 | "Per",
47 | "Cum",
48 | "Cmt"
49 | ],
50 | "SHORTMONTH": [
51 | "Oca",
52 | "\u015eub",
53 | "Mar",
54 | "Nis",
55 | "May",
56 | "Haz",
57 | "Tem",
58 | "A\u011fu",
59 | "Eyl",
60 | "Eki",
61 | "Kas",
62 | "Ara"
63 | ],
64 | "fullDate": "d MMMM y EEEE",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH:mm:ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "d MM y HH:mm",
70 | "shortDate": "d MM y",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "TL",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "tr",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_tr-tr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "\u00d6\u00d6",
8 | "\u00d6S"
9 | ],
10 | "DAY": [
11 | "Pazar",
12 | "Pazartesi",
13 | "Sal\u0131",
14 | "\u00c7ar\u015famba",
15 | "Per\u015fembe",
16 | "Cuma",
17 | "Cumartesi"
18 | ],
19 | "ERANAMES": [
20 | "Milattan \u00d6nce",
21 | "Milattan Sonra"
22 | ],
23 | "ERAS": [
24 | "M\u00d6",
25 | "MS"
26 | ],
27 | "MONTH": [
28 | "Ocak",
29 | "\u015eubat",
30 | "Mart",
31 | "Nisan",
32 | "May\u0131s",
33 | "Haziran",
34 | "Temmuz",
35 | "A\u011fustos",
36 | "Eyl\u00fcl",
37 | "Ekim",
38 | "Kas\u0131m",
39 | "Aral\u0131k"
40 | ],
41 | "SHORTDAY": [
42 | "Paz",
43 | "Pzt",
44 | "Sal",
45 | "\u00c7ar",
46 | "Per",
47 | "Cum",
48 | "Cmt"
49 | ],
50 | "SHORTMONTH": [
51 | "Oca",
52 | "\u015eub",
53 | "Mar",
54 | "Nis",
55 | "May",
56 | "Haz",
57 | "Tem",
58 | "A\u011fu",
59 | "Eyl",
60 | "Eki",
61 | "Kas",
62 | "Ara"
63 | ],
64 | "fullDate": "d MMMM y EEEE",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH:mm:ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "d MM y HH:mm",
70 | "shortDate": "d MM y",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "TL",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "tr-tr",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-co.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.\u00a0m.",
8 | "p.\u00a0m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d/MM/y h:mm:ss a",
67 | "mediumDate": "d/MM/y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "d/MM/yy h:mm a",
70 | "shortDate": "d/MM/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-co",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-gq.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a. m.",
8 | "p. m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "anno D\u00f3mini"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "septiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "sept.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d 'de' MMM 'de' y H:mm:ss",
67 | "mediumDate": "d 'de' MMM 'de' y",
68 | "mediumTime": "H:mm:ss",
69 | "short": "d/M/yy H:mm",
70 | "shortDate": "d/M/yy",
71 | "shortTime": "H:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "FCFA",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-gq",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-gt.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.\u00a0m.",
8 | "p.\u00a0m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d/MM/y h:mm:ss a",
67 | "mediumDate": "d/MM/y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "d/MM/yy h:mm a",
70 | "shortDate": "d/MM/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Q",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-gt",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_sq.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "paradite",
8 | "pasdite"
9 | ],
10 | "DAY": [
11 | "e diel",
12 | "e h\u00ebn\u00eb",
13 | "e mart\u00eb",
14 | "e m\u00ebrkur\u00eb",
15 | "e enjte",
16 | "e premte",
17 | "e shtun\u00eb"
18 | ],
19 | "ERANAMES": [
20 | "para er\u00ebs s\u00eb re",
21 | "er\u00ebs s\u00eb re"
22 | ],
23 | "ERAS": [
24 | "p.e.r.",
25 | "e.r."
26 | ],
27 | "MONTH": [
28 | "janar",
29 | "shkurt",
30 | "mars",
31 | "prill",
32 | "maj",
33 | "qershor",
34 | "korrik",
35 | "gusht",
36 | "shtator",
37 | "tetor",
38 | "n\u00ebntor",
39 | "dhjetor"
40 | ],
41 | "SHORTDAY": [
42 | "Die",
43 | "H\u00ebn",
44 | "Mar",
45 | "M\u00ebr",
46 | "Enj",
47 | "Pre",
48 | "Sht"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Shk",
53 | "Mar",
54 | "Pri",
55 | "Maj",
56 | "Qer",
57 | "Kor",
58 | "Gsh",
59 | "Sht",
60 | "Tet",
61 | "N\u00ebn",
62 | "Dhj"
63 | ],
64 | "fullDate": "EEEE, d MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH:mm:ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "d.M.yy HH:mm",
70 | "shortDate": "d.M.yy",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Lek",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "sq",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/codemirror/theme/xq-dark.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (C) 2011 by MarkLogic Corporation
3 | Author: Mike Brevoort
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 | */
23 | .cm-s-xq-dark.CodeMirror { background: #0a001f; color: #f8f8f8; }
24 | .cm-s-xq-dark .CodeMirror-selected { background: #27007A !important; }
25 | .cm-s-xq-dark .CodeMirror-gutters { background: #0a001f; border-right: 1px solid #aaa; }
26 | .cm-s-xq-dark .CodeMirror-linenumber { color: #f8f8f8; }
27 | .cm-s-xq-dark .CodeMirror-cursor { border-left: 1px solid white !important; }
28 |
29 | .cm-s-xq-dark span.cm-keyword {color: #FFBD40;}
30 | .cm-s-xq-dark span.cm-atom {color: #6C8CD5;}
31 | .cm-s-xq-dark span.cm-number {color: #164;}
32 | .cm-s-xq-dark span.cm-def {color: #FFF; text-decoration:underline;}
33 | .cm-s-xq-dark span.cm-variable {color: #FFF;}
34 | .cm-s-xq-dark span.cm-variable-2 {color: #EEE;}
35 | .cm-s-xq-dark span.cm-variable-3 {color: #DDD;}
36 | .cm-s-xq-dark span.cm-property {}
37 | .cm-s-xq-dark span.cm-operator {}
38 | .cm-s-xq-dark span.cm-comment {color: gray;}
39 | .cm-s-xq-dark span.cm-string {color: #9FEE00;}
40 | .cm-s-xq-dark span.cm-meta {color: yellow;}
41 | .cm-s-xq-dark span.cm-qualifier {color: #FFF700;}
42 | .cm-s-xq-dark span.cm-builtin {color: #30a;}
43 | .cm-s-xq-dark span.cm-bracket {color: #cc7;}
44 | .cm-s-xq-dark span.cm-tag {color: #FFBD40;}
45 | .cm-s-xq-dark span.cm-attribute {color: #FFF700;}
46 | .cm-s-xq-dark span.cm-error {color: #f00;}
47 |
48 | .cm-s-xq-dark .CodeMirror-activeline-background {background: #27282E !important;}
49 | .cm-s-xq-dark .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-cl.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.\u00a0m.",
8 | "p.\u00a0m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "dd-MM-y h:mm:ss a",
67 | "mediumDate": "dd-MM-y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "dd-MM-yy h:mm a",
70 | "shortDate": "dd-MM-yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-cl",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-pa.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.\u00a0m.",
8 | "p.\u00a0m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "MM/dd/y h:mm:ss a",
67 | "mediumDate": "MM/dd/y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "MM/dd/yy h:mm a",
70 | "shortDate": "MM/dd/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "B/.",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-pa",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-pr.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a.\u00a0m.",
8 | "p.\u00a0m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "MM/dd/y h:mm:ss a",
67 | "mediumDate": "MM/dd/y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "MM/dd/yy h:mm a",
70 | "shortDate": "MM/dd/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-pr",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-us.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "AM",
8 | "PM"
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "despu\u00e9s de Cristo"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "setiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "set.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d 'de' MMM 'de' y h:mm:ss a",
67 | "mediumDate": "d 'de' MMM 'de' y",
68 | "mediumTime": "h:mm:ss a",
69 | "short": "d/M/yy h:mm a",
70 | "shortDate": "d/M/yy",
71 | "shortTime": "h:mm a"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "$",
75 | "DECIMAL_SEP": ".",
76 | "GROUP_SEP": ",",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "\u00a4-",
96 | "negSuf": "",
97 | "posPre": "\u00a4",
98 | "posSuf": ""
99 | }
100 | ]
101 | },
102 | "id": "es-us",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_sq-al.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "paradite",
8 | "pasdite"
9 | ],
10 | "DAY": [
11 | "e diel",
12 | "e h\u00ebn\u00eb",
13 | "e mart\u00eb",
14 | "e m\u00ebrkur\u00eb",
15 | "e enjte",
16 | "e premte",
17 | "e shtun\u00eb"
18 | ],
19 | "ERANAMES": [
20 | "para er\u00ebs s\u00eb re",
21 | "er\u00ebs s\u00eb re"
22 | ],
23 | "ERAS": [
24 | "p.e.r.",
25 | "e.r."
26 | ],
27 | "MONTH": [
28 | "janar",
29 | "shkurt",
30 | "mars",
31 | "prill",
32 | "maj",
33 | "qershor",
34 | "korrik",
35 | "gusht",
36 | "shtator",
37 | "tetor",
38 | "n\u00ebntor",
39 | "dhjetor"
40 | ],
41 | "SHORTDAY": [
42 | "Die",
43 | "H\u00ebn",
44 | "Mar",
45 | "M\u00ebr",
46 | "Enj",
47 | "Pre",
48 | "Sht"
49 | ],
50 | "SHORTMONTH": [
51 | "Jan",
52 | "Shk",
53 | "Mar",
54 | "Pri",
55 | "Maj",
56 | "Qer",
57 | "Kor",
58 | "Gsh",
59 | "Sht",
60 | "Tet",
61 | "N\u00ebn",
62 | "Dhj"
63 | ],
64 | "fullDate": "EEEE, d MMMM y",
65 | "longDate": "d MMMM y",
66 | "medium": "d MMM y HH:mm:ss",
67 | "mediumDate": "d MMM y",
68 | "mediumTime": "HH:mm:ss",
69 | "short": "d.M.yy HH:mm",
70 | "shortDate": "d.M.yy",
71 | "shortTime": "HH:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "Lek",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": "\u00a0",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "sq-al",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a. m.",
8 | "p. m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "anno D\u00f3mini"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "septiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "sept.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d 'de' MMM 'de' y H:mm:ss",
67 | "mediumDate": "d 'de' MMM 'de' y",
68 | "mediumTime": "H:mm:ss",
69 | "short": "d/M/yy H:mm",
70 | "shortDate": "d/M/yy",
71 | "shortTime": "H:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "\u20ac",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "es",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------
/WebApplicationRdn/Scripts/i18n/angular-locale_es-ea.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | angular.module("ngLocale", [], ["$provide", function($provide) {
3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 | $provide.value("$locale", {
5 | "DATETIME_FORMATS": {
6 | "AMPMS": [
7 | "a. m.",
8 | "p. m."
9 | ],
10 | "DAY": [
11 | "domingo",
12 | "lunes",
13 | "martes",
14 | "mi\u00e9rcoles",
15 | "jueves",
16 | "viernes",
17 | "s\u00e1bado"
18 | ],
19 | "ERANAMES": [
20 | "antes de Cristo",
21 | "anno D\u00f3mini"
22 | ],
23 | "ERAS": [
24 | "a. C.",
25 | "d. C."
26 | ],
27 | "MONTH": [
28 | "enero",
29 | "febrero",
30 | "marzo",
31 | "abril",
32 | "mayo",
33 | "junio",
34 | "julio",
35 | "agosto",
36 | "septiembre",
37 | "octubre",
38 | "noviembre",
39 | "diciembre"
40 | ],
41 | "SHORTDAY": [
42 | "dom.",
43 | "lun.",
44 | "mar.",
45 | "mi\u00e9.",
46 | "jue.",
47 | "vie.",
48 | "s\u00e1b."
49 | ],
50 | "SHORTMONTH": [
51 | "ene.",
52 | "feb.",
53 | "mar.",
54 | "abr.",
55 | "may.",
56 | "jun.",
57 | "jul.",
58 | "ago.",
59 | "sept.",
60 | "oct.",
61 | "nov.",
62 | "dic."
63 | ],
64 | "fullDate": "EEEE, d 'de' MMMM 'de' y",
65 | "longDate": "d 'de' MMMM 'de' y",
66 | "medium": "d 'de' MMM 'de' y H:mm:ss",
67 | "mediumDate": "d 'de' MMM 'de' y",
68 | "mediumTime": "H:mm:ss",
69 | "short": "d/M/yy H:mm",
70 | "shortDate": "d/M/yy",
71 | "shortTime": "H:mm"
72 | },
73 | "NUMBER_FORMATS": {
74 | "CURRENCY_SYM": "\u20ac",
75 | "DECIMAL_SEP": ",",
76 | "GROUP_SEP": ".",
77 | "PATTERNS": [
78 | {
79 | "gSize": 3,
80 | "lgSize": 3,
81 | "maxFrac": 3,
82 | "minFrac": 0,
83 | "minInt": 1,
84 | "negPre": "-",
85 | "negSuf": "",
86 | "posPre": "",
87 | "posSuf": ""
88 | },
89 | {
90 | "gSize": 3,
91 | "lgSize": 3,
92 | "maxFrac": 2,
93 | "minFrac": 2,
94 | "minInt": 1,
95 | "negPre": "-",
96 | "negSuf": "\u00a0\u00a4",
97 | "posPre": "",
98 | "posSuf": "\u00a0\u00a4"
99 | }
100 | ]
101 | },
102 | "id": "es-ea",
103 | "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
104 | });
105 | }]);
106 |
--------------------------------------------------------------------------------