Fixed some spelling errors in Specs and Docs for Array.item. -- thanks fabiomcosta
[mootools.git] / Source / scripts.json
blobf20fd530182cc2b2c44fecbd96802952019180ef
3         "Core": {
5                 "Core": {
6                         "deps": ["Core"],
7                         "desc": "The core of MooTools, contains all the base functions and the Native and Hash implementations. Required by all the other scripts."
8                 },
10                 "Browser": {
11                         "deps": ["Core"],
12                         "desc": "The Browser Core. Contains Browser initialization, Window and Document, and the Browser Hash."
13                 }
15         },
17         "Native": {
19                 "Array": {
20                         "deps": ["Core"],
21                         "desc": "Contains Array Prototypes like each, contains, and erase."
22                 },
24                 "Function": {
25                         "deps": ["Core"],
26                         "desc": "Contains Function Prototypes like create, bind, pass, and delay."
27                 },
29                 "Number": {
30                         "deps": ["Core"],
31                         "desc": "Contains Number Prototypes like limit, round, times, and ceil."
32                 },
34                 "String": {
35                         "deps": ["Core"],
36                         "desc": "Contains String Prototypes like camelCase, capitalize, test, and toInt."
37                 },
39                 "Hash": {
40                         "deps": ["Core"],
41                         "desc": "Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects."
42                 },
44                 "Event": {
45                         "deps": ["Browser", "Array", "Function", "Number", "String", "Hash"],
46                         "desc": "Contains the Event Class, to make the event object Crossbrowser."
47                 }
49         },
51         "Class": {
53                 "Class": {
54                         "deps": ["Core", "Array", "String", "Function", "Number", "Hash", "Browser"],
55                         "desc": "Contains the Class Function for easily creating, extending, and implementing reusable Classes."
56                 },
58                 "Class.Extras": {
59                         "deps": ["Class"],
60                         "desc": "Contains Utility Classes that can be implemented into your own Classes to ease the execution of many common tasks."
61                 }
63         },
65         "Element": {
67                 "Element": {
68                         "deps": ["Browser", "Array", "String", "Function", "Number", "Hash"],
69                         "desc": "One of the most important items in MooTools. Contains the dollar function, the dollars function, and an handful of cross-browser, time-saver methods to let you easily work with HTML Elements."
70                 },
72                 "Element.Event": {
73                         "deps": ["Element", "Event"],
74                         "desc": "Contains Element methods for dealing with events. This file also includes mouseenter and mouseleave custom Element Events."
75                 },
77                 "Element.Style": {
78                         "deps": ["Element"],
79                         "desc": "Contains methods for interacting with the styles of Elements in a fashionable way."
80                 },
82                 "Element.Dimensions": {
83                         "deps": ["Element"],
84                         "desc": "Contains methods to work with size, scroll, or positioning of Elements and the window object."
85                 }
87         },
90         "Utilities": {
92                 "Selectors": {
93                         "deps": ["Element"],
94                         "desc": "Adds advanced CSS-style querying capabilities for targeting HTML Elements. Includes pseudo selectors."
95                 },
97                 "DomReady": {
98                         "deps": ["Element.Event"],
99                         "desc": "Contains the custom event domready."
100                 },
102                 "JSON": {
103                         "deps": ["Array", "String", "Function", "Number", "Hash"],
104                         "desc": "JSON encoder and decoder."
105                 },
107                 "Cookie": {
108                         "deps": ["Browser", "Class", "Class.Extras"],
109                         "desc": "Class for creating, reading, and deleting browser Cookies."
110                 },
112                 "Swiff": {
113                         "deps": ["Class.Extras"],
114                         "desc": "Wrapper for embedding SWF movies. Supports External Interface Communication."
115                 }
117         },
119         "Fx": {
121                 "Fx": {
122                         "deps": ["Class.Extras"],
123                         "desc": "Contains the basic animation logic to be extended by all other Fx Classes."
124                 },
126                 "Fx.CSS": {
127                         "deps": ["Fx", "Element.Style"],
128                         "desc": "Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements."
129                 },
131                 "Fx.Tween": {
132                         "deps": ["Fx.CSS"],
133                         "desc": "Formerly Fx.Style, effect to transition any CSS property for an element."
134                 },
136                 "Fx.Morph": {
137                         "deps": ["Fx.CSS"],
138                         "desc": "Formerly Fx.Styles, effect to transition any number of CSS properties for an element using an object of rules, or CSS based selector rules."
139                 },
141                 "Fx.Transitions": {
142                         "deps": ["Fx"],
143                         "desc": "Contains a set of advanced transitions to be used with any of the Fx Classes."
144                 }
146         },
148         "Request": {
150                 "Request": {
151                         "deps": ["Class.Extras"],
152                         "desc": "Powerful all purpose Request Class. Uses XMLHTTPRequest."
153                 },
155                 "Request.HTML": {
156                         "deps": ["Request", "Element"],
157                         "desc": "Extends the basic Request Class with additional methods for interacting with HTML responses."
158                 },
160                 "Request.JSON": {
161                         "deps": ["Request", "JSON"],
162                         "desc": "Extends the basic Request Class with additional methods for sending and receiving JSON data."
163                 }
165         }