Built-In Namespace: _global_

Field Summary

Class Methods

Field Detail

alltests
Tests that currently freeze ie
Defined in: forwarddeletetest.js.
alohaConsole
Create the Log object
Defined in: console.js.
DD_belatedPNG

DD_belatedPNG: Adds IE6 support: PNG images for CSS background-image and HTML . Author: Drew Diller Email: drew.diller@gmail.com URL: http://www.dillerdesign.com/experiment/DD_belatedPNG/ Version: 0.0.8a Licensed under the MIT License: http://dillerdesign.com/experiment/DD_belatedPNG/#license

Example usage: DD_belatedPNG.fix('.png_bg'); // argument is a CSS selector DD_belatedPNG.fixPng( someNode ); // argument is an HTMLDomElement


Defined in: dd_belatedpng.js.
decode

Defined in: ext-all.js.
define

The function that handles definitions of modules. Differs from require() in that a string for the module should be the first argument, and the function to execute after dependencies are loaded should return a value to define the module corresponding to the first argument's name.


Defined in: aloha.js.
DIFF_DELETE

The data structure representing a diff is an array of tuples: [[DIFF_DELETE, 'Hello'], [DIFF_INSERT, 'Goodbye'], [DIFF_EQUAL, ' world.']] which means: delete 'Hello', add 'Goodbye' and keep ' world.'


Defined in: diff_match_patch_uncompressed.js.
encode

Defined in: ext-all.js.
isNative

Defined in: ext-all.js.
N

Defined in: ext-all.js.
newIETests
Special new IE tests
Defined in: selectiontest.js.
onDomLoad

Defined in: ext-all-debug.js.
rangy

Defined in: rangy-core.js.
req

Main entry point.

If the only argument to require is a string, then the module that is represented by that string is fetched for the appropriate context.

If the first argument is an array, then it will be treated as an array of dependency string names to fetch. An optional function callback can be specified to execute when all of those dependencies are available.

Make a local req variable to help Caja compliance (it assumes things on a require that are not standardized), and to give a short name for minification/local scope use.


Defined in: aloha.js.
speak

Defined in: speak.js.
swfobject

Defined in: ext-all.js.
TestUtils
TestUtils class
Defined in: testutils.js.

Class Method Detail

$

Defined in: ui-layout.js.
Parameters:
a
$a

Defined in: ui-layout.js.
Parameters:
a
A

Defined in: jquery.jqGrid.js.
Parameters:
y
a

Defined in: jquery.ui.js.
Parameters:
c
A4

Defined in: speak.js.
aa

Defined in: ui-layout.js.
Parameters:
a
Aa

Defined in: ui-layout.js.
Parameters:
a
action

Defined in: ext-all-debug.js.
add

Defined in: jquery-1.6.1.js.
Parameters:
key
value
adoptBoundary

Defined in: ierange-m2.js.
Parameters:
domRange
textRange
bStart
AH

Defined in: speak.js.
Parameters:
AM
AI

Defined in: speak.js.
AlohaImagePlugin

Defined in: image-plugin.js.
Parameters:
aQuery
Plugin
FloatingMenu
i18nCore
i18n
animateEnd
b

Defined in: ext-all.js.
Parameters:
e
g
c
B

Defined in: jquery.jqGrid.js.
Parameters:
e
d
i
ba

Defined in: ui-layout.js.
Parameters:
a
b
c

Defined in: underscore-min.js.
Parameters:
a
ca

Defined in: ui-layout.js.
Parameters:
a
b
call

Defined in: ext-all-debug.js.
callback

Defined in: jquery-1.6.1.js.
Parameters:
_
isAbort
cb

Defined in: ext-all-debug.js.
check
Parameters:
r
checkScriptType

Defined in: jquery-1.6.1.js.
Parameters:
elem
child

Defined in: undo.js.
CiteClosure
Parameters:
Aloha
Plugin
FloatingMenu
Class

Defined in: class.js.
cleanUp

Defined in: jquery-1.5.1.js.
condition

Defined in: engine.js.
constrain

Checks whether or not the current number is within a desired range. If the number is already within the range it is returned, otherwise the min or max value is returned depending on which side of the range is exceeded. Note that this method returns the constrained value but does not change the current number.


Defined in: ext-jquery-adapter-debug.js.
Parameters:
Number min
The minimum number in the range
Number max
The maximum number in the range
Returns:
Number The constrained value if outside the range, otherwise the current value
createBeforeAfterNodeSetter

Defined in: rangy-core.js.
Parameters:
name
oppositeName
createCallback

Creates a callback that passes arguments[0], arguments[1], arguments[2], ... Call directly on any function. Example: myFunction.createCallback(arg1, arg2) Will create a function that is bound to those 2 args. If a specific scope is required in the callback, use #createDelegate instead. The function returned by createCallback always executes in the window scope.

This method is required when you want to pass arguments to a callback function. If no arguments are needed, you can simply pass a reference to the function as a callback (e.g., callback: myFn). However, if you tried to pass a function with arguments (e.g., callback: myFn(arg1, arg2)) the function would simply execute immediately when the code is parsed. Example usage:

var sayHi = function(name){
alert('Hi, ' + name);
}

// clicking the button alerts "Hi, Fred"
new Ext.Button({
text: 'Say Hi',
renderTo: Ext.getBody(),
handler: sayHi.createCallback('Fred')
});

Defined in: ext-jquery-adapter-debug.js.
Returns:
Function The new function
createDelegate

Creates a delegate (callback) that sets the scope to obj. Call directly on any function. Example: this.myFunction.createDelegate(this, [arg1, arg2]) Will create a function that is automatically scoped to obj so that the this variable inside the callback points to obj. Example usage:

var sayHi = function(name){
// Note this use of "this.text" here.  This function expects to
// execute within a scope that contains a text property.  In this
// example, the "this" variable is pointing to the btn object that
// was passed in createDelegate below.
alert('Hi, ' + name + '. You clicked the "' + this.text + '" button.');
}

var btn = new Ext.Button({
text: 'Say Hi',
renderTo: Ext.getBody()
});

// This callback will execute in the scope of the
// button instance. Clicking the button alerts
// "Hi, Fred. You clicked the "Say Hi" button."
btn.on('click', sayHi.createDelegate(btn, ['Fred']));

Defined in: ext-jquery-adapter-debug.js.
Parameters:
Object scope
(optional) The scope (this reference) in which the function is executed. If omitted, defaults to the browser window.
Array args
(optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
Boolean/Number appendArgs
(optional) if True args are appended to call args instead of overriding, if a number the args are inserted at the specified position
Returns:
Function The new function
createInterceptor

Creates an interceptor function. The passed function is called before the original one. If it returns false, the original one is not called. The resulting function returns the results of the original function. The passed function is called with the parameters of the original function. Example usage:

var sayHi = function(name){
alert('Hi, ' + name);
}

sayHi('Fred'); // alerts "Hi, Fred"

// create a new function that validates input without
// directly modifying the original function:
var sayHiToFriend = sayHi.createInterceptor(function(name){
return name == 'Brian';
});

sayHiToFriend('Fred');  // no alert
sayHiToFriend('Brian'); // alerts "Hi, Brian"

Defined in: ext-jquery-adapter-debug.js.
Parameters:
Function fcn
The function to call before the original
Object scope
(optional) The scope (this reference) in which the passed function is executed. If omitted, defaults to the scope in which the original function is called or the browser window.
Returns:
Function The new function
CreateLayer
Initialize of the CreateLayer object
Defined in: table-create-layer.js.
Parameters:
TablePlugin
createSequence

Create a combined function call sequence of the original function + the passed function. The resulting function returns the results of the original function. The passed fcn is called with the parameters of the original function. Example usage:

var sayHi = function(name){
alert('Hi, ' + name);
}

sayHi('Fred'); // alerts "Hi, Fred"

var sayGoodbye = sayHi.createSequence(function(name){
alert('Bye, ' + name);
});

sayGoodbye('Fred'); // both alerts show

Defined in: ext-jquery-adapter-debug.js.
Parameters:
Function fcn
The function to sequence
Object scope
(optional) The scope (this reference) in which the passed function is executed. If omitted, defaults to the scope in which the original function is called or the browser window.
Returns:
Function The new function
currentStyle

Defined in: jquery-1.6.1.js.
Parameters:
elem
name
D

Defined in: jquery.jqGrid.js.
Parameters:
e
d

Defined in: ext-all.js.
defer

Calls this function after the number of millseconds specified, optionally in a specific scope. Example usage:

var sayHi = function(name){
alert('Hi, ' + name);
}

// executes immediately:
sayHi('Fred');

// executes after 2 seconds:
sayHi.defer(2000, this, ['Fred']);

// this syntax is sometimes useful for deferring
// execution of an anonymous function:
(function(){
alert('Anonymous');
}).defer(100);

Defined in: ext-jquery-adapter-debug.js.
Parameters:
Number millis
The number of milliseconds for the setTimeout call (if less than or equal to 0 the function is executed immediately)
Object scope
(optional) The scope (this reference) in which the function is executed. If omitted, defaults to the browser window.
Array args
(optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
Boolean/Number appendArgs
(optional) if True args are appended to call args instead of overriding, if a number the args are inserted at the specified position
Returns:
Number The timeout id that can be used with clearTimeout
delegate

Defined in: jquery-1.6.1.js.
Parameters:
event
doDecode

Defined in: ext-all.js.
Parameters:
json
doEncode

Defined in: ext-all.js.
Parameters:
o
dom_parser

Defined in: jquery.store.js.
Parameters:
_xmlString
DOMContentLoaded

Defined in: jquery-1.6.1.js.
DOMRange

Defined in: ierange-m2.js.
Parameters:
document
DOMSelection

Defined in: ierange-m2.js.
Parameters:
document
doSomething

Defined in: jquery.aloha.js.
Parameters:
el
e

Defined in: jquery.ui.js.
Parameters:
h
ea

Defined in: ui-layout.js.
encodeArray

Defined in: ext-all.js.
Parameters:
o
encodeDate

Defined in: ext-all.js.
Parameters:
o
encodeString

Defined in: ext-all.js.
Parameters:
s
error_func

Defined in: jquery.jstree.js.
Parameters:
x
t
e
escape
Escapes the passed string for ' and \
Defined in: ext-jquery-adapter-debug.js.
Parameters:
String string
The string to escape
Returns:
String The escaped string
escape_xml

Defined in: jquery.jstree.js.
Parameters:
string
eventHandle

Defined in: jquery-1.6.1.js.
Parameters:
e
f

Defined in: jquery.ui.js.
Parameters:
h
f1

Defined in: jquery.jqGrid.js.
Parameters:
a
Fa

Defined in: jquery.jqGrid.js.
Parameters:
e
fa

Defined in: ui-layout.js.
Parameters:
a
b
fcamelCase

Defined in: jquery-1.6.1.js.
Parameters:
all
letter
fcleanup

Defined in: jquery-1.6.1.js.
Parameters:
nm
fescape

Defined in: jquery-1.6.1.js.
Parameters:
all
num
fly

Defined in: ext-all-debug.js.
Parameters:
dom
fn

Defined in: ext-all-debug.js.
format

Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens. Each token must be unique, and must increment in the format {0}, {1}, etc. Example usage:

var cls = 'my-class', text = 'Some text';
var s = String.format('<div class="{0}">{1}</div>', cls, text);
// s now contains the string: '<div class="my-class">Some text</div>'

Defined in: ext-jquery-adapter-debug.js.
Parameters:
String string
The tokenized string to be formatted
String value1
The value to replace token {0}
String value2
Etc...
Returns:
String The formatted string
g

Defined in: jquery.ui.js.
Parameters:
o
m
n
Ga

Defined in: ui-layout.js.
Parameters:
a
b
c
ga

Defined in: jquery.jqGrid.js.
Parameters:
e
d
i
n
p
get

Defined in: text.js.
Parameters:
url
callback
getComputedStyle

Defined in: jquery-1.6.1.js.
Parameters:
elem
name
getDisplay

Defined in: ext-all-debug.js.
Parameters:
dom
getNormalizedParams
Parameters:
params
getObject

Defined in: ext-all-debug.js.
Parameters:
o
getOEmbedProvider
Parameters:
url
getQueue

Defined in: ext-all-debug.js.
Parameters:
id
getSelectionRangeAt

Defined in: rangy-core.js.
Parameters:
sel
getStateOverride

Defined in: engine.js.
Parameters:
command
range
getVal

Defined in: jquery-1.6.1.js.
Parameters:
elem
getValueOverride

Defined in: engine.js.
Parameters:
command
range
getVisMode

Defined in: ext-all-debug.js.
Parameters:
dom
H

Defined in: underscore-min.js.
Parameters:
a
b
h

Defined in: underscore-min.js.
ha

Defined in: ui-layout.js.
Parameters:
a
b
c
d
Ha

Defined in: ui-layout.js.
Parameters:
a
handler

Defined in: jquery-1.6.1.js.
Parameters:
event
hidden

Defined in: jquery.jqGrid.js.
Parameters:
b
I

Defined in: ui-layout.js.
Parameters:
a
i

Defined in: jquery.ui.js.
Parameters:
s
ia

Defined in: ui-layout.js.
Parameters:
a
b
Ia

Defined in: ui-layout.js.
Parameters:
a
b
iCallback

Defined in: jquery-1.5.1.js.
Parameters:
index
indeterm

Defined in: engine.js.
indexOf
Checks whether or not the specified object exists in the array.
Defined in: ext-jquery-adapter-debug.js.
Parameters:
Object o
The object to check for
Number from
(Optional) The index at which to begin the search
Returns:
Number The index of o in the array (or -1 if it is not found)
innerEquiv

Defined in: qunit.js.
insertMarker

Defined in: testutils.js.
Parameters:
node
offset
marker
J

Defined in: ui-layout.js.
Parameters:
a
b
c
d
j

Defined in: backbone-min.js.
Parameters:
a
b
c
ja

Defined in: ui-layout.js.
Parameters:
a
Ja

Defined in: ui-layout.js.
Parameters:
a
jQueryCheck

jQuery 1.4.3+ supports ways to hold off calling calling jQuery ready callbacks until all scripts are loaded. Be sure to track it if the capability exists.. Also, since jQuery 1.4.3 does not register as a module, need to do some global inference checking. Even if it does register as a module, not guaranteed to be the precise name of the global. If a jQuery is tracked for this context, then go ahead and register it as a module too, if not already in process.


Defined in: aloha.js.
Parameters:
jqCandidate
jstree_contains

Defined in: jquery.jstree.js.
Parameters:
a
i
m
jstree_title_contains

Defined in: jquery.jstree.js.
Parameters:
a
i
m
k

Defined in: backbone-min.js.
Parameters:
a
K

Defined in: ui-layout.js.
Parameters:
a
b
ka

Defined in: ui-layout.js.
Parameters:
a
b
Ka

Defined in: ui-layout.js.
Parameters:
a
l

Defined in: jquery.jqGrid.js.
Parameters:
a
e
n
m
L

Defined in: ui-layout.js.
Parameters:
a
b
la

Defined in: ui-layout.js.
Parameters:
a
b
La

Defined in: ui-layout.js.
leftPad

Pads the left side of a string with a specified character. This is especially useful for normalizing number and date strings. Example usage:

var s = String.leftPad('123', 5, '0');
// s now contains the string: '00123'

Defined in: ext-jquery-adapter-debug.js.
Parameters:
String string
The original string
Number size
The total length of the output string
String char
(optional) The character with which to pad the original string (defaults to empty string " ")
Returns:
String The padded string
load

Defined in: require.js.
Parameters:
ret
m

Defined in: jquery.ui.js.
Parameters:
p
M

Defined in: ui-layout.js.
Parameters:
a
b
c
d
Ma

Defined in: ui-layout.js.
ma

Defined in: ui-layout.js.
Parameters:
a
makeArray

Defined in: jquery-1.6.1.js.
Parameters:
array
results
n

Defined in: jquery.ui.js.
Parameters:
p
w
G
na

Defined in: ui-layout.js.
Parameters:
a
b
Na

Defined in: ui-layout.js.
Parameters:
a
newParentInstructions

Defined in: engine.js.
O

Defined in: jquery.jqGrid.js.
Parameters:
e
d
i
n
p
A
o

Defined in: jquery.ui.js.
Parameters:
p
oa

Defined in: ui-layout.js.
Parameters:
a
b
Oa

Defined in: ui-layout.js.
Parameters:
a
OEmbedProvider
Parameters:
name
urlPattern
oEmbedUrl
callbackparameter
oncontrolselect

Defined in: table.js.
Parameters:
e
onDone

Defined in: jquery.jcrop.min.js.
ondragstart

Defined in: table.js.
Parameters:
e
onMove

Defined in: jquery.jcrop.min.js.
onmovestart

Defined in: table.js.
Parameters:
e
onresizestart

Defined in: table.js.
Parameters:
e
onselectstart

Defined in: table.js.
P

Defined in: ui-layout.js.
Parameters:
a
b
p

Defined in: jquery.jqGrid.js.
Parameters:
a
pa

Defined in: jquery.jqGrid.js.
Pa

Defined in: ui-layout.js.
Parameters:
a
pad

Defined in: ext-all.js.
Parameters:
n
processResults
Invoked by each repository when it wants to present its results to the manager. Collects the results from each repository, and decrements the numOpenCallbacks semaphore to indicate that there is one less repository for which we are waiting a reponse. If a repository invokes this callback after all openCallbacks have been closed (ie: numOpenCallbacks == 0), then the repository was too late ("missed the ship"), and will be ignored. If numOpenCallbacks decrements to 0 during this call, it means that the the manager is ready to report the results back to the client through the queryCallback method. nb: "this" is reference to the calling repository.
Defined in: repositorymanager.js.
Parameters:
Array items
- Results returned by the repository
Object metainfo
- optional Metainfo returned by the repository
proxy

Defined in: jquery-1.6.1.js.
q

Defined in: jquery.jqGrid.js.
Parameters:
i
d
Q

Defined in: ui-layout.js.
Parameters:
a
b
Qa

Defined in: ui-layout.js.
Parameters:
a
b
queue

Defined in: ext-all-debug.js.
r

Defined in: backbone-min.js.
Parameters:
a
b
c
R

Defined in: ui-layout.js.
Parameters:
a
b
Ra

Defined in: ui-layout.js.
Parameters:
a
raf

Defined in: jquery-1.6.1.js.
RangeIterator

Defined in: ierange-m2.js.
Parameters:
range
refreshSelection

Defined in: rangy-core.js.
Parameters:
sel
remove
Removes the specified object from the array. If the object is not found nothing happens.
Defined in: ext-jquery-adapter-debug.js.
Parameters:
Object o
The object to remove
Returns:
Array this array
removeTask
Parameters:
t
requirejs

Defined in: require.js.
Parameters:
deps
callback
result

Defined in: selection.js.
Parameters:
domobj
markupObject
resume
Resumes tracing of dependencies and then checks if everything is loaded.
Defined in: aloha.js.
rucHeadersFunc

Defined in: jquery-1.5.1.js.
Parameters:
_
$1
$2
runTasks
S

Defined in: jquery.jqGrid.js.
s

Defined in: jquery.jqGrid.js.
Parameters:
a
sa

Defined in: ui-layout.js.
Parameters:
a
b
Sa

Defined in: ui-layout.js.
Parameters:
a
Sanitize

Copyright (c) 2010 by Gabriel Birke

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Defined in: sanitize.js.
selectionIsBackwards

Defined in: rangy-core.js.
Parameters:
sel
selectionIsCollapsed

Defined in: rangy-core.js.
Parameters:
sel
setQueue

Defined in: ext-all-debug.js.
Parameters:
id
value
setStateOverride

Defined in: engine.js.
Parameters:
command
newState
range
setValueOverride

Defined in: engine.js.
Parameters:
command
newValue
range
showNext

Defined in: aloha-boilerplate.js.
siblingCheck

Defined in: jquery-1.6.1.js.
Parameters:
a
b
ret
siblingCriteria

Defined in: engine.js.
Sizzle

Defined in: jquery-1.6.1.js.
Parameters:
query
context
extra
seed
sortOrder

Defined in: jquery-1.6.1.js.
Parameters:
a
b
startThread
state

Defined in: engine.js.
Parameters:
range
stopThread
style_html

Defined in: htmlbeautifier.js.
Parameters:
html_source
options
success_func

Defined in: jquery.jstree.js.
Parameters:
d
t
x
T

Defined in: jquery.jqGrid.js.
Parameters:
e
d
i
n
t

Defined in: ui-layout.js.
Parameters:
a
b
Ta

Defined in: ui-layout.js.
Parameters:
a
ta

Defined in: ui-layout.js.
Parameters:
a
b
tableToGrid

Defined in: jquery.jqGrid.js.
Parameters:
n
o
tagComparator

Defined in: selection.js.
Parameters:
domobj
markupObject
testChange

Defined in: jquery-1.6.1.js.
Parameters:
e
toggler

Defined in: jquery-1.6.1.js.
Parameters:
event
U

Defined in: ui-layout.js.
Parameters:
a
b
c
Ua

Defined in: ui-layout.js.
Parameters:
a
b
c
ua

Defined in: ui-layout.js.
Parameters:
a
b
unsetStateOverride

Defined in: engine.js.
Parameters:
command
range
unsetValueOverride

Defined in: engine.js.
Parameters:
command
range
V

Defined in: ui-layout.js.
Parameters:
a
b
c
d
v

Defined in: jquery.jqGrid.js.
Parameters:
e
d
va

Defined in: ui-layout.js.
Parameters:
a
Va

Defined in: ui-layout.js.
validateInterface

Defined in: jquery.jstree.js.
Parameters:
obj
inter
value

Defined in: engine.js.
Parameters:
range
W

Defined in: ui-layout.js.
Parameters:
a
b
c
w

Defined in: jquery.jqGrid.js.
Parameters:
i
wa

Defined in: ui-layout.js.
Parameters:
a
b
c
Wa

Defined in: ui-layout.js.
walk

Defined in: ext-all-debug.js.
Parameters:
row
col
step
WrappedRange

Defined in: rangy-core.js.
Parameters:
textRange
x

Defined in: ext-all.js.
Parameters:
B
xa

Defined in: ui-layout.js.
Parameters:
a
b
Xa

Defined in: ui-layout.js.
y

Defined in: ui-layout.js.
Parameters:
a
b
Y

Defined in: ui-layout.js.
Parameters:
a
b
c
d
Ya

Defined in: ui-layout.js.
Parameters:
a
ya

Defined in: ui-layout.js.
Parameters:
a
Z

Defined in: ui-layout.js.
Parameters:
a
b
z

Defined in: modernizr-1.7.min.js.
Parameters:
a
b
Za

Defined in: ui-layout.js.
za

Defined in: ui-layout.js.
Parameters:
a
b
c
Documentation generated by JsDoc Toolkit 2.4.0 on Wed Nov 30 2011 13:33:45 GMT+0100 (CET)