ninjs 0.9.2 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. data/.bundle/config +2 -0
  2. data/Gemfile +17 -0
  3. data/Gemfile.lock +38 -0
  4. data/README.textile +1 -1
  5. data/Rakefile +60 -0
  6. data/VERSION +1 -0
  7. data/lib/ninjs.rb +0 -1
  8. data/lib/ninjs/command.rb +16 -1
  9. data/lib/ninjs/manifest.rb +1 -1
  10. data/lib/ninjs/project.rb +74 -91
  11. data/ninjs.gemspec +305 -104
  12. data/repository/jquery/fancybox/assets/1.3.1/images/fancybox/jquery.easing-1.3.pack.js +72 -0
  13. data/repository/jquery/fancybox/assets/1.3.1/scss/fancybox.scss +69 -0
  14. data/repository/jquery/ui/1.8.7.js +783 -0
  15. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.accordion.css +19 -0
  16. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.all.css +11 -0
  17. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.autocomplete.css +53 -0
  18. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.base.css +11 -0
  19. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.button.css +38 -0
  20. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.core.css +41 -0
  21. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.datepicker.css +68 -0
  22. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.dialog.css +21 -0
  23. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.progressbar.css +11 -0
  24. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.resizable.css +20 -0
  25. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.selectable.css +10 -0
  26. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.slider.css +24 -0
  27. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.tabs.css +18 -0
  28. data/repository/jquery/ui/assets/1.8.7/css/jqueryui/jquery.ui.theme.css +252 -0
  29. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  30. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_flat_75_ffffff_40x100.png +0 -0
  31. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  32. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_glass_65_ffffff_1x400.png +0 -0
  33. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_glass_75_dadada_1x400.png +0 -0
  34. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  35. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  36. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  37. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-icons_222222_256x240.png +0 -0
  38. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-icons_2e83ff_256x240.png +0 -0
  39. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-icons_454545_256x240.png +0 -0
  40. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-icons_888888_256x240.png +0 -0
  41. data/repository/jquery/ui/assets/1.8.7/images/jqueryui/ui-icons_cd0a0a_256x240.png +0 -0
  42. data/repository/jquery/ui/latest.js +1 -0
  43. data/repository/ninjs/core/.core.pdoc.yaml +0 -0
  44. data/repository/ninjs/core/.existence.pdoc.yaml +12 -0
  45. data/repository/ninjs/core/.extend.pdoc.yaml +0 -0
  46. data/repository/ninjs/core/.nin.pdoc.yaml +0 -0
  47. data/repository/ninjs/core/application.js +43 -0
  48. data/repository/ninjs/core/existence.js +221 -11
  49. data/repository/ninjs/core/extend.js +18 -0
  50. data/repository/ninjs/core/module.js +230 -0
  51. data/repository/ninjs/core/nin.js +3 -137
  52. data/repository/ninjs/docs/Data/ClassHierarchy.nd +0 -0
  53. data/repository/ninjs/docs/Data/ConfigFileInfo.nd +0 -0
  54. data/repository/ninjs/docs/Data/FileInfo.nd +16 -0
  55. data/repository/ninjs/docs/Data/ImageFileInfo.nd +0 -0
  56. data/repository/ninjs/docs/Data/ImageReferenceTable.nd +0 -0
  57. data/repository/ninjs/docs/Data/IndexInfo.nd +0 -0
  58. data/repository/ninjs/docs/Data/PreviousMenuState.nd +0 -0
  59. data/repository/ninjs/docs/Data/PreviousSettings.nd +0 -0
  60. data/repository/ninjs/docs/Data/SymbolTable.nd +0 -0
  61. data/repository/ninjs/docs/Languages.txt +113 -0
  62. data/repository/ninjs/docs/Menu.txt +63 -0
  63. data/repository/ninjs/docs/Topics.txt +81 -0
  64. data/repository/ninjs/docs/files/core/application-js.html +44 -0
  65. data/repository/ninjs/docs/files/core/existence-js.html +60 -0
  66. data/repository/ninjs/docs/files/core/extend-js.html +46 -0
  67. data/repository/ninjs/docs/files/core/module-js.html +80 -0
  68. data/repository/ninjs/docs/files/core/nin-js.html +38 -0
  69. data/repository/ninjs/docs/files/existence-js.html +54 -0
  70. data/repository/ninjs/docs/index.html +1 -0
  71. data/repository/ninjs/docs/index/Classes.html +33 -0
  72. data/repository/ninjs/docs/index/Files.html +45 -0
  73. data/repository/ninjs/docs/index/Functions.html +57 -0
  74. data/repository/ninjs/docs/index/General.html +77 -0
  75. data/repository/ninjs/docs/index/Variables.html +45 -0
  76. data/repository/ninjs/docs/javascript/main.js +841 -0
  77. data/repository/ninjs/docs/javascript/prettify.js +1526 -0
  78. data/repository/ninjs/docs/javascript/searchdata.js +152 -0
  79. data/repository/ninjs/docs/search/ClassesN.html +20 -0
  80. data/repository/ninjs/docs/search/FilesA.html +20 -0
  81. data/repository/ninjs/docs/search/FilesE.html +20 -0
  82. data/repository/ninjs/docs/search/FilesM.html +20 -0
  83. data/repository/ninjs/docs/search/FilesN.html +20 -0
  84. data/repository/ninjs/docs/search/FunctionsA.html +20 -0
  85. data/repository/ninjs/docs/search/FunctionsC.html +20 -0
  86. data/repository/ninjs/docs/search/FunctionsE.html +20 -0
  87. data/repository/ninjs/docs/search/FunctionsI.html +20 -0
  88. data/repository/ninjs/docs/search/FunctionsM.html +20 -0
  89. data/repository/ninjs/docs/search/FunctionsR.html +20 -0
  90. data/repository/ninjs/docs/search/FunctionsS.html +20 -0
  91. data/repository/ninjs/docs/search/GeneralA.html +20 -0
  92. data/repository/ninjs/docs/search/GeneralC.html +20 -0
  93. data/repository/ninjs/docs/search/GeneralD.html +20 -0
  94. data/repository/ninjs/docs/search/GeneralE.html +20 -0
  95. data/repository/ninjs/docs/search/GeneralF.html +20 -0
  96. data/repository/ninjs/docs/search/GeneralI.html +20 -0
  97. data/repository/ninjs/docs/search/GeneralM.html +20 -0
  98. data/repository/ninjs/docs/search/GeneralN.html +20 -0
  99. data/repository/ninjs/docs/search/GeneralR.html +20 -0
  100. data/repository/ninjs/docs/search/GeneralS.html +20 -0
  101. data/repository/ninjs/docs/search/GeneralT.html +20 -0
  102. data/repository/ninjs/docs/search/GeneralV.html +20 -0
  103. data/repository/ninjs/docs/search/NoResults.html +15 -0
  104. data/repository/ninjs/docs/search/VariablesD.html +20 -0
  105. data/repository/ninjs/docs/search/VariablesN.html +20 -0
  106. data/repository/ninjs/docs/search/VariablesR.html +20 -0
  107. data/repository/ninjs/docs/search/VariablesT.html +20 -0
  108. data/repository/ninjs/docs/styles/main.css +828 -0
  109. data/repository/ninjs/docs/styles/mystyles.css +828 -0
  110. data/repository/ninjs/tests/index.html +6 -6
  111. data/repository/ninjs/tests/ninjs.test.js +94 -43
  112. data/repository/ninjs/tests/ninjs.utilities.test.js +6 -18
  113. data/repository/ninjs/tests/qunit/qunit.css +197 -0
  114. data/repository/ninjs/tests/qunit/qunit.js +1415 -0
  115. data/repository/ninjs/utilities/all.js +2 -1
  116. data/repository/ninjs/utilities/array.js +3 -3
  117. data/repository/ninjs/utilities/cookie.js +0 -0
  118. data/repository/ninjs/utilities/number.js +2 -2
  119. data/repository/ninjs/utilities/string.js +3 -3
  120. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCore.css +226 -0
  121. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreDefault.css +328 -0
  122. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreDjango.css +331 -0
  123. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreEclipse.css +339 -0
  124. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreEmacs.css +324 -0
  125. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreFadeToGrey.css +328 -0
  126. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreMDUltra.css +324 -0
  127. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreMidnight.css +324 -0
  128. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shCoreRDark.css +324 -0
  129. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeDefault.css +117 -0
  130. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeDjango.css +120 -0
  131. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeEclipse.css +128 -0
  132. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeEmacs.css +113 -0
  133. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeFadeToGrey.css +117 -0
  134. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeMDUltra.css +113 -0
  135. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeMidnight.css +113 -0
  136. data/repository/syntaxhighlighter/assets/css/syntaxhighlighter/shThemeRDark.css +113 -0
  137. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCore.scss +216 -0
  138. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreDefault.scss +2 -0
  139. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreDjango.scss +2 -0
  140. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreEclipse.scss +2 -0
  141. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreEmacs.scss +2 -0
  142. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreFadeToGrey.scss +2 -0
  143. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreMDUltra.scss +2 -0
  144. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreMidnight.scss +2 -0
  145. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shCoreRDark.scss +2 -0
  146. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeDefault.scss +7 -0
  147. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeDjango.scss +36 -0
  148. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeEclipse.scss +48 -0
  149. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeEmacs.scss +32 -0
  150. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeFadeToGrey.scss +36 -0
  151. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeMDUltra.scss +32 -0
  152. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeMidnight.scss +32 -0
  153. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_shThemeRDark.scss +32 -0
  154. data/repository/syntaxhighlighter/assets/scss/syntaxhighlighter/_theme_template.scss +120 -0
  155. data/repository/syntaxhighlighter/default.js +2 -1
  156. data/repository/syntaxhighlighter/shBrushAppleScript.js +1 -1
  157. data/repository/syntaxhighlighter/shBrushPerl.js +1 -1
  158. data/repository/syntaxhighlighter/shBrushPhp.js +4 -4
  159. metadata +317 -33
@@ -1,138 +1,4 @@
1
+ /* File: nin.js */
1
2
  //= require "extend"
2
-
3
- var NinjsModule = function(name) {
4
- this.data = {};
5
- this.run_tests = false;
6
- this.tests = [];
7
- this.name = name;
8
- };
9
-
10
- NinjsModule.method('actions', function() {});
11
-
12
- NinjsModule.method('add_test', function(test_file) {
13
- this.tests.push(test_file);
14
- });
15
-
16
- NinjsModule.method('_run_tests', function() {
17
- var test_template = [];
18
- test_template.push('<div class="test-results" title="Test Results">');
19
- test_template.push('<h1 id="qunit-header">' + this.name + ' module tests</h1>');
20
- test_template.push('<h2 id="qunit-banner"></h2>');
21
- test_template.push('<h2 id="qunit-userAgent"></h2>');
22
- test_template.push('<ol id="qunit-tests"></ol>');
23
- test_template.push('</div>');
24
-
25
- $('body').append(test_template.join("\n"));
26
-
27
- this.tests.each(function(test) {
28
- $.getScript('tests/' + some + '.test.js', function() {
29
- var test_results_dialog = $('.test-results');
30
- var height = test_results_dialog.height() + 130;
31
- var width = $(window).width() - 300;
32
- var maxHeight = $(window).height() - 200;
33
- try {
34
- test_results_dialog.dialog({
35
- width: width,
36
- height: height,
37
- maxHeight: maxHeight,
38
- buttons: {
39
- "Thanks buddy": function() {
40
- test_results_dialog.dialog('close');
41
- }
42
- }
43
- });
44
- }
45
- catch(error) {
46
- alert("Test harness requires jQueryUI");
47
- }
48
- });
49
- });
50
- });
51
-
52
- NinjsModule.method('execute', function() {
53
- this.__ = is_defined(window.__) ? window.__ : undefined;
54
- window.__ = this;
55
- if (this.run_tests) {
56
- this._run_tests();
57
- }
58
- this.actions();
59
- window.__ = is_defined(this.__) ? this.__ : undefined;
60
- });
61
-
62
- NinjsModule.method('call_on_ready', function(callback) {
63
- var timer;
64
- var module = this;
65
-
66
- function check_ready() {
67
- timer = setInterval(is_ready, 13);
68
- }
69
-
70
- function is_ready() {
71
- if (document && document.getElementsByTagName && document.getElementById && document.body) {
72
- clearInterval(timer);
73
- timer = null;
74
- callback.call(module);
75
- }
76
- }
77
-
78
- check_ready();
79
- });
80
-
81
- NinjsModule.method('run', function() {
82
- this.call_on_ready(this.execute);
83
- });
84
-
85
- NinjsModule.method('elements', function(callback) {
86
- this.call_on_ready(callback);
87
- });
88
-
89
- NinjsModule.method('set_data', function(key, value) {
90
- try {
91
- if (is_undefined(key)) {
92
- throw new SyntaxError('NinjsModule.set_data(key, value): key is undefined');
93
- }
94
- if (is_typeof(String, key) && is_undefined(value)) {
95
- throw new SyntaxError('NinjsModule.set_data(key, value): value is undefined');
96
- }
97
-
98
- if (is_typeof(String, key)) {
99
- this.data[key] = value;
100
- }
101
- else if (is_typeof(Object, key)) {
102
- var data = key;
103
- this.data = data;
104
- }
105
-
106
- return this;
107
- }
108
- catch(error) {
109
- alert(error.message);
110
- return false;
111
- }
112
- });
113
-
114
- var NinjsApplication = function() {
115
- if (is_undefined(window._)) {
116
- window._ = this;
117
- }
118
-
119
- if (is_undefined(window.app)) {
120
- window.app = this;
121
- }
122
- };
123
-
124
- NinjsApplication.method('add_module', function(name) {
125
- try {
126
- if (is_undefined(name)) {
127
- throw new SyntaxError("NinjsApplication.add_module(name): name is undefined");
128
- }
129
-
130
- if (is_defined(this[name])) {
131
- throw new SyntaxError("NinjsApplication.add_module(name): '" + name + "' already declared");
132
- }
133
- this[name] = new NinjsModule();
134
- }
135
- catch(error) {
136
- alert(error.message);
137
- }
138
- });
3
+ //= require "module"
4
+ //= require "application"
@@ -0,0 +1,16 @@
1
+ 1.51
2
+ JavaScript
3
+ /Volumes/Storage/Development/ninjs/repository/ninjs/tests/ninjs.utilities.test.js 1295405805 0 /Volumes/Storage/Development/ninjs/repository/ninjs/tests/ninjs.utilities.test.js
4
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/css.js 1294599934 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/css.js
5
+ /Volumes/Storage/Development/ninjs/repository/ninjs/core/nin.js 1295844160 1 nin.js
6
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/number.js 1295331490 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/number.js
7
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/all.js 1295497444 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/all.js
8
+ /Volumes/Storage/Development/ninjs/repository/ninjs/core/existence.js 1295843594 1 existence.js
9
+ /Volumes/Storage/Development/ninjs/repository/ninjs/core/application.js 1295844126 1 application.js
10
+ /Volumes/Storage/Development/ninjs/repository/ninjs/core/module.js 1295844143 1 module.js
11
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/cookie.js 1295499140 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/cookie.js
12
+ /Volumes/Storage/Development/ninjs/repository/ninjs/tests/qunit/qunit.js 1294856988 0 /Volumes/Storage/Development/ninjs/repository/ninjs/tests/qunit/qunit.js
13
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/array.js 1295331421 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/array.js
14
+ /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/string.js 1295331396 0 /Volumes/Storage/Development/ninjs/repository/ninjs/utilities/string.js
15
+ /Volumes/Storage/Development/ninjs/repository/ninjs/tests/ninjs.test.js 1295405794 0 /Volumes/Storage/Development/ninjs/repository/ninjs/tests/ninjs.test.js
16
+ /Volumes/Storage/Development/ninjs/repository/ninjs/core/extend.js 1295843583 1 extend.js
@@ -0,0 +1,113 @@
1
+ Format: 1.51
2
+
3
+ # This is the Natural Docs languages file for this project. If you change
4
+ # anything here, it will apply to THIS PROJECT ONLY. If you'd like to change
5
+ # something for all your projects, edit the Languages.txt in Natural Docs'
6
+ # Config directory instead.
7
+
8
+
9
+ # You can prevent certain file extensions from being scanned like this:
10
+ # Ignore Extensions: [extension] [extension] ...
11
+
12
+
13
+ #-------------------------------------------------------------------------------
14
+ # SYNTAX:
15
+ #
16
+ # Unlike other Natural Docs configuration files, in this file all comments
17
+ # MUST be alone on a line. Some languages deal with the # character, so you
18
+ # cannot put comments on the same line as content.
19
+ #
20
+ # Also, all lists are separated with spaces, not commas, again because some
21
+ # languages may need to use them.
22
+ #
23
+ # Language: [name]
24
+ # Alter Language: [name]
25
+ # Defines a new language or alters an existing one. Its name can use any
26
+ # characters. If any of the properties below have an add/replace form, you
27
+ # must use that when using Alter Language.
28
+ #
29
+ # The language Shebang Script is special. It's entry is only used for
30
+ # extensions, and files with those extensions have their shebang (#!) lines
31
+ # read to determine the real language of the file. Extensionless files are
32
+ # always treated this way.
33
+ #
34
+ # The language Text File is also special. It's treated as one big comment
35
+ # so you can put Natural Docs content in them without special symbols. Also,
36
+ # if you don't specify a package separator, ignored prefixes, or enum value
37
+ # behavior, it will copy those settings from the language that is used most
38
+ # in the source tree.
39
+ #
40
+ # Extensions: [extension] [extension] ...
41
+ # [Add/Replace] Extensions: [extension] [extension] ...
42
+ # Defines the file extensions of the language's source files. You can
43
+ # redefine extensions found in the main languages file. You can use * to
44
+ # mean any undefined extension.
45
+ #
46
+ # Shebang Strings: [string] [string] ...
47
+ # [Add/Replace] Shebang Strings: [string] [string] ...
48
+ # Defines a list of strings that can appear in the shebang (#!) line to
49
+ # designate that it's part of the language. You can redefine strings found
50
+ # in the main languages file.
51
+ #
52
+ # Ignore Prefixes in Index: [prefix] [prefix] ...
53
+ # [Add/Replace] Ignored Prefixes in Index: [prefix] [prefix] ...
54
+ #
55
+ # Ignore [Topic Type] Prefixes in Index: [prefix] [prefix] ...
56
+ # [Add/Replace] Ignored [Topic Type] Prefixes in Index: [prefix] [prefix] ...
57
+ # Specifies prefixes that should be ignored when sorting symbols in an
58
+ # index. Can be specified in general or for a specific topic type.
59
+ #
60
+ #------------------------------------------------------------------------------
61
+ # For basic language support only:
62
+ #
63
+ # Line Comments: [symbol] [symbol] ...
64
+ # Defines a space-separated list of symbols that are used for line comments,
65
+ # if any.
66
+ #
67
+ # Block Comments: [opening sym] [closing sym] [opening sym] [closing sym] ...
68
+ # Defines a space-separated list of symbol pairs that are used for block
69
+ # comments, if any.
70
+ #
71
+ # Package Separator: [symbol]
72
+ # Defines the default package separator symbol. The default is a dot.
73
+ #
74
+ # [Topic Type] Prototype Enders: [symbol] [symbol] ...
75
+ # When defined, Natural Docs will attempt to get a prototype from the code
76
+ # immediately following the topic type. It stops when it reaches one of
77
+ # these symbols. Use \n for line breaks.
78
+ #
79
+ # Line Extender: [symbol]
80
+ # Defines the symbol that allows a prototype to span multiple lines if
81
+ # normally a line break would end it.
82
+ #
83
+ # Enum Values: [global|under type|under parent]
84
+ # Defines how enum values are referenced. The default is global.
85
+ # global - Values are always global, referenced as 'value'.
86
+ # under type - Values are under the enum type, referenced as
87
+ # 'package.enum.value'.
88
+ # under parent - Values are under the enum's parent, referenced as
89
+ # 'package.value'.
90
+ #
91
+ # Perl Package: [perl package]
92
+ # Specifies the Perl package used to fine-tune the language behavior in ways
93
+ # too complex to do in this file.
94
+ #
95
+ #------------------------------------------------------------------------------
96
+ # For full language support only:
97
+ #
98
+ # Full Language Support: [perl package]
99
+ # Specifies the Perl package that has the parsing routines necessary for full
100
+ # language support.
101
+ #
102
+ #-------------------------------------------------------------------------------
103
+
104
+ # The following languages are defined in the main file, if you'd like to alter
105
+ # them:
106
+ #
107
+ # Text File, Shebang Script, C/C++, C#, Java, JavaScript, Perl, Python,
108
+ # PHP, SQL, Visual Basic, Pascal, Assembly, Ada, Tcl, Ruby, Makefile,
109
+ # ActionScript, ColdFusion, R, Fortran
110
+
111
+ # If you add a language that you think would be useful to other developers
112
+ # and should be included in Natural Docs by default, please e-mail it to
113
+ # languages [at] naturaldocs [dot] org.
@@ -0,0 +1,63 @@
1
+ Format: 1.51
2
+
3
+
4
+ # You can add a title and sub-title to your menu like this:
5
+ # Title: [project name]
6
+ # SubTitle: [subtitle]
7
+
8
+ # You can add a footer to your documentation like this:
9
+ # Footer: [text]
10
+ # If you want to add a copyright notice, this would be the place to do it.
11
+
12
+ # You can add a timestamp to your documentation like one of these:
13
+ # Timestamp: Generated on month day, year
14
+ # Timestamp: Updated mm/dd/yyyy
15
+ # Timestamp: Last updated mon day
16
+ #
17
+ # m - One or two digit month. January is "1"
18
+ # mm - Always two digit month. January is "01"
19
+ # mon - Short month word. January is "Jan"
20
+ # month - Long month word. January is "January"
21
+ # d - One or two digit day. 1 is "1"
22
+ # dd - Always two digit day. 1 is "01"
23
+ # day - Day with letter extension. 1 is "1st"
24
+ # yy - Two digit year. 2006 is "06"
25
+ # yyyy - Four digit year. 2006 is "2006"
26
+ # year - Four digit year. 2006 is "2006"
27
+
28
+
29
+ # --------------------------------------------------------------------------
30
+ #
31
+ # Cut and paste the lines below to change the order in which your files
32
+ # appear on the menu. Don't worry about adding or removing files, Natural
33
+ # Docs will take care of that.
34
+ #
35
+ # You can further organize the menu by grouping the entries. Add a
36
+ # "Group: [name] {" line to start a group, and add a "}" to end it.
37
+ #
38
+ # You can add text and web links to the menu by adding "Text: [text]" and
39
+ # "Link: [name] ([URL])" lines, respectively.
40
+ #
41
+ # The formatting and comments are auto-generated, so don't worry about
42
+ # neatness when editing the file. Natural Docs will clean it up the next
43
+ # time it is run. When working with groups, just deal with the braces and
44
+ # forget about the indentation and comments.
45
+ #
46
+ # --------------------------------------------------------------------------
47
+
48
+
49
+ File: application.js (core/application.js)
50
+ File: existence.js (core/existence.js)
51
+ File: extend.js (core/extend.js)
52
+ File: module.js (core/module.js)
53
+ File: nin.js (core/nin.js)
54
+
55
+ Group: Index {
56
+
57
+ Index: Everything
58
+ Class Index: Classes
59
+ File Index: Files
60
+ Function Index: Functions
61
+ Variable Index: Variables
62
+ } # Group: Index
63
+
@@ -0,0 +1,81 @@
1
+ Format: 1.51
2
+
3
+ # This is the Natural Docs topics file for this project. If you change anything
4
+ # here, it will apply to THIS PROJECT ONLY. If you'd like to change something
5
+ # for all your projects, edit the Topics.txt in Natural Docs' Config directory
6
+ # instead.
7
+
8
+
9
+ # If you'd like to prevent keywords from being recognized by Natural Docs, you
10
+ # can do it like this:
11
+ # Ignore Keywords: [keyword], [keyword], ...
12
+ #
13
+ # Or you can use the list syntax like how they are defined:
14
+ # Ignore Keywords:
15
+ # [keyword]
16
+ # [keyword], [plural keyword]
17
+ # ...
18
+
19
+
20
+ #-------------------------------------------------------------------------------
21
+ # SYNTAX:
22
+ #
23
+ # Topic Type: [name]
24
+ # Alter Topic Type: [name]
25
+ # Creates a new topic type or alters one from the main file. Each type gets
26
+ # its own index and behavior settings. Its name can have letters, numbers,
27
+ # spaces, and these charaters: - / . '
28
+ #
29
+ # Plural: [name]
30
+ # Sets the plural name of the topic type, if different.
31
+ #
32
+ # Keywords:
33
+ # [keyword]
34
+ # [keyword], [plural keyword]
35
+ # ...
36
+ # Defines or adds to the list of keywords for the topic type. They may only
37
+ # contain letters, numbers, and spaces and are not case sensitive. Plural
38
+ # keywords are used for list topics. You can redefine keywords found in the
39
+ # main topics file.
40
+ #
41
+ # Index: [yes|no]
42
+ # Whether the topics get their own index. Defaults to yes. Everything is
43
+ # included in the general index regardless of this setting.
44
+ #
45
+ # Scope: [normal|start|end|always global]
46
+ # How the topics affects scope. Defaults to normal.
47
+ # normal - Topics stay within the current scope.
48
+ # start - Topics start a new scope for all the topics beneath it,
49
+ # like class topics.
50
+ # end - Topics reset the scope back to global for all the topics
51
+ # beneath it.
52
+ # always global - Topics are defined as global, but do not change the scope
53
+ # for any other topics.
54
+ #
55
+ # Class Hierarchy: [yes|no]
56
+ # Whether the topics are part of the class hierarchy. Defaults to no.
57
+ #
58
+ # Page Title If First: [yes|no]
59
+ # Whether the topic's title becomes the page title if it's the first one in
60
+ # a file. Defaults to no.
61
+ #
62
+ # Break Lists: [yes|no]
63
+ # Whether list topics should be broken into individual topics in the output.
64
+ # Defaults to no.
65
+ #
66
+ # Can Group With: [type], [type], ...
67
+ # Defines a list of topic types that this one can possibly be grouped with.
68
+ # Defaults to none.
69
+ #-------------------------------------------------------------------------------
70
+
71
+ # The following topics are defined in the main file, if you'd like to alter
72
+ # their behavior or add keywords:
73
+ #
74
+ # Generic, Class, Interface, Section, File, Group, Function, Variable,
75
+ # Property, Type, Constant, Enumeration, Event, Delegate, Macro,
76
+ # Database, Database Table, Database View, Database Index, Database
77
+ # Cursor, Database Trigger, Cookie, Build Target
78
+
79
+ # If you add something that you think would be useful to other developers
80
+ # and should be included in Natural Docs by default, please e-mail it to
81
+ # topics [at] naturaldocs [dot] org.
@@ -0,0 +1,44 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
+
3
+ <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>application.js</title><link rel="stylesheet" type="text/css" href="../../styles/main.css"><script language=JavaScript src="../../javascript/main.js"></script><script language=JavaScript src="../../javascript/prettify.js"></script><script language=JavaScript src="../../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad();prettyPrint();"><script language=JavaScript><!--
4
+ if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
+
6
+ <!-- Generated by Natural Docs, version 1.51 -->
7
+ <!-- http://www.naturaldocs.org -->
8
+
9
+ <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
+
11
+
12
+
13
+
14
+ <div id=Content><div class="CFile"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="application.js"></a>application.js</h1><div class=CBody><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#application.js" >application.js</a></td><td class=SDescription></td></tr><tr class="SClass"><td class=SEntry><a href="#NinjsApplication" >NinjsApplication</a></td><td class=SDescription>An NinjsApplication object serves as your application&rsquo;s namespace and includes a utility to add modules to the application object.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#NinjsApplication.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#NinjsApplication.add_module" >add_module</a></td><td class=SDescription>Adds a NinjsModule to the application.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
15
+
16
+ <div class="CClass"><div class=CTopic><h2 class=CTitle><a name="NinjsApplication"></a>NinjsApplication</h2><div class=CBody><p>An NinjsApplication object serves as your application&rsquo;s namespace and includes a utility to add modules to the application object.</p><h4 class=CHeading>See Also</h4><p><a href="module-js.html#NinjsModule" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">NinjsModule</a></p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SGroup"><td class=SEntry><a href="#NinjsApplication.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent1 SMarked"><td class=SEntry><a href="#NinjsApplication.add_module" >add_module</a></td><td class=SDescription>Adds a NinjsModule to the application.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
17
+
18
+ <div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="NinjsApplication.Functions"></a>Functions</h3></div></div>
19
+
20
+ <div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="NinjsApplication.add_module"></a>add_module</h3><div class=CBody><p>Adds a NinjsModule to the application.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>name</td><td class=CDLDescription>the name of the module</td></tr></table><blockquote><pre>myapp.add_module('my_module');</pre></blockquote></div></div></div>
21
+
22
+ </div><!--Content-->
23
+
24
+
25
+ <div id=Footer><a href="http://www.naturaldocs.org">Generated by Natural Docs</a></div><!--Footer-->
26
+
27
+
28
+ <div id=Menu><div class=MEntry><div class=MFile id=MSelected>application.js</div></div><div class=MEntry><div class=MFile><a href="existence-js.html">existence.js</a></div></div><div class=MEntry><div class=MFile><a href="extend-js.html">extend.js</a></div></div><div class=MEntry><div class=MFile><a href="module-js.html">module.js</a></div></div><div class=MEntry><div class=MFile><a href="nin-js.html">nin.js</a></div></div><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent1')">Index</a><div class=MGroupContent id=MGroupContent1><div class=MEntry><div class=MIndex><a href="../../index/General.html">Everything</a></div></div><div class=MEntry><div class=MIndex><a href="../../index/Classes.html">Classes</a></div></div><div class=MEntry><div class=MIndex><a href="../../index/Files.html">Files</a></div></div><div class=MEntry><div class=MIndex><a href="../../index/Functions.html">Functions</a></div></div><div class=MEntry><div class=MIndex><a href="../../index/Variables.html">Variables</a></div></div></div></div></div><script type="text/javascript"><!--
29
+ var searchPanel = new SearchPanel("searchPanel", "HTML", "../../search");
30
+ --></script><div id=MSearchPanel class=MSearchPanelInactive><input type=text id=MSearchField value=Search onFocus="searchPanel.OnSearchFieldFocus(true)" onBlur="searchPanel.OnSearchFieldFocus(false)" onKeyUp="searchPanel.OnSearchFieldChange()"><select id=MSearchType onFocus="searchPanel.OnSearchTypeFocus(true)" onBlur="searchPanel.OnSearchTypeFocus(false)" onChange="searchPanel.OnSearchTypeChange()"><option id=MSearchEverything selected value="General">Everything</option><option value="Classes">Classes</option><option value="Files">Files</option><option value="Functions">Functions</option><option value="Variables">Variables</option></select></div></div><!--Menu-->
31
+
32
+
33
+
34
+ <!--START_ND_TOOLTIPS-->
35
+ <div class=CToolTip id="tt1"><div class=CClass>A NinjsModule is an object which encapsulates a certain behavior or functionality.</div></div><!--END_ND_TOOLTIPS-->
36
+
37
+
38
+
39
+
40
+ <div id=MSearchResultsWindow><iframe src="" frameborder=0 name=MSearchResults id=MSearchResults></iframe><a href="javascript:searchPanel.CloseResultsWindow()" id=MSearchResultsWindowClose>Close</a></div>
41
+
42
+
43
+ <script language=JavaScript><!--
44
+ if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>